From 0b8309a5be0ac09963f05a3fbb8b11738d037d97 Mon Sep 17 00:00:00 2001 From: Siddharth Vaghasia Date: Sun, 9 Apr 2023 13:36:20 +0530 Subject: [PATCH 01/21] added new command Export-PnPPowerApp --- documentation/Export-PnPPowerApp.md | 198 ++++++++++++++++++ .../PowerApp/Enums/PowerAppExportStatus.cs | 23 ++ .../PowerApp/PowerAppExportPackageError.cs | 22 ++ .../PowerApp/PowerAppExportPackageResource.cs | 65 ++++++ .../PowerApp/PowerAppPackageWrapper.cs | 46 ++++ .../PowerPlatform/PowerApps/ExportPowerApp.cs | 181 ++++++++++++++++ src/Commands/Utilities/REST/RestHelper.cs | 38 ++++ 7 files changed, 573 insertions(+) create mode 100644 documentation/Export-PnPPowerApp.md create mode 100644 src/Commands/Model/PowerPlatform/PowerApp/Enums/PowerAppExportStatus.cs create mode 100644 src/Commands/Model/PowerPlatform/PowerApp/PowerAppExportPackageError.cs create mode 100644 src/Commands/Model/PowerPlatform/PowerApp/PowerAppExportPackageResource.cs create mode 100644 src/Commands/Model/PowerPlatform/PowerApp/PowerAppPackageWrapper.cs create mode 100644 src/Commands/PowerPlatform/PowerApps/ExportPowerApp.cs diff --git a/documentation/Export-PnPPowerApp.md b/documentation/Export-PnPPowerApp.md new file mode 100644 index 000000000..3a6d66996 --- /dev/null +++ b/documentation/Export-PnPPowerApp.md @@ -0,0 +1,198 @@ +--- +Module Name: PnP.PowerShell +schema: 2.0.0 +applicable: SharePoint Online +online version: https://pnp.github.io/powershell/cmdlets/Export-PnPPowerApp.html +external help file: PnP.PowerShell.dll-Help.xml +title: Export-PnPPowerApp +--- + +# Export-PnPPowerApp + +## SYNOPSIS + +**Required Permissions** + +* Azure: management.azure.com + +Exports a Microsoft Power App + +## SYNTAX + +``` +Export-PnPPowerApp -Environment -Identity + [-PackageDisplayName ] [-PackageDescription ] [-PackageCreatedBy ] + [-PackageSourceEnvironment ] [-OutPath ] [-Force] [-Connection ] + [] +``` + +## DESCRIPTION +This cmdlet exports a Microsoft Power App as zip package. + +Many times exporting a Microsoft Power App will not be possible due to various reasons such as connections having gone stale, SharePoint sites referenced no longer existing or other configuration errors in the App. To display these errors when trying to export a App, provide the -Verbose flag with your export request. If not provided, these errors will silently be ignored. + +## EXAMPLES + +### Example 1 +```powershell +$environment = Get-PnPPowerPlatformEnvironment -IsDefault $true +Export-PnPPowerApp -Environment $environment -Identity fba63225-baf9-4d76-86a1-1b42c917a182 -OutPath "C:\Users\user1\Downloads\test_20230408152624.zip" +``` + +This will export the specified Microsoft Power App from the default Power Platform environment as an output to the path specified in the command as -OutPath + +### Example 2 +```powershell +$environment = Get-PnPPowerPlatformEnvironment -IsDefault $true +Export-PnPPowerApp -Environment $environment -Identity fba63225-baf9-4d76-86a1-1b42c917a182 -OutPath "C:\Users\user1\Downloads\test_20230408152624.zip" -PackageDisplayName "MyAppDisplayName" -PackageDescription "Package exported using PnP Powershell" -PackageCreatedBy "Siddharth Vaghasia" -PackageSourceEnvironment "UAT Environment" +``` +This will export the specified Microsoft Power App from the default Power Platform environment with metadata specified + +### Example 3 +```powershell +Get-PnPPowerPlatformEnvironment | foreach { Get-PnPPowerApp -Environment $_.Name } | foreach { Export-PnPPowerApp -Environment $_.Properties.EnvironmentDetails.Name -Identity $_ -OutPath "C:\Users\user1\Downloads\$($_.Name).zip" } +``` + +This will export all the Microsoft Power Apps available within the tenant from all users from all the available Power Platform environments as a ZIP package for each of them to a local folder C:\Users\user1\Downloads + +## 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) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Environment +The environment which contains the App. + +```yaml +Type: PowerPlatformEnvironmentPipeBind +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Identity +The value of the Name property of a Microsoft Power App that you wish to export + +```yaml +Type: PowerAppPipeBind +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified and the file exported already exists it will be overwritten without confirmation. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OutPath +Optional file name of the file to export to. If not provided, it will store the ZIP package to the current location from where the cmdlet is being run. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PackageCreatedBy +The name of the person to be used as the creator of the exported package + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PackageDescription +The description to use in the exported package + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PackageDisplayName +The display name to use in the exported package + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PackageSourceEnvironment +The name of the source environment from which the exported package was taken + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +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/Model/PowerPlatform/PowerApp/Enums/PowerAppExportStatus.cs b/src/Commands/Model/PowerPlatform/PowerApp/Enums/PowerAppExportStatus.cs new file mode 100644 index 000000000..16ba71a3f --- /dev/null +++ b/src/Commands/Model/PowerPlatform/PowerApp/Enums/PowerAppExportStatus.cs @@ -0,0 +1,23 @@ +namespace PnP.PowerShell.Commands.Model.PowerPlatform.PowerApp.Enums +{ + /// + /// Contains the possible states of a App export request + /// + public enum PowerAppExportStatus + { + /// + /// PowerApp export failed + /// + Failed, + + /// + /// PowerApp exported successfully + /// + Succeeded, + + /// + /// Export in progress + /// + Running + } +} \ No newline at end of file diff --git a/src/Commands/Model/PowerPlatform/PowerApp/PowerAppExportPackageError.cs b/src/Commands/Model/PowerPlatform/PowerApp/PowerAppExportPackageError.cs new file mode 100644 index 000000000..c8bdd4842 --- /dev/null +++ b/src/Commands/Model/PowerPlatform/PowerApp/PowerAppExportPackageError.cs @@ -0,0 +1,22 @@ +using System.Text.Json.Serialization; + +namespace PnP.PowerShell.Commands.Model.PowerPlatform.PowerApp +{ + /// + /// Contains the error details when requesting an export of a Flow package + /// + public class PowerAppExportPackageError + { + /// + /// Error code + /// + [JsonPropertyName("code")] + public string Code { get; set; } + + /// + /// Description of the error + /// + [JsonPropertyName("message")] + public string Message { get; set; } + } +} \ No newline at end of file diff --git a/src/Commands/Model/PowerPlatform/PowerApp/PowerAppExportPackageResource.cs b/src/Commands/Model/PowerPlatform/PowerApp/PowerAppExportPackageResource.cs new file mode 100644 index 000000000..689269898 --- /dev/null +++ b/src/Commands/Model/PowerPlatform/PowerApp/PowerAppExportPackageResource.cs @@ -0,0 +1,65 @@ +using System.Collections.Generic; +using System.Text.Json.Serialization; + +namespace PnP.PowerShell.Commands.Model.PowerPlatform.PowerApp +{ + /// + /// Contains details on a specific resource in a Flow export request + /// + public class PowerAppExportPackageResource + { + /// + /// Full identifier path of the resource + /// + [JsonPropertyName("id")] + public string Id { get; set; } + + /// + /// Identifier of the resource + /// + [JsonPropertyName("name")] + public string Name { get; set; } + + /// + /// Type of resource + /// + [JsonPropertyName("type")] + public string Type { get; set; } + + /// + /// Indicator if the resource should be updated or considered a new resource by default on import + /// + [JsonPropertyName("creationType")] + public string CreationType { get; set; } + + /// + /// Additional details on the resource + /// + [JsonPropertyName("details")] + public Dictionary Details { get; set; } + + /// + /// Indicator who can configure the resource + /// + [JsonPropertyName("configurableBy")] + public string ConfigurableBy { get; set; } + + /// + /// Indicator where this resource is located in a hierarchical structure + /// + [JsonPropertyName("hierarchy")] + public string Hierarchy { get; set; } + + /// + /// Indicator if there are dependencies on other resources + /// + [JsonPropertyName("dependsOn")] + public object[] DependsOn { get; set; } + + /// + /// Suggested approach on import + /// + [JsonPropertyName("suggestedCreationType")] + public string SuggestedCreationType { get; set; } + } +} \ No newline at end of file diff --git a/src/Commands/Model/PowerPlatform/PowerApp/PowerAppPackageWrapper.cs b/src/Commands/Model/PowerPlatform/PowerApp/PowerAppPackageWrapper.cs new file mode 100644 index 000000000..90676d6f2 --- /dev/null +++ b/src/Commands/Model/PowerPlatform/PowerApp/PowerAppPackageWrapper.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Text.Json.Serialization; + +namespace PnP.PowerShell.Commands.Model.PowerPlatform.PowerApp +{ + /// + /// Contains the results of a request to export a Flow package + /// + public class PowerAppPackageWrapper + { + /// + /// Raw state indicating if the Flow export request was successful + /// + [JsonPropertyName("status")] + public string StatusRaw { get; set; } + + /// + /// The status of the export request as an enum + /// + [JsonIgnore] + public Enums.PowerAppExportStatus? Status + { + get { return !string.IsNullOrWhiteSpace(StatusRaw) && Enum.TryParse(StatusRaw, true, out var result) ? result : (Enums.PowerAppExportStatus?)null; } + set { StatusRaw = value.ToString(); } + } + + /// + /// Contains the resource identifiers + /// + [JsonPropertyName("baseResourceIds")] + public string[] BaseResourceIds { get; set; } + + /// + /// List with resources contained in the export + /// + [JsonPropertyName("resources")] + public Dictionary Resources { get; set; } + + /// + /// Array with errors generated when trying to export the resource + /// + [JsonPropertyName("errors")] + public PowerAppExportPackageError[] Errors{ get; set; } + } +} \ No newline at end of file diff --git a/src/Commands/PowerPlatform/PowerApps/ExportPowerApp.cs b/src/Commands/PowerPlatform/PowerApps/ExportPowerApp.cs new file mode 100644 index 000000000..fcbc2468b --- /dev/null +++ b/src/Commands/PowerPlatform/PowerApps/ExportPowerApp.cs @@ -0,0 +1,181 @@ +using PnP.PowerShell.Commands.Attributes; +using PnP.PowerShell.Commands.Base; +using PnP.PowerShell.Commands.Base.PipeBinds; +using PnP.PowerShell.Commands.Utilities.REST; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Management.Automation; +using System.Net.Http; +using System.Text.Json; +using System.Threading; + +namespace PnP.PowerShell.Commands.PowerPlatform.PowerApps +{ + [Cmdlet(VerbsData.Export, "PnPPowerApp")] + [RequiredMinimalApiPermissions("https://management.azure.com/.default")] + public class ExportPowerApp : PnPAzureManagementApiCmdlet + { + + [Parameter(Mandatory = true)] + + public PowerPlatformEnvironmentPipeBind Environment; + + [Parameter(Mandatory = true)] + public PowerAppPipeBind Identity; + + [Parameter(Mandatory = false)] + public string PackageDisplayName; + + [Parameter(Mandatory = false)] + public string PackageDescription; + + [Parameter(Mandatory = false)] + public string PackageCreatedBy; + + [Parameter(Mandatory = false)] + public string PackageSourceEnvironment; + + [Parameter(Mandatory = false)] + public string OutPath; + + [Parameter(Mandatory = false)] + public SwitchParameter Force; + + protected override void ExecuteCmdlet() + { + if (ParameterSpecified(nameof(OutPath))) + { + if (!System.IO.Path.IsPathRooted(OutPath)) + { + OutPath = System.IO.Path.Combine(SessionState.Path.CurrentFileSystemLocation.Path, OutPath); + } + if (System.IO.Directory.Exists(OutPath)) + { + throw new PSArgumentException("Please specify a folder including a filename"); + } + if (System.IO.File.Exists(OutPath)) + { + if (!Force && !ShouldContinue($"File '{OutPath}' exists. Overwrite?", "Export App")) + { + // Exit cmdlet + return; + } + } + } + + var environmentName = Environment.GetName(); + var appName = Identity.GetName(); + + var postData = new + { + baseResourceIds = new[] { + $"/providers/Microsoft.PowerApps/apps/{appName}" + } + }; + var wrapper = RestHelper.PostAsync(Connection.HttpClient, $"https://api.bap.microsoft.com/providers/Microsoft.BusinessAppPlatform/environments/{environmentName}/listPackageResources?api-version=2016-11-01", AccessToken, payload: postData).GetAwaiter().GetResult(); + + if (wrapper.Status == Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Succeeded) + { + foreach (var resource in wrapper.Resources) + { + if (resource.Value.Type == "Microsoft.PowerApps/apps") + { + resource.Value.SuggestedCreationType = "Update"; + } + } + var exportPostData = new + { + includedResourceIds = new[] + { + $"/providers/Microsoft.PowerApps/apps/{appName}" + }, + details = new + { + displayName = PackageDisplayName, + description = PackageDescription, + creator = PackageCreatedBy, + sourceEnvironment = PackageSourceEnvironment + }, + resources = wrapper.Resources + }; + + var responseHeader = RestHelper.PostAsyncGetResponseHeader(Connection.HttpClient, $"https://api.bap.microsoft.com/providers/Microsoft.BusinessAppPlatform/environments/{environmentName}/exportPackage?api-version=2016-11-01", AccessToken, payload: exportPostData).GetAwaiter().GetResult(); + + var packageLink = getPackageLink(Convert.ToString(responseHeader.Location)); + using (var requestMessage = new HttpRequestMessage(HttpMethod.Get, packageLink)) + { + requestMessage.Version = new Version(2, 0); + //requestMessage.Headers.Add("Authorization", $"Bearer {AccessToken}"); + var fileresponse = Connection.HttpClient.SendAsync(requestMessage).GetAwaiter().GetResult(); + var byteArray = fileresponse.Content.ReadAsByteArrayAsync().GetAwaiter().GetResult(); + var fileName = string.Empty; + if (ParameterSpecified(nameof(OutPath))) + { + if (!System.IO.Path.IsPathRooted(OutPath)) + { + OutPath = System.IO.Path.Combine(SessionState.Path.CurrentFileSystemLocation.Path, OutPath); + } + fileName = OutPath; + } + else + { + fileName = new System.Text.RegularExpressions.Regex("([^\\/]+\\.zip)").Match(packageLink).Value; + fileName = System.IO.Path.Combine(SessionState.Path.CurrentFileSystemLocation.Path, fileName); + } + + System.IO.File.WriteAllBytes(fileName, byteArray); + var returnObject = new PSObject(); + returnObject.Properties.Add(new PSNoteProperty("Filename", fileName)); + WriteObject(returnObject); + } + + } + else + { + // Errors have been reported in the export request result + foreach (var error in wrapper.Errors) + { + WriteVerbose($"Export failed for {appName} with error {error.Code}: {error.Message}"); + } + } + } + private string getPackageLink(string location) + { + var status = Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Running; + var packageLink = ""; + if (location != null) + { + do + { + var runningresponse = RestHelper.GetAsync(Connection.HttpClient, location, AccessToken).GetAwaiter().GetResult(); + + if (runningresponse.TryGetProperty("properties", out JsonElement properties)) + { + if (properties.TryGetProperty("status", out JsonElement runningstatusElement)) + { + if (runningstatusElement.GetString() == Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Succeeded.ToString()) + { + status = Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Succeeded; + if (properties.TryGetProperty("packageLink", out JsonElement packageLinkElement)) + { + if (packageLinkElement.TryGetProperty("value", out JsonElement valueElement)) + { + packageLink = valueElement.GetString(); + } + } + } + else + { + //if status is still running, sleep the thread for 3 seconds + Thread.Sleep(3000); + } + } + } + } while (status == Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Running); + } + return packageLink; + } + } +} diff --git a/src/Commands/Utilities/REST/RestHelper.cs b/src/Commands/Utilities/REST/RestHelper.cs index 4513739b9..b159e78df 100644 --- a/src/Commands/Utilities/REST/RestHelper.cs +++ b/src/Commands/Utilities/REST/RestHelper.cs @@ -289,6 +289,22 @@ public static async Task PostAsync(HttpClient httpClient, string url, stri return default(T); } + public static async Task PostAsyncGetResponseHeader(HttpClient httpClient, string url, string accessToken, object payload, bool camlCasePolicy = true, string accept = "application/json") + { + HttpRequestMessage message = null; + if (payload != null) + { + var content = new StringContent(JsonSerializer.Serialize(payload, new JsonSerializerOptions { DefaultIgnoreCondition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingNull })); + content.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue("application/json"); + message = GetMessage(url, HttpMethod.Post, accessToken, accept, content); + } + else + { + message = GetMessage(url, HttpMethod.Post, accessToken, accept); + } + return await SendMessageAsyncGetResponseHeader(httpClient, message); + } + public static async Task PostAsync(HttpClient httpClient, string url, ClientContext clientContext, object payload, bool camlCasePolicy = true) @@ -633,6 +649,28 @@ private static async Task SendMessageAsync(HttpClient httpClient, HttpRe } } + private static async Task SendMessageAsyncGetResponseHeader(HttpClient httpClient, HttpRequestMessage message) + { + var response = await httpClient.SendAsync(message); + while (response.StatusCode == (HttpStatusCode)429) + { + // throttled + var retryAfter = response.Headers.RetryAfter; + await Task.Delay(retryAfter.Delta.Value.Seconds * 1000); + response = await httpClient.SendAsync(CloneMessage(message)); + } + if (response.IsSuccessStatusCode) + { + return response.Headers; + } + else + { + var errorContent = await response.Content.ReadAsStringAsync(); + throw new HttpRequestException(errorContent); + } + } + + private static HttpRequestMessage CloneMessage(HttpRequestMessage req) { HttpRequestMessage clone = new HttpRequestMessage(req.Method, req.RequestUri); From 19d866782367ba619fff039125588b320e3623e4 Mon Sep 17 00:00:00 2001 From: Siddharth Vaghasia Date: Tue, 4 Jul 2023 14:33:09 +0530 Subject: [PATCH 02/21] updated as per review comments. --- .../Environment/PowerPlatformConnector.cs | 403 ++++++++++++++++++ .../Environment/GetPowerPlatformConnectors.cs | 68 +++ .../PowerPlatform/PowerApps/ExportPowerApp.cs | 88 +--- src/Commands/Utilities/PowerAppsUtility.cs | 100 +++++ 4 files changed, 587 insertions(+), 72 deletions(-) create mode 100644 src/Commands/Model/PowerPlatform/Environment/PowerPlatformConnector.cs create mode 100644 src/Commands/PowerPlatform/Environment/GetPowerPlatformConnectors.cs create mode 100644 src/Commands/Utilities/PowerAppsUtility.cs diff --git a/src/Commands/Model/PowerPlatform/Environment/PowerPlatformConnector.cs b/src/Commands/Model/PowerPlatform/Environment/PowerPlatformConnector.cs new file mode 100644 index 000000000..76a7760b9 --- /dev/null +++ b/src/Commands/Model/PowerPlatform/Environment/PowerPlatformConnector.cs @@ -0,0 +1,403 @@ +using System; +using System.Collections.Generic; +using System.Text.Json.Serialization; + +namespace PnP.PowerShell.Commands.Model.PowerPlatform.Environment +{ + public class PowerPlatformConnector + { + + [JsonPropertyName("name")] + public string name { get; set; } + + [JsonPropertyName("id")] + public string id { get; set; } + + [JsonPropertyName("type")] + public string type { get; set; } + + [JsonPropertyName("properties")] + public Properties properties { get; set; } + + + public class ApiDefinitions + { + [JsonPropertyName("originalSwaggerUrl")] + public string originalSwaggerUrl { get; set; } + + [JsonPropertyName("modifiedSwaggerUrl")] + public string modifiedSwaggerUrl { get; set; } + } + + public class AuthorizationUrl + { + [JsonPropertyName("value")] + public string value { get; set; } + } + + public class BackendService + { + [JsonPropertyName("serviceUrl")] + public string serviceUrl { get; set; } + } + + public class ConnectionParameters + { + [JsonPropertyName("token")] + public Token token { get; set; } + + [JsonPropertyName("token:TenantId")] + public TokenTenantId tokenTenantId { get; set; } + } + + public class Constraints + { + [JsonPropertyName("required")] + public string required { get; set; } + + [JsonPropertyName("hidden")] + public string hidden { get; set; } + } + + public class Contact + { + } + + public class CreatedBy + { + [JsonPropertyName("id")] + public string id { get; set; } + + [JsonPropertyName("displayName")] + public string displayName { get; set; } + + [JsonPropertyName("email")] + public string email { get; set; } + + [JsonPropertyName("type")] + public string type { get; set; } + + [JsonPropertyName("tenantId")] + public string tenantId { get; set; } + + [JsonPropertyName("userPrincipalName")] + public string userPrincipalName { get; set; } + } + + public class CustomParameters + { + [JsonPropertyName("loginUri")] + public LoginUri loginUri { get; set; } + + [JsonPropertyName("tenantId")] + public TenantId tenantId { get; set; } + + [JsonPropertyName("resourceUri")] + public ResourceUri resourceUri { get; set; } + + [JsonPropertyName("authorizationUrl")] + public AuthorizationUrl authorizationUrl { get; set; } + + [JsonPropertyName("tokenUrl")] + public TokenUrl tokenUrl { get; set; } + + [JsonPropertyName("refreshUrl")] + public RefreshUrl refreshUrl { get; set; } + + [JsonPropertyName("enableOnbehalfOfLogin")] + public EnableOnbehalfOfLogin enableOnbehalfOfLogin { get; set; } + } + + public class EnableOnbehalfOfLogin + { + [JsonPropertyName("value")] + public string value { get; set; } + } + + public class Environment + { + [JsonPropertyName("id")] + public string id { get; set; } + + [JsonPropertyName("name")] + public string name { get; set; } + } + + public class License + { + } + + public class LoginUri + { + [JsonPropertyName("value")] + public string value { get; set; } + } + + public class Metadata + { + [JsonPropertyName("sourceType")] + public string sourceType { get; set; } + + [JsonPropertyName("source")] + public string source { get; set; } + + [JsonPropertyName("brandColor")] + public string brandColor { get; set; } + + [JsonPropertyName("contact")] + public Contact contact { get; set; } + + [JsonPropertyName("license")] + public License license { get; set; } + + [JsonPropertyName("publisherUrl")] + public object publisherUrl { get; set; } + + [JsonPropertyName("serviceUrl")] + public object serviceUrl { get; set; } + + [JsonPropertyName("documentationUrl")] + public object documentationUrl { get; set; } + + [JsonPropertyName("environmentName")] + public string environmentName { get; set; } + + [JsonPropertyName("xrmConnectorId")] + public object xrmConnectorId { get; set; } + + [JsonPropertyName("almMode")] + public string almMode { get; set; } + + [JsonPropertyName("useNewApimVersion")] + public bool useNewApimVersion { get; set; } + + [JsonPropertyName("createdBy")] + public string createdBy { get; set; } + + [JsonPropertyName("modifiedBy")] + public string modifiedBy { get; set; } + + [JsonPropertyName("allowSharing")] + public bool allowSharing { get; set; } + + [JsonPropertyName("parameters")] + public Parameters parameters { get; set; } + } + + public class ModifiedBy + { + [JsonPropertyName("id")] + public string id { get; set; } + + [JsonPropertyName("displayName")] + public string displayName { get; set; } + + [JsonPropertyName("email")] + public string email { get; set; } + + [JsonPropertyName("type")] + public string type { get; set; } + + [JsonPropertyName("tenantId")] + public string tenantId { get; set; } + + [JsonPropertyName("userPrincipalName")] + public string userPrincipalName { get; set; } + } + + public class OAuthSettings + { + [JsonPropertyName("identityProvider")] + public string identityProvider { get; set; } + + [JsonPropertyName("clientId")] + public string clientId { get; set; } + + [JsonPropertyName("scopes")] + public List scopes { get; set; } + + [JsonPropertyName("redirectMode")] + public string redirectMode { get; set; } + + [JsonPropertyName("redirectUrl")] + public string redirectUrl { get; set; } + + [JsonPropertyName("properties")] + public Properties properties { get; set; } + + [JsonPropertyName("customParameters")] + public CustomParameters customParameters { get; set; } + } + + public class Parameters + { + [JsonPropertyName("x-ms-apimTemplateParameter.name")] + public string xmsapimTemplateParametername { get; set; } + + [JsonPropertyName("x-ms-apimTemplateParameter.value")] + public string xmsapimTemplateParametervalue { get; set; } + + [JsonPropertyName("x-ms-apimTemplateParameter.existsAction")] + public string xmsapimTemplateParameterexistsAction { get; set; } + + [JsonPropertyName("x-ms-apimTemplate-policySection")] + public string xmsapimTemplatepolicySection { get; set; } + } + + public class PolicyTemplateInstance + { + [JsonPropertyName("templateId")] + public string templateId { get; set; } + + [JsonPropertyName("title")] + public string title { get; set; } + + [JsonPropertyName("parameters")] + public Parameters parameters { get; set; } + } + + public class Properties + { + [JsonPropertyName("displayName")] + public string displayName { get; set; } + + [JsonPropertyName("iconUri")] + public string iconUri { get; set; } + + [JsonPropertyName("iconBrandColor")] + public string iconBrandColor { get; set; } + + [JsonPropertyName("contact")] + public Contact contact { get; set; } + + [JsonPropertyName("license")] + public License license { get; set; } + + [JsonPropertyName("apiEnvironment")] + public string apiEnvironment { get; set; } + + [JsonPropertyName("isCustomApi")] + public bool isCustomApi { get; set; } + + [JsonPropertyName("connectionParameters")] + public ConnectionParameters connectionParameters { get; set; } + + [JsonPropertyName("runtimeUrls")] + public List runtimeUrls { get; set; } + + [JsonPropertyName("primaryRuntimeUrl")] + public string primaryRuntimeUrl { get; set; } + + [JsonPropertyName("metadata")] + public Metadata metadata { get; set; } + + [JsonPropertyName("capabilities")] + public List capabilities { get; set; } + + [JsonPropertyName("description")] + public string description { get; set; } + + [JsonPropertyName("apiDefinitions")] + public ApiDefinitions apiDefinitions { get; set; } + + [JsonPropertyName("backendService")] + public BackendService backendService { get; set; } + + [JsonPropertyName("createdBy")] + public CreatedBy createdBy { get; set; } + + [JsonPropertyName("modifiedBy")] + public ModifiedBy modifiedBy { get; set; } + + [JsonPropertyName("createdTime")] + public DateTimeOffset createdTime { get; set; } + + [JsonPropertyName("changedTime")] + public DateTimeOffset changedTime { get; set; } + + [JsonPropertyName("environment")] + public Environment environment { get; set; } + + [JsonPropertyName("tier")] + public string tier { get; set; } + + [JsonPropertyName("publisher")] + public string publisher { get; set; } + + [JsonPropertyName("almMode")] + public string almMode { get; set; } + + [JsonPropertyName("parameters")] + public Parameters parameters { get; set; } + + [JsonPropertyName("policyTemplateInstances")] + public List policyTemplateInstances { get; set; } + + [JsonPropertyName("IsFirstParty")] + public string IsFirstParty { get; set; } + + [JsonPropertyName("AzureActiveDirectoryResourceId")] + public string AzureActiveDirectoryResourceId { get; set; } + + [JsonPropertyName("IsOnbehalfofLoginSupported")] + public bool IsOnbehalfofLoginSupported { get; set; } + } + + public class RefreshUrl + { + [JsonPropertyName("value")] + public string value { get; set; } + } + + public class ResourceUri + { + [JsonPropertyName("value")] + public string value { get; set; } + } + + public class TenantId + { + [JsonPropertyName("value")] + public string value { get; set; } + } + + public class Token + { + [JsonPropertyName("type")] + public string type { get; set; } + + [JsonPropertyName("oAuthSettings")] + public OAuthSettings oAuthSettings { get; set; } + } + + public class TokenTenantId + { + [JsonPropertyName("type")] + public string type { get; set; } + + [JsonPropertyName("metadata")] + public Metadata metadata { get; set; } + + [JsonPropertyName("uiDefinition")] + public UiDefinition uiDefinition { get; set; } + } + + public class TokenUrl + { + [JsonPropertyName("value")] + public string value { get; set; } + } + + public class UiDefinition + { + [JsonPropertyName("constraints")] + public Constraints constraints { get; set; } + } + + + + + + + } +} diff --git a/src/Commands/PowerPlatform/Environment/GetPowerPlatformConnectors.cs b/src/Commands/PowerPlatform/Environment/GetPowerPlatformConnectors.cs new file mode 100644 index 000000000..592abf71d --- /dev/null +++ b/src/Commands/PowerPlatform/Environment/GetPowerPlatformConnectors.cs @@ -0,0 +1,68 @@ +using PnP.PowerShell.Commands.Attributes; +using PnP.PowerShell.Commands.Base; +using PnP.PowerShell.Commands.Utilities.REST; +using System; +using System.Management.Automation; +using System.Linq; +using PnP.PowerShell.Commands.Base.PipeBinds; + + +namespace PnP.PowerShell.Commands.PowerPlatform.Environment +{ + [Cmdlet(VerbsCommon.Get, "PnPPowerPlatformConnectors")] + public class GetPowerPlatformConnectors : PnPAzureManagementApiCmdlet + { + + [Parameter(Mandatory = false, ValueFromPipeline = true)] + public PowerPlatformEnvironmentPipeBind Environment; + + [Parameter(Mandatory = false)] + public SwitchParameter AsAdmin; + + [Parameter(Mandatory = false)] + public PowerAppPipeBind Identity; // TODO + + protected override void ExecuteCmdlet() + { + string environmentName = null; + if (ParameterSpecified(nameof(Environment))) + { + environmentName = Environment.GetName(); + + WriteVerbose($"Using environment as provided '{environmentName}'"); + } + else + { + var environments = GraphHelper.GetResultCollectionAsync(Connection, "https://management.azure.com/providers/Microsoft.ProcessSimple/environments?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + environmentName = environments.FirstOrDefault(e => e.Properties.IsDefault.HasValue && e.Properties.IsDefault == true)?.Name; + + if (string.IsNullOrEmpty(environmentName)) + { + throw new Exception($"No default environment found, please pass in a specific environment name using the {nameof(Environment)} parameter"); + } + + WriteVerbose($"Using default environment as retrieved '{environmentName}'"); + } + + //TODO + if (ParameterSpecified(nameof(Identity))) + { + var appName = Identity.GetName(); + + WriteVerbose($"Retrieving specific PowerApp with the provided name '{appName}' within the environment '{environmentName}'"); + + var result = GraphHelper.GetAsync(Connection, $"https://api.powerapps.com/providers/Microsoft.PowerApps{(AsAdmin ? "/scopes/admin/environments/" + environmentName : "")}/apps/{appName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + + WriteObject(result, false); + } + else + { + WriteVerbose($"Retrieving all Connectors within environment '{environmentName}'"); + + var connectors = GraphHelper.GetResultCollectionAsync(Connection, $"https://api.powerapps.com/providers/Microsoft.PowerApps/apis?api-version=2016-11-01&$filter=environment eq '{environmentName}' and isCustomApi eq 'True'", AccessToken).GetAwaiter().GetResult(); + WriteObject(connectors, true); + } + + } + } +} \ No newline at end of file diff --git a/src/Commands/PowerPlatform/PowerApps/ExportPowerApp.cs b/src/Commands/PowerPlatform/PowerApps/ExportPowerApp.cs index fcbc2468b..1f47dd593 100644 --- a/src/Commands/PowerPlatform/PowerApps/ExportPowerApp.cs +++ b/src/Commands/PowerPlatform/PowerApps/ExportPowerApp.cs @@ -10,6 +10,7 @@ using System.Net.Http; using System.Text.Json; using System.Threading; +using PnP.PowerShell.Commands.Utilities; namespace PnP.PowerShell.Commands.PowerPlatform.PowerApps { @@ -68,14 +69,8 @@ protected override void ExecuteCmdlet() var environmentName = Environment.GetName(); var appName = Identity.GetName(); - var postData = new - { - baseResourceIds = new[] { - $"/providers/Microsoft.PowerApps/apps/{appName}" - } - }; - var wrapper = RestHelper.PostAsync(Connection.HttpClient, $"https://api.bap.microsoft.com/providers/Microsoft.BusinessAppPlatform/environments/{environmentName}/listPackageResources?api-version=2016-11-01", AccessToken, payload: postData).GetAwaiter().GetResult(); - + var wrapper = PowerAppsUtility.GetWrapper(Connection.HttpClient, environmentName, AccessToken, appName).GetAwaiter().GetResult(); + if (wrapper.Status == Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Succeeded) { foreach (var resource in wrapper.Resources) @@ -85,31 +80,17 @@ protected override void ExecuteCmdlet() resource.Value.SuggestedCreationType = "Update"; } } - var exportPostData = new - { - includedResourceIds = new[] - { - $"/providers/Microsoft.PowerApps/apps/{appName}" - }, - details = new - { - displayName = PackageDisplayName, - description = PackageDescription, - creator = PackageCreatedBy, - sourceEnvironment = PackageSourceEnvironment - }, - resources = wrapper.Resources - }; - - var responseHeader = RestHelper.PostAsyncGetResponseHeader(Connection.HttpClient, $"https://api.bap.microsoft.com/providers/Microsoft.BusinessAppPlatform/environments/{environmentName}/exportPackage?api-version=2016-11-01", AccessToken, payload: exportPostData).GetAwaiter().GetResult(); - - var packageLink = getPackageLink(Convert.ToString(responseHeader.Location)); - using (var requestMessage = new HttpRequestMessage(HttpMethod.Get, packageLink)) - { - requestMessage.Version = new Version(2, 0); - //requestMessage.Headers.Add("Authorization", $"Bearer {AccessToken}"); - var fileresponse = Connection.HttpClient.SendAsync(requestMessage).GetAwaiter().GetResult(); - var byteArray = fileresponse.Content.ReadAsByteArrayAsync().GetAwaiter().GetResult(); + var objectDetails = new { + displayName = PackageDisplayName, + description = PackageDescription, + creator = PackageCreatedBy, + sourceEnvironment = PackageSourceEnvironment + }; + var responseHeader = PowerAppsUtility.GetResponseHeader(Connection.HttpClient, environmentName,AccessToken, appName, wrapper, objectDetails); + + + var packageLink = PowerAppsUtility.GetPackageLink(Connection.HttpClient,Convert.ToString(responseHeader.Location),AccessToken); + var getFileByteArray = PowerAppsUtility.GetFileByteArray(Connection.HttpClient, packageLink, AccessToken); var fileName = string.Empty; if (ParameterSpecified(nameof(OutPath))) { @@ -125,13 +106,11 @@ protected override void ExecuteCmdlet() fileName = System.IO.Path.Combine(SessionState.Path.CurrentFileSystemLocation.Path, fileName); } - System.IO.File.WriteAllBytes(fileName, byteArray); + System.IO.File.WriteAllBytes(fileName, getFileByteArray); var returnObject = new PSObject(); returnObject.Properties.Add(new PSNoteProperty("Filename", fileName)); WriteObject(returnObject); } - - } else { // Errors have been reported in the export request result @@ -141,41 +120,6 @@ protected override void ExecuteCmdlet() } } } - private string getPackageLink(string location) - { - var status = Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Running; - var packageLink = ""; - if (location != null) - { - do - { - var runningresponse = RestHelper.GetAsync(Connection.HttpClient, location, AccessToken).GetAwaiter().GetResult(); - - if (runningresponse.TryGetProperty("properties", out JsonElement properties)) - { - if (properties.TryGetProperty("status", out JsonElement runningstatusElement)) - { - if (runningstatusElement.GetString() == Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Succeeded.ToString()) - { - status = Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Succeeded; - if (properties.TryGetProperty("packageLink", out JsonElement packageLinkElement)) - { - if (packageLinkElement.TryGetProperty("value", out JsonElement valueElement)) - { - packageLink = valueElement.GetString(); - } - } - } - else - { - //if status is still running, sleep the thread for 3 seconds - Thread.Sleep(3000); - } - } - } - } while (status == Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Running); - } - return packageLink; - } + } } diff --git a/src/Commands/Utilities/PowerAppsUtility.cs b/src/Commands/Utilities/PowerAppsUtility.cs new file mode 100644 index 000000000..773a97a48 --- /dev/null +++ b/src/Commands/Utilities/PowerAppsUtility.cs @@ -0,0 +1,100 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Text; +using System.Text.Json; +using System.Threading; +using System.Threading.Tasks; +using PnP.PowerShell.Commands.Base; +using PnP.PowerShell.Commands.Utilities.REST; + +namespace PnP.PowerShell.Commands.Utilities +{ + internal static class PowerAppsUtility + { + internal static async Task GetWrapper(HttpClient connection, string environmentName, string accessToken, string appName) + { + var postData = new + { + baseResourceIds = new[] { + $"/providers/Microsoft.PowerApps/apps/{appName}" + } + }; + + var wrapper = await RestHelper.PostAsync(connection, $"https://api.bap.microsoft.com/providers/Microsoft.BusinessAppPlatform/environments/{environmentName}/listPackageResources?api-version=2016-11-01", accessToken, payload: postData); + + + return wrapper; + } + + internal static HttpResponseHeaders GetResponseHeader(HttpClient connection, string environmentName, string accessToken, string appName,Model.PowerPlatform.PowerApp.PowerAppPackageWrapper wrapper, object details) + { + var exportPostData = new + { + includedResourceIds = new[] + { + $"/providers/Microsoft.PowerApps/apps/{appName}" + }, + details = details, + resources = wrapper.Resources + }; + + var responseHeader = RestHelper.PostAsyncGetResponseHeader(connection, $"https://api.bap.microsoft.com/providers/Microsoft.BusinessAppPlatform/environments/{environmentName}/exportPackage?api-version=2016-11-01", accessToken, payload: exportPostData).GetAwaiter().GetResult(); + + + return responseHeader; + } + + internal static string GetPackageLink(HttpClient connection,string location,string accessToken) + { + var status = Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Running; + var packageLink = ""; + if (location != null) + { + do + { + var runningresponse = RestHelper.GetAsync(connection, location, accessToken).GetAwaiter().GetResult(); + + if (runningresponse.TryGetProperty("properties", out JsonElement properties)) + { + if (properties.TryGetProperty("status", out JsonElement runningstatusElement)) + { + if (runningstatusElement.GetString() == Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Succeeded.ToString()) + { + status = Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Succeeded; + if (properties.TryGetProperty("packageLink", out JsonElement packageLinkElement)) + { + if (packageLinkElement.TryGetProperty("value", out JsonElement valueElement)) + { + packageLink = valueElement.GetString(); + } + } + } + else + { + //if status is still running, sleep the thread for 3 seconds + Thread.Sleep(3000); + } + } + } + } while (status == Model.PowerPlatform.PowerApp.Enums.PowerAppExportStatus.Running); + } + return packageLink; + } + + internal static byte[] GetFileByteArray(HttpClient connection, string packageLink, string accessToken) + { + using (var requestMessage = new HttpRequestMessage(HttpMethod.Get, packageLink)) + { + requestMessage.Version = new Version(2, 0); + //requestMessage.Headers.Add("Authorization", $"Bearer {AccessToken}"); + var fileresponse = connection.SendAsync(requestMessage).GetAwaiter().GetResult(); + var byteArray = fileresponse.Content.ReadAsByteArrayAsync().GetAwaiter().GetResult(); + return byteArray; + } + + } + } +} From aacbceedf7d8be02fd5189ba253904facf31f724 Mon Sep 17 00:00:00 2001 From: Siddharth Vaghasia Date: Wed, 5 Jul 2023 18:53:42 +0530 Subject: [PATCH 03/21] removed files related to GetConnectors command --- .../Environment/PowerPlatformConnector.cs | 403 ------------------ .../Environment/GetPowerPlatformConnectors.cs | 68 --- 2 files changed, 471 deletions(-) delete mode 100644 src/Commands/Model/PowerPlatform/Environment/PowerPlatformConnector.cs delete mode 100644 src/Commands/PowerPlatform/Environment/GetPowerPlatformConnectors.cs diff --git a/src/Commands/Model/PowerPlatform/Environment/PowerPlatformConnector.cs b/src/Commands/Model/PowerPlatform/Environment/PowerPlatformConnector.cs deleted file mode 100644 index 76a7760b9..000000000 --- a/src/Commands/Model/PowerPlatform/Environment/PowerPlatformConnector.cs +++ /dev/null @@ -1,403 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text.Json.Serialization; - -namespace PnP.PowerShell.Commands.Model.PowerPlatform.Environment -{ - public class PowerPlatformConnector - { - - [JsonPropertyName("name")] - public string name { get; set; } - - [JsonPropertyName("id")] - public string id { get; set; } - - [JsonPropertyName("type")] - public string type { get; set; } - - [JsonPropertyName("properties")] - public Properties properties { get; set; } - - - public class ApiDefinitions - { - [JsonPropertyName("originalSwaggerUrl")] - public string originalSwaggerUrl { get; set; } - - [JsonPropertyName("modifiedSwaggerUrl")] - public string modifiedSwaggerUrl { get; set; } - } - - public class AuthorizationUrl - { - [JsonPropertyName("value")] - public string value { get; set; } - } - - public class BackendService - { - [JsonPropertyName("serviceUrl")] - public string serviceUrl { get; set; } - } - - public class ConnectionParameters - { - [JsonPropertyName("token")] - public Token token { get; set; } - - [JsonPropertyName("token:TenantId")] - public TokenTenantId tokenTenantId { get; set; } - } - - public class Constraints - { - [JsonPropertyName("required")] - public string required { get; set; } - - [JsonPropertyName("hidden")] - public string hidden { get; set; } - } - - public class Contact - { - } - - public class CreatedBy - { - [JsonPropertyName("id")] - public string id { get; set; } - - [JsonPropertyName("displayName")] - public string displayName { get; set; } - - [JsonPropertyName("email")] - public string email { get; set; } - - [JsonPropertyName("type")] - public string type { get; set; } - - [JsonPropertyName("tenantId")] - public string tenantId { get; set; } - - [JsonPropertyName("userPrincipalName")] - public string userPrincipalName { get; set; } - } - - public class CustomParameters - { - [JsonPropertyName("loginUri")] - public LoginUri loginUri { get; set; } - - [JsonPropertyName("tenantId")] - public TenantId tenantId { get; set; } - - [JsonPropertyName("resourceUri")] - public ResourceUri resourceUri { get; set; } - - [JsonPropertyName("authorizationUrl")] - public AuthorizationUrl authorizationUrl { get; set; } - - [JsonPropertyName("tokenUrl")] - public TokenUrl tokenUrl { get; set; } - - [JsonPropertyName("refreshUrl")] - public RefreshUrl refreshUrl { get; set; } - - [JsonPropertyName("enableOnbehalfOfLogin")] - public EnableOnbehalfOfLogin enableOnbehalfOfLogin { get; set; } - } - - public class EnableOnbehalfOfLogin - { - [JsonPropertyName("value")] - public string value { get; set; } - } - - public class Environment - { - [JsonPropertyName("id")] - public string id { get; set; } - - [JsonPropertyName("name")] - public string name { get; set; } - } - - public class License - { - } - - public class LoginUri - { - [JsonPropertyName("value")] - public string value { get; set; } - } - - public class Metadata - { - [JsonPropertyName("sourceType")] - public string sourceType { get; set; } - - [JsonPropertyName("source")] - public string source { get; set; } - - [JsonPropertyName("brandColor")] - public string brandColor { get; set; } - - [JsonPropertyName("contact")] - public Contact contact { get; set; } - - [JsonPropertyName("license")] - public License license { get; set; } - - [JsonPropertyName("publisherUrl")] - public object publisherUrl { get; set; } - - [JsonPropertyName("serviceUrl")] - public object serviceUrl { get; set; } - - [JsonPropertyName("documentationUrl")] - public object documentationUrl { get; set; } - - [JsonPropertyName("environmentName")] - public string environmentName { get; set; } - - [JsonPropertyName("xrmConnectorId")] - public object xrmConnectorId { get; set; } - - [JsonPropertyName("almMode")] - public string almMode { get; set; } - - [JsonPropertyName("useNewApimVersion")] - public bool useNewApimVersion { get; set; } - - [JsonPropertyName("createdBy")] - public string createdBy { get; set; } - - [JsonPropertyName("modifiedBy")] - public string modifiedBy { get; set; } - - [JsonPropertyName("allowSharing")] - public bool allowSharing { get; set; } - - [JsonPropertyName("parameters")] - public Parameters parameters { get; set; } - } - - public class ModifiedBy - { - [JsonPropertyName("id")] - public string id { get; set; } - - [JsonPropertyName("displayName")] - public string displayName { get; set; } - - [JsonPropertyName("email")] - public string email { get; set; } - - [JsonPropertyName("type")] - public string type { get; set; } - - [JsonPropertyName("tenantId")] - public string tenantId { get; set; } - - [JsonPropertyName("userPrincipalName")] - public string userPrincipalName { get; set; } - } - - public class OAuthSettings - { - [JsonPropertyName("identityProvider")] - public string identityProvider { get; set; } - - [JsonPropertyName("clientId")] - public string clientId { get; set; } - - [JsonPropertyName("scopes")] - public List scopes { get; set; } - - [JsonPropertyName("redirectMode")] - public string redirectMode { get; set; } - - [JsonPropertyName("redirectUrl")] - public string redirectUrl { get; set; } - - [JsonPropertyName("properties")] - public Properties properties { get; set; } - - [JsonPropertyName("customParameters")] - public CustomParameters customParameters { get; set; } - } - - public class Parameters - { - [JsonPropertyName("x-ms-apimTemplateParameter.name")] - public string xmsapimTemplateParametername { get; set; } - - [JsonPropertyName("x-ms-apimTemplateParameter.value")] - public string xmsapimTemplateParametervalue { get; set; } - - [JsonPropertyName("x-ms-apimTemplateParameter.existsAction")] - public string xmsapimTemplateParameterexistsAction { get; set; } - - [JsonPropertyName("x-ms-apimTemplate-policySection")] - public string xmsapimTemplatepolicySection { get; set; } - } - - public class PolicyTemplateInstance - { - [JsonPropertyName("templateId")] - public string templateId { get; set; } - - [JsonPropertyName("title")] - public string title { get; set; } - - [JsonPropertyName("parameters")] - public Parameters parameters { get; set; } - } - - public class Properties - { - [JsonPropertyName("displayName")] - public string displayName { get; set; } - - [JsonPropertyName("iconUri")] - public string iconUri { get; set; } - - [JsonPropertyName("iconBrandColor")] - public string iconBrandColor { get; set; } - - [JsonPropertyName("contact")] - public Contact contact { get; set; } - - [JsonPropertyName("license")] - public License license { get; set; } - - [JsonPropertyName("apiEnvironment")] - public string apiEnvironment { get; set; } - - [JsonPropertyName("isCustomApi")] - public bool isCustomApi { get; set; } - - [JsonPropertyName("connectionParameters")] - public ConnectionParameters connectionParameters { get; set; } - - [JsonPropertyName("runtimeUrls")] - public List runtimeUrls { get; set; } - - [JsonPropertyName("primaryRuntimeUrl")] - public string primaryRuntimeUrl { get; set; } - - [JsonPropertyName("metadata")] - public Metadata metadata { get; set; } - - [JsonPropertyName("capabilities")] - public List capabilities { get; set; } - - [JsonPropertyName("description")] - public string description { get; set; } - - [JsonPropertyName("apiDefinitions")] - public ApiDefinitions apiDefinitions { get; set; } - - [JsonPropertyName("backendService")] - public BackendService backendService { get; set; } - - [JsonPropertyName("createdBy")] - public CreatedBy createdBy { get; set; } - - [JsonPropertyName("modifiedBy")] - public ModifiedBy modifiedBy { get; set; } - - [JsonPropertyName("createdTime")] - public DateTimeOffset createdTime { get; set; } - - [JsonPropertyName("changedTime")] - public DateTimeOffset changedTime { get; set; } - - [JsonPropertyName("environment")] - public Environment environment { get; set; } - - [JsonPropertyName("tier")] - public string tier { get; set; } - - [JsonPropertyName("publisher")] - public string publisher { get; set; } - - [JsonPropertyName("almMode")] - public string almMode { get; set; } - - [JsonPropertyName("parameters")] - public Parameters parameters { get; set; } - - [JsonPropertyName("policyTemplateInstances")] - public List policyTemplateInstances { get; set; } - - [JsonPropertyName("IsFirstParty")] - public string IsFirstParty { get; set; } - - [JsonPropertyName("AzureActiveDirectoryResourceId")] - public string AzureActiveDirectoryResourceId { get; set; } - - [JsonPropertyName("IsOnbehalfofLoginSupported")] - public bool IsOnbehalfofLoginSupported { get; set; } - } - - public class RefreshUrl - { - [JsonPropertyName("value")] - public string value { get; set; } - } - - public class ResourceUri - { - [JsonPropertyName("value")] - public string value { get; set; } - } - - public class TenantId - { - [JsonPropertyName("value")] - public string value { get; set; } - } - - public class Token - { - [JsonPropertyName("type")] - public string type { get; set; } - - [JsonPropertyName("oAuthSettings")] - public OAuthSettings oAuthSettings { get; set; } - } - - public class TokenTenantId - { - [JsonPropertyName("type")] - public string type { get; set; } - - [JsonPropertyName("metadata")] - public Metadata metadata { get; set; } - - [JsonPropertyName("uiDefinition")] - public UiDefinition uiDefinition { get; set; } - } - - public class TokenUrl - { - [JsonPropertyName("value")] - public string value { get; set; } - } - - public class UiDefinition - { - [JsonPropertyName("constraints")] - public Constraints constraints { get; set; } - } - - - - - - - } -} diff --git a/src/Commands/PowerPlatform/Environment/GetPowerPlatformConnectors.cs b/src/Commands/PowerPlatform/Environment/GetPowerPlatformConnectors.cs deleted file mode 100644 index 592abf71d..000000000 --- a/src/Commands/PowerPlatform/Environment/GetPowerPlatformConnectors.cs +++ /dev/null @@ -1,68 +0,0 @@ -using PnP.PowerShell.Commands.Attributes; -using PnP.PowerShell.Commands.Base; -using PnP.PowerShell.Commands.Utilities.REST; -using System; -using System.Management.Automation; -using System.Linq; -using PnP.PowerShell.Commands.Base.PipeBinds; - - -namespace PnP.PowerShell.Commands.PowerPlatform.Environment -{ - [Cmdlet(VerbsCommon.Get, "PnPPowerPlatformConnectors")] - public class GetPowerPlatformConnectors : PnPAzureManagementApiCmdlet - { - - [Parameter(Mandatory = false, ValueFromPipeline = true)] - public PowerPlatformEnvironmentPipeBind Environment; - - [Parameter(Mandatory = false)] - public SwitchParameter AsAdmin; - - [Parameter(Mandatory = false)] - public PowerAppPipeBind Identity; // TODO - - protected override void ExecuteCmdlet() - { - string environmentName = null; - if (ParameterSpecified(nameof(Environment))) - { - environmentName = Environment.GetName(); - - WriteVerbose($"Using environment as provided '{environmentName}'"); - } - else - { - var environments = GraphHelper.GetResultCollectionAsync(Connection, "https://management.azure.com/providers/Microsoft.ProcessSimple/environments?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); - environmentName = environments.FirstOrDefault(e => e.Properties.IsDefault.HasValue && e.Properties.IsDefault == true)?.Name; - - if (string.IsNullOrEmpty(environmentName)) - { - throw new Exception($"No default environment found, please pass in a specific environment name using the {nameof(Environment)} parameter"); - } - - WriteVerbose($"Using default environment as retrieved '{environmentName}'"); - } - - //TODO - if (ParameterSpecified(nameof(Identity))) - { - var appName = Identity.GetName(); - - WriteVerbose($"Retrieving specific PowerApp with the provided name '{appName}' within the environment '{environmentName}'"); - - var result = GraphHelper.GetAsync(Connection, $"https://api.powerapps.com/providers/Microsoft.PowerApps{(AsAdmin ? "/scopes/admin/environments/" + environmentName : "")}/apps/{appName}?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); - - WriteObject(result, false); - } - else - { - WriteVerbose($"Retrieving all Connectors within environment '{environmentName}'"); - - var connectors = GraphHelper.GetResultCollectionAsync(Connection, $"https://api.powerapps.com/providers/Microsoft.PowerApps/apis?api-version=2016-11-01&$filter=environment eq '{environmentName}' and isCustomApi eq 'True'", AccessToken).GetAwaiter().GetResult(); - WriteObject(connectors, true); - } - - } - } -} \ No newline at end of file From 3f5df1466bf2311045008e02fcc243eba8a573a5 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Mon, 17 Jul 2023 03:18:45 +0000 Subject: [PATCH 04/21] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9240 ++++++++--------- version.txt | 2 +- 3 files changed, 4622 insertions(+), 4622 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index e0f8b5d62..70a136208 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -80c482aa5d289d43517ce953330024638022d73e \ No newline at end of file +c98f8cb1feaf4956f6fcc467155187a9b38ede78 \ 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 f1dd93902..e3b02bf53 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9242 +1,9242 @@ [ { - "Command": "Add-PnPAlert -List \"Demo List\"", "Rank": 1, - "Id": 1, - "CommandName": "Add-PnPAlert" + "Command": "Add-PnPAlert -List \"Demo List\"", + "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)", "Rank": 2, - "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 }, { - "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" + "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\" -Frequency Daily -Time ((Get-Date).AddDays(1))", "Rank": 4, - "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 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg", "Rank": 1, - "Id": 5, - "CommandName": "Add-PnPApp" + "Command": "Add-PnPApp -Path ./myapp.sppkg", + "CommandName": "Add-PnPApp", + "Id": 5 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Rank": 2, - "Id": 6, - "CommandName": "Add-PnPApp" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "CommandName": "Add-PnPApp", + "Id": 6 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Rank": 3, - "Id": 7, - "CommandName": "Add-PnPApp" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "CommandName": "Add-PnPApp", + "Id": 7 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Rank": 4, - "Id": 8, - "CommandName": "Add-PnPApp" + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "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`\"}", "Rank": 1, - "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 }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Rank": 1, - "Id": 10, - "CommandName": "Add-PnPAvailableSiteClassification" + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 10 }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Rank": 2, - "Id": 11, - "CommandName": "Add-PnPAvailableSiteClassification" + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "CommandName": "Add-PnPAvailableSiteClassification", + "Id": 11 }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "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 }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "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 }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "Id": 14, - "CommandName": "Add-PnPAzureADGroupMember" + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "CommandName": "Add-PnPAzureADGroupMember", + "Id": 14 }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "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 }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "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 }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Rank": 3, - "Id": 17, - "CommandName": "Add-PnPAzureADGroupOwner" + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "CommandName": "Add-PnPAzureADGroupOwner", + "Id": 17 }, { - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", "Rank": 1, - "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 }, { - "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" + "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-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", "Rank": 1, - "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 }, { - "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" + "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 Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "Rank": 3, - "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 }, { - "Command": "Add-PnPContentType -Name \"Project Item\"", "Rank": 4, - "Id": 23, - "CommandName": "Add-PnPContentType" + "Command": "Add-PnPContentType -Name \"Project Item\"", + "CommandName": "Add-PnPContentType", + "Id": 23 }, { - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Rank": 5, - "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 }, { - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Rank": 1, - "Id": 25, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 25 }, { - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Rank": 2, - "Id": 26, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Id": 26 }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "Id": 27, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 27 }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "Id": 28, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "CommandName": "Add-PnPContentTypeToDocumentSet", + "Id": 28 }, { - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Rank": 1, - "Id": 29, - "CommandName": "Add-PnPContentTypeToList" + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "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`\"}\"", "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 }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Rank": 1, - "Id": 31, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 31 }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Rank": 2, - "Id": 32, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Id": 32 }, { - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Rank": 1, - "Id": 33, - "CommandName": "Add-PnPDocumentSet" + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "CommandName": "Add-PnPDocumentSet", + "Id": 33 }, { - "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" + "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 -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "Rank": 2, - "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 }, { - "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" + "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 ListDeleted -Synchronization Asynchronous -Scope Web", "Rank": 4, - "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 }, { - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Rank": 1, - "Id": 38, - "CommandName": "Add-PnPField" + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "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\"", "Rank": 2, - "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 }, { - "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" + "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\" -Field \"MyTestCol\"", "Rank": 4, - "Id": 41, - "CommandName": "Add-PnPField" + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "CommandName": "Add-PnPField", + "Id": 41 }, { - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "Rank": 5, - "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 }, { - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Rank": 6, - "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 }, { - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "Id": 44, - "CommandName": "Add-PnPFieldToContentType" + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "CommandName": "Add-PnPFieldToContentType", + "Id": 44 }, { - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Rank": 1, - "Id": 45, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "CommandName": "Add-PnPFile", + "Id": 45 }, { - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Rank": 2, - "Id": 46, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "CommandName": "Add-PnPFile", + "Id": 46 }, { - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "Rank": 3, - "Id": 47, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "CommandName": "Add-PnPFile", + "Id": 47 }, { - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", "Rank": 4, - "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 }, { - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", "Rank": 5, - "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 }, { - "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" + "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\" -NewFileName \"differentname.docx\"", "Rank": 7, - "Id": 51, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "CommandName": "Add-PnPFile", + "Id": 51 }, { - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Rank": 8, - "Id": 52, - "CommandName": "Add-PnPFile" + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "CommandName": "Add-PnPFile", + "Id": 52 }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "Id": 53, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "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\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "Id": 54, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "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 View -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3, - "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 }, { - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "Id": 56, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "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\" -Type Edit", "Rank": 2, - "Id": 57, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Id": 57 }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "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 }, { - "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" + "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 -ExpirationDate (Get-Date).AddDays(15)", "Rank": 3, - "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 }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Rank": 1, - "Id": 61, - "CommandName": "Add-PnPFileToSiteTemplate" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 61 }, { - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "Rank": 2, - "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 }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "Rank": 3, - "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 }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Rank": 4, - "Id": 64, - "CommandName": "Add-PnPFileToSiteTemplate" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 64 }, { - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Rank": 5, - "Id": 65, - "CommandName": "Add-PnPFileToSiteTemplate" + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "CommandName": "Add-PnPFileToSiteTemplate", + "Id": 65 }, { - "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" + "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\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 2, - "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 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "Id": 68, - "CommandName": "Add-PnPFolder" + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "CommandName": "Add-PnPFolder", + "Id": 68 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Rank": 2, - "Id": 69, - "CommandName": "Add-PnPFolder" + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "CommandName": "Add-PnPFolder", + "Id": 69 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Rank": 3, - "Id": 70, - "CommandName": "Add-PnPFolder" + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "CommandName": "Add-PnPFolder", + "Id": 70 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "Id": 71, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 71 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Rank": 2, - "Id": 72, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", + "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Id": 72 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "Rank": 3, - "Id": 73, - "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": 73 }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "Id": 74, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 74 }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Rank": 2, - "Id": 75, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Id": 75 }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Rank": 1, - "Id": 76, - "CommandName": "Add-PnPFolderSharingInvite" + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "CommandName": "Add-PnPFolderSharingInvite", + "Id": 76 }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Rank": 2, - "Id": 77, - "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": 77 }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "Rank": 3, - "Id": 78, - "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": 78 }, { - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 79, - "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": 79 }, { - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 2, - "Id": 80, - "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": 80 }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "Id": 81, - "CommandName": "Add-PnPGroupMember" + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "CommandName": "Add-PnPGroupMember", + "Id": 81 }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Rank": 2, - "Id": 82, - "CommandName": "Add-PnPGroupMember" + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "CommandName": "Add-PnPGroupMember", + "Id": 82 }, { - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1, - "Id": 83, - "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": 83 }, { - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Rank": 1, - "Id": 84, - "CommandName": "Add-PnPHubSiteAssociation" + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "CommandName": "Add-PnPHubSiteAssociation", + "Id": 84 }, { - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Rank": 1, - "Id": 85, - "CommandName": "Add-PnPHubToHubAssociation" + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 85 }, { - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Rank": 2, - "Id": 86, - "CommandName": "Add-PnPHubToHubAssociation" + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", + "CommandName": "Add-PnPHubToHubAssociation", + "Id": 86 }, { - "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": 87, - "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": 87 }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Rank": 1, - "Id": 88, - "CommandName": "Add-PnPJavaScriptBlock" + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 88 }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Rank": 2, - "Id": 89, - "CommandName": "Add-PnPJavaScriptBlock" + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "CommandName": "Add-PnPJavaScriptBlock", + "Id": 89 }, { - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Rank": 1, - "Id": 90, - "CommandName": "Add-PnPJavaScriptLink" + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", + "CommandName": "Add-PnPJavaScriptLink", + "Id": 90 }, { - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Rank": 2, - "Id": 91, - "CommandName": "Add-PnPJavaScriptLink" + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "CommandName": "Add-PnPJavaScriptLink", + "Id": 91 }, { - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Rank": 1, - "Id": 92, - "CommandName": "Add-PnPListDesign" + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "CommandName": "Add-PnPListDesign", + "Id": 92 }, { - "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": 93, - "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": 93 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Rank": 1, - "Id": 94, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 94 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Rank": 2, - "Id": 95, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 95 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Rank": 3, - "Id": 96, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Id": 96 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "Id": 97, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Add-PnPListItem", + "Id": 97 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "Id": 98, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Add-PnPListItem", + "Id": 98 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Rank": 3, - "Id": 99, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "CommandName": "Add-PnPListItem", + "Id": 99 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Rank": 4, - "Id": 100, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", + "CommandName": "Add-PnPListItem", + "Id": 100 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Rank": 5, - "Id": 101, - "CommandName": "Add-PnPListItem" + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "CommandName": "Add-PnPListItem", + "Id": 101 }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Rank": 1, - "Id": 102, - "CommandName": "Add-PnPListItemAttachment" + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", + "CommandName": "Add-PnPListItemAttachment", + "Id": 102 }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Rank": 2, - "Id": 103, - "CommandName": "Add-PnPListItemAttachment" + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", + "CommandName": "Add-PnPListItemAttachment", + "Id": 103 }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Rank": 3, - "Id": 104, - "CommandName": "Add-PnPListItemAttachment" + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "CommandName": "Add-PnPListItemAttachment", + "Id": 104 }, { - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Rank": 1, - "Id": 105, - "CommandName": "Add-PnPListItemComment" + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "CommandName": "Add-PnPListItemComment", + "Id": 105 }, { - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Rank": 1, - "Id": 106, - "CommandName": "Add-PnPMasterPage" + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "CommandName": "Add-PnPMasterPage", + "Id": 106 }, { - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 107, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 107 }, { - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "Id": 108, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPMicrosoft365GroupMember", + "Id": 108 }, { - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 109, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 109 }, { - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Rank": 2, - "Id": 110, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Id": 110 }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "Rank": 1, - "Id": 111, - "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": 111 }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Rank": 2, - "Id": 112, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 112 }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Rank": 3, - "Id": 113, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Id": 113 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Rank": 1, - "Id": 114, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "CommandName": "Add-PnPNavigationNode", + "Id": 114 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "Rank": 2, - "Id": 115, - "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": 115 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "Rank": 3, - "Id": 116, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "CommandName": "Add-PnPNavigationNode", + "Id": 116 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "Rank": 4, - "Id": 117, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "CommandName": "Add-PnPNavigationNode", + "Id": 117 }, { - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Rank": 5, - "Id": 118, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "CommandName": "Add-PnPNavigationNode", + "Id": 118 }, { - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Rank": 6, - "Id": 119, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "CommandName": "Add-PnPNavigationNode", + "Id": 119 }, { - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Rank": 7, - "Id": 120, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "CommandName": "Add-PnPNavigationNode", + "Id": 120 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Rank": 8, - "Id": 121, - "CommandName": "Add-PnPNavigationNode" + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "CommandName": "Add-PnPNavigationNode", + "Id": 121 }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Rank": 1, - "Id": 122, - "CommandName": "Add-PnPOrgAssetsLibrary" + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 122 }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", "Rank": 2, - "Id": 123, - "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": 123 }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Rank": 3, - "Id": 124, - "CommandName": "Add-PnPOrgAssetsLibrary" + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "CommandName": "Add-PnPOrgAssetsLibrary", + "Id": 124 }, { - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Rank": 1, - "Id": 125, - "CommandName": "Add-PnPOrgNewsSite" + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "CommandName": "Add-PnPOrgNewsSite", + "Id": 125 }, { - "Command": "Add-PnPPage -Name \"NewPage\"", "Rank": 1, - "Id": 126, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\"", + "CommandName": "Add-PnPPage", + "Id": 126 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Rank": 2, - "Id": 127, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "CommandName": "Add-PnPPage", + "Id": 127 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Rank": 3, - "Id": 128, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "CommandName": "Add-PnPPage", + "Id": 128 }, { - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Rank": 4, - "Id": 129, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "CommandName": "Add-PnPPage", + "Id": 129 }, { - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Rank": 5, - "Id": 130, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "CommandName": "Add-PnPPage", + "Id": 130 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Rank": 6, - "Id": 131, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "CommandName": "Add-PnPPage", + "Id": 131 }, { - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "Id": 132, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "CommandName": "Add-PnPPage", + "Id": 132 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Rank": 8, - "Id": 133, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "CommandName": "Add-PnPPage", + "Id": 133 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "Id": 134, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "CommandName": "Add-PnPPage", + "Id": 134 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "Id": 135, - "CommandName": "Add-PnPPage" + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "CommandName": "Add-PnPPage", + "Id": 135 }, { - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Rank": 1, - "Id": 136, - "CommandName": "Add-PnPPageImageWebPart" + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "CommandName": "Add-PnPPageImageWebPart", + "Id": 136 }, { - "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": 137, - "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": 137 }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Rank": 1, - "Id": 138, - "CommandName": "Add-PnPPageSection" + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "CommandName": "Add-PnPPageSection", + "Id": 138 }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Rank": 2, - "Id": 139, - "CommandName": "Add-PnPPageSection" + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "CommandName": "Add-PnPPageSection", + "Id": 139 }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Rank": 1, - "Id": 140, - "CommandName": "Add-PnPPageTextPart" + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "CommandName": "Add-PnPPageTextPart", + "Id": 140 }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Rank": 2, - "Id": 141, - "CommandName": "Add-PnPPageTextPart" + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", + "CommandName": "Add-PnPPageTextPart", + "Id": 141 }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", "Rank": 3, - "Id": 142, - "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": 142 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Rank": 1, - "Id": 143, - "CommandName": "Add-PnPPageWebPart" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "CommandName": "Add-PnPPageWebPart", + "Id": 143 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Rank": 2, - "Id": 144, - "CommandName": "Add-PnPPageWebPart" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "CommandName": "Add-PnPPageWebPart", + "Id": 144 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Rank": 3, - "Id": 145, - "CommandName": "Add-PnPPageWebPart" + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "CommandName": "Add-PnPPageWebPart", + "Id": 145 }, { - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Rank": 1, - "Id": 146, - "CommandName": "Add-PnPPlannerBucket" + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "CommandName": "Add-PnPPlannerBucket", + "Id": 146 }, { - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Rank": 2, - "Id": 147, - "CommandName": "Add-PnPPlannerBucket" + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "CommandName": "Add-PnPPlannerBucket", + "Id": 147 }, { - "Command": "Add-PnPPlannerRoster", "Rank": 1, - "Id": 148, - "CommandName": "Add-PnPPlannerRoster" + "Command": "Add-PnPPlannerRoster", + "CommandName": "Add-PnPPlannerRoster", + "Id": 148 }, { - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 149, - "CommandName": "Add-PnPPlannerRosterMember" + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPPlannerRosterMember", + "Id": 149 }, { - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 1, - "Id": 150, - "CommandName": "Add-PnPPlannerTask" + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "CommandName": "Add-PnPPlannerTask", + "Id": 150 }, { - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Rank": 2, - "Id": 151, - "CommandName": "Add-PnPPlannerTask" + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "CommandName": "Add-PnPPlannerTask", + "Id": 151 }, { - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Rank": 3, - "Id": 152, - "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": 152 }, { - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "Id": 153, - "CommandName": "Add-PnPPublishingImageRendition" + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "CommandName": "Add-PnPPublishingImageRendition", + "Id": 153 }, { - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Rank": 1, - "Id": 154, - "CommandName": "Add-PnPPublishingPage" + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "CommandName": "Add-PnPPublishingPage", + "Id": 154 }, { - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Rank": 2, - "Id": 155, - "CommandName": "Add-PnPPublishingPage" + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "CommandName": "Add-PnPPublishingPage", + "Id": 155 }, { - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Rank": 1, - "Id": 156, - "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": 156 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Rank": 1, - "Id": 157, - "CommandName": "Add-PnPRoleDefinition" + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "CommandName": "Add-PnPRoleDefinition", + "Id": 157 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Rank": 2, - "Id": 158, - "CommandName": "Add-PnPRoleDefinition" + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "CommandName": "Add-PnPRoleDefinition", + "Id": 158 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Rank": 3, - "Id": 159, - "CommandName": "Add-PnPRoleDefinition" + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "CommandName": "Add-PnPRoleDefinition", + "Id": 159 }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 160, - "CommandName": "Add-PnPSiteCollectionAdmin" + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 160 }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "Id": 161, - "CommandName": "Add-PnPSiteCollectionAdmin" + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 161 }, { - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "Id": 162, - "CommandName": "Add-PnPSiteCollectionAdmin" + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "CommandName": "Add-PnPSiteCollectionAdmin", + "Id": 162 }, { - "Command": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, - "Id": 163, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "Command": "Add-PnPSiteCollectionAppCatalog", + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 163 }, { - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 2, - "Id": 164, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Id": 164 }, { - "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": 165, - "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": 165 }, { - "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": 166, - "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": 166 }, { - "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": 167, - "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": 167 }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Rank": 1, - "Id": 168, - "CommandName": "Add-PnPSiteDesignFromWeb" + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", + "CommandName": "Add-PnPSiteDesignFromWeb", + "Id": 168 }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2, - "Id": 169, - "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": 169 }, { - "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": 170, - "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": 170 }, { - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "Id": 171, - "CommandName": "Add-PnPSiteDesignTask" + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "CommandName": "Add-PnPSiteDesignTask", + "Id": 171 }, { - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 2, - "Id": 172, - "CommandName": "Add-PnPSiteDesignTask" + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "CommandName": "Add-PnPSiteDesignTask", + "Id": 172 }, { - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Rank": 1, - "Id": 173, - "CommandName": "Add-PnPSiteScript" + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "CommandName": "Add-PnPSiteScript", + "Id": 173 }, { - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Rank": 1, - "Id": 174, - "CommandName": "Add-PnPSiteScriptPackage" + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "CommandName": "Add-PnPSiteScriptPackage", + "Id": 174 }, { - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Rank": 1, - "Id": 175, - "CommandName": "Add-PnPSiteTemplate" + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "CommandName": "Add-PnPSiteTemplate", + "Id": 175 }, { - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Rank": 1, - "Id": 176, - "CommandName": "Add-PnPStoredCredential" + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", + "CommandName": "Add-PnPStoredCredential", + "Id": 176 }, { - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Rank": 2, - "Id": 177, - "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": 177 }, { - "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": 178, - "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": 178 }, { - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Rank": 1, - "Id": 179, - "CommandName": "Add-PnPTaxonomyField" + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "CommandName": "Add-PnPTaxonomyField", + "Id": 179 }, { - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Rank": 2, - "Id": 180, - "CommandName": "Add-PnPTaxonomyField" + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "CommandName": "Add-PnPTaxonomyField", + "Id": 180 }, { - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Rank": 1, - "Id": 181, - "CommandName": "Add-PnPTeamsChannel" + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "CommandName": "Add-PnPTeamsChannel", + "Id": 181 }, { - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Rank": 2, - "Id": 182, - "CommandName": "Add-PnPTeamsChannel" + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "CommandName": "Add-PnPTeamsChannel", + "Id": 182 }, { - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "Rank": 3, - "Id": 183, - "CommandName": "Add-PnPTeamsChannel" + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "CommandName": "Add-PnPTeamsChannel", + "Id": 183 }, { - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Rank": 4, - "Id": 184, - "CommandName": "Add-PnPTeamsChannel" + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", + "CommandName": "Add-PnPTeamsChannel", + "Id": 184 }, { - "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", "Rank": 1, - "Id": 185, - "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": 185 }, { - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Rank": 2, - "Id": 186, - "CommandName": "Add-PnpTeamsChannelUser" + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", + "CommandName": "Add-PnpTeamsChannelUser", + "Id": 186 }, { - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", "Rank": 1, - "Id": 187, - "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": 187 }, { - "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": 188, - "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": 188 }, { - "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": 189, - "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": 189 }, { - "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": 190, - "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": 190 }, { - "Command": "Add-PnPTeamsTeam", "Rank": 1, - "Id": 191, - "CommandName": "Add-PnPTeamsTeam" + "Command": "Add-PnPTeamsTeam", + "CommandName": "Add-PnPTeamsTeam", + "Id": 191 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "Id": 192, - "CommandName": "Add-PnPTeamsUser" + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Add-PnPTeamsUser", + "Id": 192 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "Id": 193, - "CommandName": "Add-PnPTeamsUser" + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "CommandName": "Add-PnPTeamsUser", + "Id": 193 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Rank": 3, - "Id": 194, - "CommandName": "Add-PnPTeamsUser" + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "CommandName": "Add-PnPTeamsUser", + "Id": 194 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Rank": 4, - "Id": 195, - "CommandName": "Add-PnPTeamsUser" + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "CommandName": "Add-PnPTeamsUser", + "Id": 195 }, { - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "Id": 196, - "CommandName": "Add-PnPTenantCdnOrigin" + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "CommandName": "Add-PnPTenantCdnOrigin", + "Id": 196 }, { - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Rank": 1, - "Id": 197, - "CommandName": "Add-PnPTenantSequence" + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "CommandName": "Add-PnPTenantSequence", + "Id": 197 }, { - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Rank": 1, - "Id": 198, - "CommandName": "Add-PnPTenantSequenceSite" + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "CommandName": "Add-PnPTenantSequenceSite", + "Id": 198 }, { - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Rank": 1, - "Id": 199, - "CommandName": "Add-PnPTenantSequenceSubSite" + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "CommandName": "Add-PnPTenantSequenceSubSite", + "Id": 199 }, { - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Rank": 1, - "Id": 200, - "CommandName": "Add-PnPTermToTerm" + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "CommandName": "Add-PnPTermToTerm", + "Id": 200 }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Rank": 1, - "Id": 201, - "CommandName": "Add-PnPView" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", + "CommandName": "Add-PnPView", + "Id": 201 }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "Rank": 2, - "Id": 202, - "CommandName": "Add-PnPView" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", + "CommandName": "Add-PnPView", + "Id": 202 }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Rank": 3, - "Id": 203, - "CommandName": "Add-PnPView" + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "CommandName": "Add-PnPView", + "Id": 203 }, { - "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": 204, - "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": 204 }, { - "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": 205, - "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": 205 }, { - "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": 206, - "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": 206 }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "Id": 207, - "CommandName": "Add-PnPWebhookSubscription" + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", + "CommandName": "Add-PnPWebhookSubscription", + "Id": 207 }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Rank": 2, - "Id": 208, - "CommandName": "Add-PnPWebhookSubscription" + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "CommandName": "Add-PnPWebhookSubscription", + "Id": 208 }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "Rank": 3, - "Id": 209, - "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": 209 }, { - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "Rank": 1, - "Id": 210, - "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": 210 }, { - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Rank": 2, - "Id": 211, - "CommandName": "Add-PnPWebPartToWebPartPage" + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "CommandName": "Add-PnPWebPartToWebPartPage", + "Id": 211 }, { - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "Rank": 1, - "Id": 212, - "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": 212 }, { - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Rank": 2, - "Id": 213, - "CommandName": "Add-PnPWebPartToWikiPage" + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "CommandName": "Add-PnPWebPartToWikiPage", + "Id": 213 }, { - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Rank": 1, - "Id": 214, - "CommandName": "Add-PnPWikiPage" + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "CommandName": "Add-PnPWikiPage", + "Id": 214 }, { - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Rank": 1, - "Id": 215, - "CommandName": "Clear-PnPAzureADGroupMember" + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "CommandName": "Clear-PnPAzureADGroupMember", + "Id": 215 }, { - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Rank": 1, - "Id": 216, - "CommandName": "Clear-PnPAzureADGroupOwner" + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "CommandName": "Clear-PnPAzureADGroupOwner", + "Id": 216 }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Rank": 1, - "Id": 217, - "CommandName": "Clear-PnPDefaultColumnValues" + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 217 }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Rank": 2, - "Id": 218, - "CommandName": "Clear-PnPDefaultColumnValues" + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "CommandName": "Clear-PnPDefaultColumnValues", + "Id": 218 }, { - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "Id": 219, - "CommandName": "Clear-PnPListItemAsRecord" + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "CommandName": "Clear-PnPListItemAsRecord", + "Id": 219 }, { - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Rank": 1, - "Id": 220, - "CommandName": "Clear-PnPMicrosoft365GroupMember" + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Id": 220 }, { - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Rank": 1, - "Id": 221, - "CommandName": "Clear-PnPMicrosoft365GroupOwner" + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Id": 221 }, { - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "Id": 222, - "CommandName": "Clear-PnpRecycleBinItem" + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 222 }, { - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Rank": 2, - "Id": 223, - "CommandName": "Clear-PnpRecycleBinItem" + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 223 }, { - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Rank": 3, - "Id": 224, - "CommandName": "Clear-PnpRecycleBinItem" + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "CommandName": "Clear-PnpRecycleBinItem", + "Id": 224 }, { - "Command": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, - "Id": 225, - "CommandName": "Clear-PnPTenantAppCatalogUrl" + "Command": "Clear-PnPTenantAppCatalogUrl", + "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Id": 225 }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 226, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 226 }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "Id": 227, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "CommandName": "Clear-PnPTenantRecycleBinItem", + "Id": 227 }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Rank": 1, - "Id": 228, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 228 }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Rank": 2, - "Id": 229, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "CommandName": "Convert-PnPFolderToSiteTemplate", + "Id": 229 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml", "Rank": 1, - "Id": 230, - "CommandName": "Convert-PnPSiteTemplate" + "Command": "Convert-PnPSiteTemplate -Path template.xml", + "CommandName": "Convert-PnPSiteTemplate", + "Id": 230 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Rank": 2, - "Id": 231, - "CommandName": "Convert-PnPSiteTemplate" + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "CommandName": "Convert-PnPSiteTemplate", + "Id": 231 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Rank": 3, - "Id": 232, - "CommandName": "Convert-PnPSiteTemplate" + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "CommandName": "Convert-PnPSiteTemplate", + "Id": 232 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Rank": 1, - "Id": 233, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 233 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Rank": 2, - "Id": 234, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Id": 234 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Rank": 1, - "Id": 235, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "CommandName": "ConvertTo-PnPPage", + "Id": 235 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Rank": 2, - "Id": 236, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "CommandName": "ConvertTo-PnPPage", + "Id": 236 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Rank": 3, - "Id": 237, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "CommandName": "ConvertTo-PnPPage", + "Id": 237 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Rank": 4, - "Id": 238, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "CommandName": "ConvertTo-PnPPage", + "Id": 238 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 5, - "Id": 239, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", + "Id": 239 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Rank": 6, - "Id": 240, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "CommandName": "ConvertTo-PnPPage", + "Id": 240 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Rank": 7, - "Id": 241, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "CommandName": "ConvertTo-PnPPage", + "Id": 241 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Rank": 8, - "Id": 242, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "CommandName": "ConvertTo-PnPPage", + "Id": 242 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 9, - "Id": 243, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "CommandName": "ConvertTo-PnPPage", + "Id": 243 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Rank": 10, - "Id": 244, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "CommandName": "ConvertTo-PnPPage", + "Id": 244 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Rank": 11, - "Id": 245, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "CommandName": "ConvertTo-PnPPage", + "Id": 245 }, { - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 12, - "Id": 246, - "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": 246 }, { - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Rank": 13, - "Id": 247, - "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": 247 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Rank": 14, - "Id": 248, - "CommandName": "ConvertTo-PnPPage" + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "CommandName": "ConvertTo-PnPPage", + "Id": 248 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "Id": 249, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", + "Id": 249 }, { - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "Id": 250, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "CommandName": "Copy-PnPFile", + "Id": 250 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "Id": 251, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "CommandName": "Copy-PnPFile", + "Id": 251 }, { - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "Id": 252, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", + "Id": 252 }, { - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "Id": 253, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "CommandName": "Copy-PnPFile", + "Id": 253 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "Id": 254, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "CommandName": "Copy-PnPFile", + "Id": 254 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "Id": 255, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "CommandName": "Copy-PnPFile", + "Id": 255 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "Id": 256, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", + "Id": 256 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "Id": 257, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "CommandName": "Copy-PnPFile", + "Id": 257 }, { - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "Id": 258, - "CommandName": "Copy-PnPFile" + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "CommandName": "Copy-PnPFile", + "Id": 258 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 1, - "Id": 259, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", + "Id": 259 }, { - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Rank": 2, - "Id": 260, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "CommandName": "Copy-PnPFolder", + "Id": 260 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Rank": 3, - "Id": 261, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "CommandName": "Copy-PnPFolder", + "Id": 261 }, { - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 4, - "Id": 262, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", + "Id": 262 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Rank": 5, - "Id": 263, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "CommandName": "Copy-PnPFolder", + "Id": 263 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Rank": 6, - "Id": 264, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "CommandName": "Copy-PnPFolder", + "Id": 264 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Rank": 7, - "Id": 265, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "CommandName": "Copy-PnPFolder", + "Id": 265 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Rank": 8, - "Id": 266, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", + "Id": 266 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Rank": 9, - "Id": 267, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "CommandName": "Copy-PnPFolder", + "Id": 267 }, { - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Rank": 10, - "Id": 268, - "CommandName": "Copy-PnPFolder" + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "CommandName": "Copy-PnPFolder", + "Id": 268 }, { - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Rank": 1, - "Id": 269, - "CommandName": "Copy-PnPItemProxy" + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "CommandName": "Copy-PnPItemProxy", + "Id": 269 }, { - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Rank": 1, - "Id": 270, - "CommandName": "Copy-PnPList" + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "CommandName": "Copy-PnPList", + "Id": 270 }, { - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Rank": 2, - "Id": 271, - "CommandName": "Copy-PnPList" + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", + "CommandName": "Copy-PnPList", + "Id": 271 }, { - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Rank": 3, - "Id": 272, - "CommandName": "Copy-PnPList" + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "CommandName": "Copy-PnPList", + "Id": 272 }, { - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "Rank": 4, - "Id": 273, - "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": 273 }, { - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Rank": 1, - "Id": 274, - "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": 274 }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Rank": 2, - "Id": 275, - "CommandName": "Copy-PnPTeamsTeam" + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "CommandName": "Copy-PnPTeamsTeam", + "Id": 275 }, { - "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": 276, - "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": 276 }, { - "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": 277, - "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": 277 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 278, - "CommandName": "Disable-PnPFeature" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Disable-PnPFeature", + "Id": 278 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "Id": 279, - "CommandName": "Disable-PnPFeature" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "CommandName": "Disable-PnPFeature", + "Id": 279 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "Id": 280, - "CommandName": "Disable-PnPFeature" + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "CommandName": "Disable-PnPFeature", + "Id": 280 }, { - "Command": "Disable-PnPPageScheduling", "Rank": 1, - "Id": 281, - "CommandName": "Disable-PnPPageScheduling" + "Command": "Disable-PnPPageScheduling", + "CommandName": "Disable-PnPPageScheduling", + "Id": 281 }, { - "Command": "Disable-PnPPowerShellTelemetry", "Rank": 1, - "Id": 282, - "CommandName": "Disable-PnPPowerShellTelemetry" + "Command": "Disable-PnPPowerShellTelemetry", + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 282 }, { - "Command": "Disable-PnPPowerShellTelemetry -Force", "Rank": 2, - "Id": 283, - "CommandName": "Disable-PnPPowerShellTelemetry" + "Command": "Disable-PnPPowerShellTelemetry -Force", + "CommandName": "Disable-PnPPowerShellTelemetry", + "Id": 283 }, { - "Command": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Id": 284, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite" + "Command": "Disable-PnPSharingForNonOwnersOfSite", + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 284 }, { - "Command": "Disable-PnPSiteClassification", "Rank": 1, - "Id": 285, - "CommandName": "Disable-PnPSiteClassification" + "Command": "Disable-PnPSiteClassification", + "CommandName": "Disable-PnPSiteClassification", + "Id": 285 }, { - "Command": "Disconnect-PnPOnline", "Rank": 1, - "Id": 286, - "CommandName": "Disconnect-PnPOnline" + "Command": "Disconnect-PnPOnline", + "CommandName": "Disconnect-PnPOnline", + "Id": 286 }, { - "Command": "Enable-PnPCommSite", "Rank": 1, - "Id": 287, - "CommandName": "Enable-PnPCommSite" + "Command": "Enable-PnPCommSite", + "CommandName": "Enable-PnPCommSite", + "Id": 287 }, { - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Rank": 2, - "Id": 288, - "CommandName": "Enable-PnPCommSite" + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "CommandName": "Enable-PnPCommSite", + "Id": 288 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 289, - "CommandName": "Enable-PnPFeature" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Enable-PnPFeature", + "Id": 289 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Rank": 2, - "Id": 290, - "CommandName": "Enable-PnPFeature" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "CommandName": "Enable-PnPFeature", + "Id": 290 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Rank": 3, - "Id": 291, - "CommandName": "Enable-PnPFeature" + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "CommandName": "Enable-PnPFeature", + "Id": 291 }, { - "Command": "Enable-PnPPageScheduling", "Rank": 1, - "Id": 292, - "CommandName": "Enable-PnPPageScheduling" + "Command": "Enable-PnPPageScheduling", + "CommandName": "Enable-PnPPageScheduling", + "Id": 292 }, { - "Command": "Enable-PnPPowerShellTelemetry", "Rank": 1, - "Id": 293, - "CommandName": "Enable-PnPPowerShellTelemetry" + "Command": "Enable-PnPPowerShellTelemetry", + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 293 }, { - "Command": "Enable-PnPPowerShellTelemetry -Force", "Rank": 2, - "Id": 294, - "CommandName": "Enable-PnPPowerShellTelemetry" + "Command": "Enable-PnPPowerShellTelemetry -Force", + "CommandName": "Enable-PnPPowerShellTelemetry", + "Id": 294 }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Rank": 1, - "Id": 295, - "CommandName": "Enable-PnPSiteClassification" + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "CommandName": "Enable-PnPSiteClassification", + "Id": 295 }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 2, - "Id": 296, - "CommandName": "Enable-PnPSiteClassification" + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "CommandName": "Enable-PnPSiteClassification", + "Id": 296 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Rank": 1, - "Id": 297, - "CommandName": "Export-PnPListToSiteTemplate" + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 297 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Rank": 2, - "Id": 298, - "CommandName": "Export-PnPListToSiteTemplate" + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "CommandName": "Export-PnPListToSiteTemplate", + "Id": 298 }, { - "Command": "Export-PnPPage -Identity Home.aspx", "Rank": 1, - "Id": 299, - "CommandName": "Export-PnPPage" + "Command": "Export-PnPPage -Identity Home.aspx", + "CommandName": "Export-PnPPage", + "Id": 299 }, { - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Rank": 1, - "Id": 300, - "CommandName": "Export-PnPPageMapping" + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping", + "Id": 300 }, { - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Rank": 2, - "Id": 301, - "CommandName": "Export-PnPPageMapping" + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping", + "Id": 301 }, { - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Rank": 3, - "Id": 302, - "CommandName": "Export-PnPPageMapping" + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "CommandName": "Export-PnPPageMapping", + "Id": 302 }, { - "Command": "Export-PnPTaxonomy", "Rank": 1, - "Id": 303, - "CommandName": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy", + "CommandName": "Export-PnPTaxonomy", + "Id": 303 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Rank": 2, - "Id": 304, - "CommandName": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "CommandName": "Export-PnPTaxonomy", + "Id": 304 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Rank": 3, - "Id": 305, - "CommandName": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", + "CommandName": "Export-PnPTaxonomy", + "Id": 305 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Rank": 4, - "Id": 306, - "CommandName": "Export-PnPTaxonomy" + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "CommandName": "Export-PnPTaxonomy", + "Id": 306 }, { - "Command": "Export-PnPTermGroupToXml", "Rank": 1, - "Id": 307, - "CommandName": "Export-PnPTermGroupToXml" + "Command": "Export-PnPTermGroupToXml", + "CommandName": "Export-PnPTermGroupToXml", + "Id": 307 }, { - "Command": "Export-PnPTermGroupToXml -Out output.xml", "Rank": 2, - "Id": 308, - "CommandName": "Export-PnPTermGroupToXml" + "Command": "Export-PnPTermGroupToXml -Out output.xml", + "CommandName": "Export-PnPTermGroupToXml", + "Id": 308 }, { - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Rank": 3, - "Id": 309, - "CommandName": "Export-PnPTermGroupToXml" + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "CommandName": "Export-PnPTermGroupToXml", + "Id": 309 }, { - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "Id": 310, - "CommandName": "Export-PnPUserInfo" + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "CommandName": "Export-PnPUserInfo", + "Id": 310 }, { - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, - "Id": 311, - "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": 311 }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "Id": 312, - "CommandName": "Export-PnPUserProfile" + "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "CommandName": "Export-PnPUserProfile", + "Id": 312 }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Rank": 2, - "Id": 313, - "CommandName": "Export-PnPUserProfile" + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "CommandName": "Export-PnPUserProfile", + "Id": 313 }, { - "Command": "Find-PnPFile -Match *.master", "Rank": 1, - "Id": 314, - "CommandName": "Find-PnPFile" + "Command": "Find-PnPFile -Match *.master", + "CommandName": "Find-PnPFile", + "Id": 314 }, { - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Rank": 2, - "Id": 315, - "CommandName": "Find-PnPFile" + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "CommandName": "Find-PnPFile", + "Id": 315 }, { - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Rank": 3, - "Id": 316, - "CommandName": "Find-PnPFile" + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "CommandName": "Find-PnPFile", + "Id": 316 }, { - "Command": "Get-PnPAccessToken", "Rank": 1, - "Id": 317, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken", + "CommandName": "Get-PnPAccessToken", + "Id": 317 }, { - "Command": "Get-PnPAccessToken -Decoded", "Rank": 2, - "Id": 318, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken -Decoded", + "CommandName": "Get-PnPAccessToken", + "Id": 318 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Rank": 3, - "Id": 319, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "CommandName": "Get-PnPAccessToken", + "Id": 319 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Rank": 4, - "Id": 320, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "CommandName": "Get-PnPAccessToken", + "Id": 320 }, { - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Rank": 5, - "Id": 321, - "CommandName": "Get-PnPAccessToken" + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "CommandName": "Get-PnPAccessToken", + "Id": 321 }, { - "Command": "Get-PnPAlert", "Rank": 1, - "Id": 322, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert", + "CommandName": "Get-PnPAlert", + "Id": 322 }, { - "Command": "Get-PnPAlert -List \"Demo List\"", "Rank": 2, - "Id": 323, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -List \"Demo List\"", + "CommandName": "Get-PnPAlert", + "Id": 323 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 3, - "Id": 324, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPAlert", + "Id": 324 }, { - "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Rank": 4, - "Id": 325, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "CommandName": "Get-PnPAlert", + "Id": 325 }, { - "Command": "Get-PnPAlert -AllUsers", "Rank": 5, - "Id": 326, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -AllUsers", + "CommandName": "Get-PnPAlert", + "Id": 326 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Rank": 6, - "Id": 327, - "CommandName": "Get-PnPAlert" + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "CommandName": "Get-PnPAlert", + "Id": 327 }, { - "Command": "Get-PnPApp", "Rank": 1, - "Id": 328, - "CommandName": "Get-PnPApp" + "Command": "Get-PnPApp", + "CommandName": "Get-PnPApp", + "Id": 328 }, { - "Command": "Get-PnPApp -Scope Site", "Rank": 2, - "Id": 329, - "CommandName": "Get-PnPApp" + "Command": "Get-PnPApp -Scope Site", + "CommandName": "Get-PnPApp", + "Id": 329 }, { - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 3, - "Id": 330, - "CommandName": "Get-PnPApp" + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Get-PnPApp", + "Id": 330 }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Rank": 1, - "Id": 331, - "CommandName": "Get-PnPAppErrors" + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "CommandName": "Get-PnPAppErrors", + "Id": 331 }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Rank": 2, - "Id": 332, - "CommandName": "Get-PnPAppErrors" + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "CommandName": "Get-PnPAppErrors", + "Id": 332 }, { - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Rank": 1, - "Id": 333, - "CommandName": "Get-PnPAppInfo" + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "CommandName": "Get-PnPAppInfo", + "Id": 333 }, { - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 2, - "Id": 334, - "CommandName": "Get-PnPAppInfo" + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Get-PnPAppInfo", + "Id": 334 }, { - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Rank": 3, - "Id": 335, - "CommandName": "Get-PnPAppInfo" + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "CommandName": "Get-PnPAppInfo", + "Id": 335 }, { - "Command": "Get-PnPApplicationCustomizer", "Rank": 1, - "Id": 336, - "CommandName": "Get-PnPApplicationCustomizer" + "Command": "Get-PnPApplicationCustomizer", + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 336 }, { - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "Id": 337, - "CommandName": "Get-PnPApplicationCustomizer" + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 337 }, { - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Rank": 3, - "Id": 338, - "CommandName": "Get-PnPApplicationCustomizer" + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "CommandName": "Get-PnPApplicationCustomizer", + "Id": 338 }, { - "Command": "Get-PnPAuditing", "Rank": 1, - "Id": 339, - "CommandName": "Get-PnPAuditing" + "Command": "Get-PnPAuditing", + "CommandName": "Get-PnPAuditing", + "Id": 339 }, { - "Command": "Get-PnPAuthenticationRealm", "Rank": 1, - "Id": 340, - "CommandName": "Get-PnPAuthenticationRealm" + "Command": "Get-PnPAuthenticationRealm", + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 340 }, { - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Rank": 2, - "Id": 341, - "CommandName": "Get-PnPAuthenticationRealm" + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "CommandName": "Get-PnPAuthenticationRealm", + "Id": 341 }, { - "Command": "Get-PnPAvailableLanguage", "Rank": 1, - "Id": 342, - "CommandName": "Get-PnPAvailableLanguage" + "Command": "Get-PnPAvailableLanguage", + "CommandName": "Get-PnPAvailableLanguage", + "Id": 342 }, { - "Command": "Get-PnPAvailableSensitivityLabel", "Rank": 1, - "Id": 343, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Command": "Get-PnPAvailableSensitivityLabel", + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 343 }, { - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Rank": 2, - "Id": 344, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 344 }, { - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Rank": 3, - "Id": 345, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "CommandName": "Get-PnPAvailableSensitivityLabel", + "Id": 345 }, { - "Command": "Get-PnPAvailableSiteClassification", "Rank": 1, - "Id": 346, - "CommandName": "Get-PnPAvailableSiteClassification" + "Command": "Get-PnPAvailableSiteClassification", + "CommandName": "Get-PnPAvailableSiteClassification", + "Id": 346 }, { - "Command": "Get-PnPAzureACSPrincipal", "Rank": 1, - "Id": 347, - "CommandName": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal", + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 347 }, { - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Rank": 2, - "Id": 348, - "CommandName": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 348 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Rank": 3, - "Id": 349, - "CommandName": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 349 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Rank": 4, - "Id": 350, - "CommandName": "Get-PnPAzureACSPrincipal" + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "CommandName": "Get-PnPAzureACSPrincipal", + "Id": 350 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, - "Id": 351, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 351 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Rank": 2, - "Id": 352, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 352 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Rank": 3, - "Id": 353, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 353 }, { - "Command": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, - "Id": 354, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Command": "Get-PnPAzureADActivityReportSignIn", + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 354 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Rank": 2, - "Id": 355, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 355 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Rank": 3, - "Id": 356, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Id": 356 }, { - "Command": "Get-PnPAzureADApp", "Rank": 1, - "Id": 357, - "CommandName": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp", + "CommandName": "Get-PnPAzureADApp", + "Id": 357 }, { - "Command": "Get-PnPAzureADApp -Identity MyApp", "Rank": 2, - "Id": 358, - "CommandName": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp -Identity MyApp", + "CommandName": "Get-PnPAzureADApp", + "Id": 358 }, { - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "Id": 359, - "CommandName": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Get-PnPAzureADApp", + "Id": 359 }, { - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Rank": 4, - "Id": 360, - "CommandName": "Get-PnPAzureADApp" + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPAzureADApp", + "Id": 360 }, { - "Command": "Get-PnPAzureADAppPermission", "Rank": 1, - "Id": 361, - "CommandName": "Get-PnPAzureADAppPermission" + "Command": "Get-PnPAzureADAppPermission", + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 361 }, { - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Rank": 2, - "Id": 362, - "CommandName": "Get-PnPAzureADAppPermission" + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 362 }, { - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 3, - "Id": 363, - "CommandName": "Get-PnPAzureADAppPermission" + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Get-PnPAzureADAppPermission", + "Id": 363 }, { - "Command": "Get-PnPAzureADAppSitePermission", "Rank": 1, - "Id": 364, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission", + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 364 }, { - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "Id": 365, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 365 }, { - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Rank": 3, - "Id": 366, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 366 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Rank": 4, - "Id": 367, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 367 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Rank": 5, - "Id": 368, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "CommandName": "Get-PnPAzureADAppSitePermission", + "Id": 368 }, { - "Command": "Get-PnPAzureADGroup", "Rank": 1, - "Id": 369, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup", + "CommandName": "Get-PnPAzureADGroup", + "Id": 369 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupId", "Rank": 2, - "Id": 370, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup -Identity $groupId", + "CommandName": "Get-PnPAzureADGroup", + "Id": 370 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Rank": 3, - "Id": 371, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "CommandName": "Get-PnPAzureADGroup", + "Id": 371 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Rank": 4, - "Id": 372, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "CommandName": "Get-PnPAzureADGroup", + "Id": 372 }, { - "Command": "Get-PnPAzureADGroup -Identity $group", "Rank": 5, - "Id": 373, - "CommandName": "Get-PnPAzureADGroup" + "Command": "Get-PnPAzureADGroup -Identity $group", + "CommandName": "Get-PnPAzureADGroup", + "Id": 373 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Rank": 1, - "Id": 374, - "CommandName": "Get-PnPAzureADGroupMember" + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 374 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $group", "Rank": 2, - "Id": 375, - "CommandName": "Get-PnPAzureADGroupMember" + "Command": "Get-PnPAzureADGroupMember -Identity $group", + "CommandName": "Get-PnPAzureADGroupMember", + "Id": 375 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Rank": 1, - "Id": 376, - "CommandName": "Get-PnPAzureADGroupOwner" + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 376 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Rank": 2, - "Id": 377, - "CommandName": "Get-PnPAzureADGroupOwner" + "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "CommandName": "Get-PnPAzureADGroupOwner", + "Id": 377 }, { - "Command": "Get-PnPAzureADServicePrincipal", "Rank": 1, - "Id": 378, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal", + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 378 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Rank": 2, - "Id": 379, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 379 }, { - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Rank": 3, - "Id": 380, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 380 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Rank": 4, - "Id": 381, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 381 }, { - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "Id": 382, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPAzureADServicePrincipal", + "Id": 382 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "Id": 383, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 383 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 2, - "Id": 384, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 384 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 1, - "Id": 385, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 385 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Rank": 2, - "Id": 386, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Id": 386 }, { - "Command": "Get-PnPAzureADUser", "Rank": 1, - "Id": 387, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser", + "CommandName": "Get-PnPAzureADUser", + "Id": 387 }, { - "Command": "Get-PnPAzureADUser -EndIndex 50", "Rank": 2, - "Id": 388, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -EndIndex 50", + "CommandName": "Get-PnPAzureADUser", + "Id": 388 }, { - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 3, - "Id": 389, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "CommandName": "Get-PnPAzureADUser", + "Id": 389 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Rank": 4, - "Id": 390, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "CommandName": "Get-PnPAzureADUser", + "Id": 390 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Rank": 5, - "Id": 391, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "CommandName": "Get-PnPAzureADUser", + "Id": 391 }, { - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Rank": 6, - "Id": 392, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "CommandName": "Get-PnPAzureADUser", + "Id": 392 }, { - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Rank": 7, - "Id": 393, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "CommandName": "Get-PnPAzureADUser", + "Id": 393 }, { - "Command": "Get-PnPAzureADUser -Delta", "Rank": 8, - "Id": 394, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Delta", + "CommandName": "Get-PnPAzureADUser", + "Id": 394 }, { - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Rank": 9, - "Id": 395, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "CommandName": "Get-PnPAzureADUser", + "Id": 395 }, { - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Rank": 10, - "Id": 396, - "CommandName": "Get-PnPAzureADUser" + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "CommandName": "Get-PnPAzureADUser", + "Id": 396 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Rank": 1, - "Id": 397, - "CommandName": "Get-PnPAzureCertificate" + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "CommandName": "Get-PnPAzureCertificate", + "Id": 397 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Rank": 2, - "Id": 398, - "CommandName": "Get-PnPAzureCertificate" + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "CommandName": "Get-PnPAzureCertificate", + "Id": 398 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Rank": 3, - "Id": 399, - "CommandName": "Get-PnPAzureCertificate" + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "CommandName": "Get-PnPAzureCertificate", + "Id": 399 }, { - "Command": "Get-PnPBrowserIdleSignout", "Rank": 1, - "Id": 400, - "CommandName": "Get-PnPBrowserIdleSignout" + "Command": "Get-PnPBrowserIdleSignout", + "CommandName": "Get-PnPBrowserIdleSignout", + "Id": 400 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Rank": 1, - "Id": 401, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 401 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, - "Id": 402, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "Command": "Get-PnPBuiltInDesignPackageVisibility", + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 402 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, - "Id": 403, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 403 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Rank": 2, - "Id": 404, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 404 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Rank": 3, - "Id": 405, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 405 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "Id": 406, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 406 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Rank": 5, - "Id": 407, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 407 }, { - "Command": "Get-PnPChangeLog", "Rank": 1, - "Id": 408, - "CommandName": "Get-PnPChangeLog" + "Command": "Get-PnPChangeLog", + "CommandName": "Get-PnPChangeLog", + "Id": 408 }, { - "Command": "Get-PnPChangeLog -Nightly", "Rank": 2, - "Id": 409, - "CommandName": "Get-PnPChangeLog" + "Command": "Get-PnPChangeLog -Nightly", + "CommandName": "Get-PnPChangeLog", + "Id": 409 }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Rank": 1, - "Id": 410, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 410 }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Rank": 2, - "Id": 411, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "CommandName": "Get-PnPCompatibleHubContentTypes", + "Id": 411 }, { - "Command": "Get-PnPContentType", "Rank": 1, - "Id": 412, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType", + "CommandName": "Get-PnPContentType", + "Id": 412 }, { - "Command": "Get-PnPContentType -InSiteHierarchy", "Rank": 2, - "Id": 413, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType -InSiteHierarchy", + "CommandName": "Get-PnPContentType", + "Id": 413 }, { - "Command": "Get-PnPContentType -Identity \"Project Document\"", "Rank": 3, - "Id": 414, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType -Identity \"Project Document\"", + "CommandName": "Get-PnPContentType", + "Id": 414 }, { - "Command": "Get-PnPContentType -List \"Documents\"", "Rank": 4, - "Id": 415, - "CommandName": "Get-PnPContentType" + "Command": "Get-PnPContentType -List \"Documents\"", + "CommandName": "Get-PnPContentType", + "Id": 415 }, { - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Rank": 1, - "Id": 416, - "CommandName": "Get-PnPContentTypePublishingStatus" + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "CommandName": "Get-PnPContentTypePublishingStatus", + "Id": 416 }, { - "Command": "Get-PnPCustomAction", "Rank": 1, - "Id": 417, - "CommandName": "Get-PnPCustomAction" + "Command": "Get-PnPCustomAction", + "CommandName": "Get-PnPCustomAction", + "Id": 417 }, { - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 2, - "Id": 418, - "CommandName": "Get-PnPCustomAction" + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Get-PnPCustomAction", + "Id": 418 }, { - "Command": "Get-PnPCustomAction -Scope web", "Rank": 3, - "Id": 419, - "CommandName": "Get-PnPCustomAction" + "Command": "Get-PnPCustomAction -Scope web", + "CommandName": "Get-PnPCustomAction", + "Id": 419 }, { - "Command": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, - "Id": 420, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "Command": "Get-PnPDeletedMicrosoft365Group", + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 420 }, { - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 2, - "Id": 421, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Id": 421 }, { - "Command": "Get-PnPDeletedTeam", "Rank": 1, - "Id": 422, - "CommandName": "Get-PnPDeletedTeam" + "Command": "Get-PnPDeletedTeam", + "CommandName": "Get-PnPDeletedTeam", + "Id": 422 }, { - "Command": "Get-PnPDiagnostics", "Rank": 1, - "Id": 423, - "CommandName": "Get-PnPDiagnostics" + "Command": "Get-PnPDiagnostics", + "CommandName": "Get-PnPDiagnostics", + "Id": 423 }, { - "Command": "Get-PnPDisableSpacesActivation", "Rank": 1, - "Id": 424, - "CommandName": "Get-PnPDisableSpacesActivation" + "Command": "Get-PnPDisableSpacesActivation", + "CommandName": "Get-PnPDisableSpacesActivation", + "Id": 424 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Rank": 1, - "Id": 425, - "CommandName": "Get-PnPDocumentSetTemplate" + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 425 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Rank": 2, - "Id": 426, - "CommandName": "Get-PnPDocumentSetTemplate" + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "CommandName": "Get-PnPDocumentSetTemplate", + "Id": 426 }, { - "Command": "Get-PnPEventReceiver", "Rank": 1, - "Id": 427, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver", + "CommandName": "Get-PnPEventReceiver", + "Id": 427 }, { - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "Id": 428, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPEventReceiver", + "Id": 428 }, { - "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Rank": 3, - "Id": 429, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "CommandName": "Get-PnPEventReceiver", + "Id": 429 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Rank": 4, - "Id": 430, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "CommandName": "Get-PnPEventReceiver", + "Id": 430 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 5, - "Id": 431, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPEventReceiver", + "Id": 431 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Rank": 6, - "Id": 432, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "CommandName": "Get-PnPEventReceiver", + "Id": 432 }, { - "Command": "Get-PnPEventReceiver -Scope Site", "Rank": 7, - "Id": 433, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Scope Site", + "CommandName": "Get-PnPEventReceiver", + "Id": 433 }, { - "Command": "Get-PnPEventReceiver -Scope Web", "Rank": 8, - "Id": 434, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Scope Web", + "CommandName": "Get-PnPEventReceiver", + "Id": 434 }, { - "Command": "Get-PnPEventReceiver -Scope All", "Rank": 9, - "Id": 435, - "CommandName": "Get-PnPEventReceiver" + "Command": "Get-PnPEventReceiver -Scope All", + "CommandName": "Get-PnPEventReceiver", + "Id": 435 }, { - "Command": "Get-PnPException", "Rank": 1, - "Id": 436, - "CommandName": "Get-PnPException" + "Command": "Get-PnPException", + "CommandName": "Get-PnPException", + "Id": 436 }, { - "Command": "Get-PnPException -All", "Rank": 2, - "Id": 437, - "CommandName": "Get-PnPException" + "Command": "Get-PnPException -All", + "CommandName": "Get-PnPException", + "Id": 437 }, { - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Rank": 1, - "Id": 438, - "CommandName": "Get-PnPExternalUser" + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "CommandName": "Get-PnPExternalUser", + "Id": 438 }, { - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Rank": 2, - "Id": 439, - "CommandName": "Get-PnPExternalUser" + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "CommandName": "Get-PnPExternalUser", + "Id": 439 }, { - "Command": "Get-PnPFeature", "Rank": 1, - "Id": 440, - "CommandName": "Get-PnPFeature" + "Command": "Get-PnPFeature", + "CommandName": "Get-PnPFeature", + "Id": 440 }, { - "Command": "Get-PnPFeature -Scope Site", "Rank": 2, - "Id": 441, - "CommandName": "Get-PnPFeature" + "Command": "Get-PnPFeature -Scope Site", + "CommandName": "Get-PnPFeature", + "Id": 441 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 3, - "Id": 442, - "CommandName": "Get-PnPFeature" + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Get-PnPFeature", + "Id": 442 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Rank": 4, - "Id": 443, - "CommandName": "Get-PnPFeature" + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "CommandName": "Get-PnPFeature", + "Id": 443 }, { - "Command": "Get-PnPField", "Rank": 1, - "Id": 444, - "CommandName": "Get-PnPField" + "Command": "Get-PnPField", + "CommandName": "Get-PnPField", + "Id": 444 }, { - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "Id": 445, - "CommandName": "Get-PnPField" + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "CommandName": "Get-PnPField", + "Id": 445 }, { - "Command": "Get-PnPField -Group \"Custom Columns\"", "Rank": 3, - "Id": 446, - "CommandName": "Get-PnPField" + "Command": "Get-PnPField -Group \"Custom Columns\"", + "CommandName": "Get-PnPField", + "Id": 446 }, { - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Rank": 1, - "Id": 447, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "CommandName": "Get-PnPFile", + "Id": 447 }, { - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Rank": 2, - "Id": 448, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "CommandName": "Get-PnPFile", + "Id": 448 }, { - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Rank": 3, - "Id": 449, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "CommandName": "Get-PnPFile", + "Id": 449 }, { - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Rank": 4, - "Id": 450, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "CommandName": "Get-PnPFile", + "Id": 450 }, { - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Rank": 5, - "Id": 451, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "CommandName": "Get-PnPFile", + "Id": 451 }, { - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Rank": 6, - "Id": 452, - "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": 452 }, { - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Rank": 7, - "Id": 453, - "CommandName": "Get-PnPFile" + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "CommandName": "Get-PnPFile", + "Id": 453 }, { - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "Id": 454, - "CommandName": "Get-PnPFileSharingLink" + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Get-PnPFileSharingLink", + "Id": 454 }, { - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Rank": 1, - "Id": 455, - "CommandName": "Get-PnPFileVersion" + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "CommandName": "Get-PnPFileVersion", + "Id": 455 }, { - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Rank": 2, - "Id": 456, - "CommandName": "Get-PnPFileVersion" + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "CommandName": "Get-PnPFileVersion", + "Id": 456 }, { - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Rank": 1, - "Id": 457, - "CommandName": "Get-PnPFlow" + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "CommandName": "Get-PnPFlow", + "Id": 457 }, { - "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Rank": 1, - "Id": 458, - "CommandName": "Get-PnPFolder" + "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "CommandName": "Get-PnPFolder", + "Id": 458 }, { - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Rank": 2, - "Id": 459, - "CommandName": "Get-PnPFolder" + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "CommandName": "Get-PnPFolder", + "Id": 459 }, { - "Command": "Get-PnPFolder -List \"Shared Documents\"", "Rank": 3, - "Id": 460, - "CommandName": "Get-PnPFolder" + "Command": "Get-PnPFolder -List \"Shared Documents\"", + "CommandName": "Get-PnPFolder", + "Id": 460 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\"", "Rank": 1, - "Id": 461, - "CommandName": "Get-PnPFolderItem" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\"", + "CommandName": "Get-PnPFolderItem", + "Id": 461 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Rank": 2, - "Id": 462, - "CommandName": "Get-PnPFolderItem" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "CommandName": "Get-PnPFolderItem", + "Id": 462 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Rank": 3, - "Id": 463, - "CommandName": "Get-PnPFolderItem" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "CommandName": "Get-PnPFolderItem", + "Id": 463 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType File", "Rank": 4, - "Id": 464, - "CommandName": "Get-PnPFolderItem" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType File", + "CommandName": "Get-PnPFolderItem", + "Id": 464 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Rank": 5, - "Id": 465, - "CommandName": "Get-PnPFolderItem" + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "CommandName": "Get-PnPFolderItem", + "Id": 465 }, { - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "Id": 466, - "CommandName": "Get-PnPFolderSharingLink" + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Get-PnPFolderSharingLink", + "Id": 466 }, { - "Command": "Get-PnPFolderStorageMetric", "Rank": 1, - "Id": 467, - "CommandName": "Get-PnPFolderStorageMetric" + "Command": "Get-PnPFolderStorageMetric", + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 467 }, { - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Rank": 2, - "Id": 468, - "CommandName": "Get-PnPFolderStorageMetric" + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 468 }, { - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Rank": 3, - "Id": 469, - "CommandName": "Get-PnPFolderStorageMetric" + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "CommandName": "Get-PnPFolderStorageMetric", + "Id": 469 }, { - "Command": "Get-PnPFooter", "Rank": 1, - "Id": 470, - "CommandName": "Get-PnPFooter" + "Command": "Get-PnPFooter", + "CommandName": "Get-PnPFooter", + "Id": 470 }, { - "Command": "Get-PnPGraphAccessToken", "Rank": 1, - "Id": 471, - "CommandName": "Get-PnPGraphAccessToken" + "Command": "Get-PnPGraphAccessToken", + "CommandName": "Get-PnPGraphAccessToken", + "Id": 471 }, { - "Command": "Get-PnPGraphAccessToken -Decoded", "Rank": 2, - "Id": 472, - "CommandName": "Get-PnPGraphAccessToken" + "Command": "Get-PnPGraphAccessToken -Decoded", + "CommandName": "Get-PnPGraphAccessToken", + "Id": 472 }, { - "Command": "Get-PnPGraphSubscription", "Rank": 1, - "Id": 473, - "CommandName": "Get-PnPGraphSubscription" + "Command": "Get-PnPGraphSubscription", + "CommandName": "Get-PnPGraphSubscription", + "Id": 473 }, { - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Rank": 2, - "Id": 474, - "CommandName": "Get-PnPGraphSubscription" + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "CommandName": "Get-PnPGraphSubscription", + "Id": 474 }, { - "Command": "Get-PnPGroup", "Rank": 1, - "Id": 475, - "CommandName": "Get-PnPGroup" + "Command": "Get-PnPGroup", + "CommandName": "Get-PnPGroup", + "Id": 475 }, { - "Command": "Get-PnPGroup -Identity 'My Site Users'", "Rank": 2, - "Id": 476, - "CommandName": "Get-PnPGroup" + "Command": "Get-PnPGroup -Identity 'My Site Users'", + "CommandName": "Get-PnPGroup", + "Id": 476 }, { - "Command": "Get-PnPGroup -AssociatedMemberGroup", "Rank": 3, - "Id": 477, - "CommandName": "Get-PnPGroup" + "Command": "Get-PnPGroup -AssociatedMemberGroup", + "CommandName": "Get-PnPGroup", + "Id": 477 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Rank": 1, - "Id": 478, - "CommandName": "Get-PnPGroupMember" + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "CommandName": "Get-PnPGroupMember", + "Id": 478 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Rank": 2, - "Id": 479, - "CommandName": "Get-PnPGroupMember" + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "CommandName": "Get-PnPGroupMember", + "Id": 479 }, { - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Rank": 1, - "Id": 480, - "CommandName": "Get-PnPGroupPermissions" + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "CommandName": "Get-PnPGroupPermissions", + "Id": 480 }, { - "Command": "Get-PnPHideDefaultThemes", "Rank": 1, - "Id": 481, - "CommandName": "Get-PnPHideDefaultThemes" + "Command": "Get-PnPHideDefaultThemes", + "CommandName": "Get-PnPHideDefaultThemes", + "Id": 481 }, { - "Command": "Get-PnPHomePage", "Rank": 1, - "Id": 482, - "CommandName": "Get-PnPHomePage" + "Command": "Get-PnPHomePage", + "CommandName": "Get-PnPHomePage", + "Id": 482 }, { - "Command": "Get-PnPHomeSite", "Rank": 1, - "Id": 483, - "CommandName": "Get-PnPHomeSite" + "Command": "Get-PnPHomeSite", + "CommandName": "Get-PnPHomeSite", + "Id": 483 }, { - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Rank": 2, - "Id": 484, - "CommandName": "Get-PnPHomeSite" + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "CommandName": "Get-PnPHomeSite", + "Id": 484 }, { - "Command": "Get-PnPHomeSite -Detailed", "Rank": 3, - "Id": 485, - "CommandName": "Get-PnPHomeSite" + "Command": "Get-PnPHomeSite -Detailed", + "CommandName": "Get-PnPHomeSite", + "Id": 485 }, { - "Command": "Get-PnPHubSite", "Rank": 1, - "Id": 486, - "CommandName": "Get-PnPHubSite" + "Command": "Get-PnPHubSite", + "CommandName": "Get-PnPHubSite", + "Id": 486 }, { - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "Id": 487, - "CommandName": "Get-PnPHubSite" + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "CommandName": "Get-PnPHubSite", + "Id": 487 }, { - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Rank": 3, - "Id": 488, - "CommandName": "Get-PnPHubSite" + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "CommandName": "Get-PnPHubSite", + "Id": 488 }, { - "Command": "Get-PnPHubSiteChild", "Rank": 1, - "Id": 489, - "CommandName": "Get-PnPHubSiteChild" + "Command": "Get-PnPHubSiteChild", + "CommandName": "Get-PnPHubSiteChild", + "Id": 489 }, { - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Rank": 2, - "Id": 490, - "CommandName": "Get-PnPHubSiteChild" + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "CommandName": "Get-PnPHubSiteChild", + "Id": 490 }, { - "Command": "Get-PnPInPlaceRecordsManagement", "Rank": 1, - "Id": 491, - "CommandName": "Get-PnPInPlaceRecordsManagement" + "Command": "Get-PnPInPlaceRecordsManagement", + "CommandName": "Get-PnPInPlaceRecordsManagement", + "Id": 491 }, { - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Rank": 1, - "Id": 492, - "CommandName": "Get-PnPIsSiteAliasAvailable" + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "CommandName": "Get-PnPIsSiteAliasAvailable", + "Id": 492 }, { - "Command": "Get-PnPJavaScriptLink", "Rank": 1, - "Id": 493, - "CommandName": "Get-PnPJavaScriptLink" + "Command": "Get-PnPJavaScriptLink", + "CommandName": "Get-PnPJavaScriptLink", + "Id": 493 }, { - "Command": "Get-PnPJavaScriptLink -Scope All", "Rank": 2, - "Id": 494, - "CommandName": "Get-PnPJavaScriptLink" + "Command": "Get-PnPJavaScriptLink -Scope All", + "CommandName": "Get-PnPJavaScriptLink", + "Id": 494 }, { - "Command": "Get-PnPJavaScriptLink -Scope Web", "Rank": 3, - "Id": 495, - "CommandName": "Get-PnPJavaScriptLink" + "Command": "Get-PnPJavaScriptLink -Scope Web", + "CommandName": "Get-PnPJavaScriptLink", + "Id": 495 }, { - "Command": "Get-PnPJavaScriptLink -Scope Site", "Rank": 4, - "Id": 496, - "CommandName": "Get-PnPJavaScriptLink" + "Command": "Get-PnPJavaScriptLink -Scope Site", + "CommandName": "Get-PnPJavaScriptLink", + "Id": 496 }, { - "Command": "Get-PnPJavaScriptLink -Name Test", "Rank": 5, - "Id": 497, - "CommandName": "Get-PnPJavaScriptLink" + "Command": "Get-PnPJavaScriptLink -Name Test", + "CommandName": "Get-PnPJavaScriptLink", + "Id": 497 }, { - "Command": "Get-PnPKnowledgeHubSite", "Rank": 1, - "Id": 498, - "CommandName": "Get-PnPKnowledgeHubSite" + "Command": "Get-PnPKnowledgeHubSite", + "CommandName": "Get-PnPKnowledgeHubSite", + "Id": 498 }, { - "Command": "Get-PnPLabel", "Rank": 1, - "Id": 499, - "CommandName": "Get-PnPLabel" + "Command": "Get-PnPLabel", + "CommandName": "Get-PnPLabel", + "Id": 499 }, { - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Rank": 2, - "Id": 500, - "CommandName": "Get-PnPLabel" + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "CommandName": "Get-PnPLabel", + "Id": 500 }, { - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Rank": 1, - "Id": 501, - "CommandName": "Get-PnPLargeListOperationStatus" + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "CommandName": "Get-PnPLargeListOperationStatus", + "Id": 501 }, { - "Command": "Get-PnPList", "Rank": 1, - "Id": 502, - "CommandName": "Get-PnPList" + "Command": "Get-PnPList", + "CommandName": "Get-PnPList", + "Id": 502 }, { - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 2, - "Id": 503, - "CommandName": "Get-PnPList" + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Get-PnPList", + "Id": 503 }, { - "Command": "Get-PnPList -Identity Lists/Announcements", "Rank": 3, - "Id": 504, - "CommandName": "Get-PnPList" + "Command": "Get-PnPList -Identity Lists/Announcements", + "CommandName": "Get-PnPList", + "Id": 504 }, { - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Rank": 4, - "Id": 505, - "CommandName": "Get-PnPList" + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "CommandName": "Get-PnPList", + "Id": 505 }, { - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Rank": 5, - "Id": 506, - "CommandName": "Get-PnPList" + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "CommandName": "Get-PnPList", + "Id": 506 }, { - "Command": "Get-PnPListDesign", "Rank": 1, - "Id": 507, - "CommandName": "Get-PnPListDesign" + "Command": "Get-PnPListDesign", + "CommandName": "Get-PnPListDesign", + "Id": 507 }, { - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "Id": 508, - "CommandName": "Get-PnPListDesign" + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPListDesign", + "Id": 508 }, { - "Command": "Get-PnPListDesign -Identity ListEvent", "Rank": 3, - "Id": 509, - "CommandName": "Get-PnPListDesign" + "Command": "Get-PnPListDesign -Identity ListEvent", + "CommandName": "Get-PnPListDesign", + "Id": 509 }, { - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Rank": 1, - "Id": 510, - "CommandName": "Get-PnPListInformationRightsManagement" + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "CommandName": "Get-PnPListInformationRightsManagement", + "Id": 510 }, { - "Command": "Get-PnPListItem -List Tasks", "Rank": 1, - "Id": 511, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Tasks", + "CommandName": "Get-PnPListItem", + "Id": 511 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1", "Rank": 2, - "Id": 512, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Tasks -Id 1", + "CommandName": "Get-PnPListItem", + "Id": 512 }, { - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Rank": 3, - "Id": 513, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "CommandName": "Get-PnPListItem", + "Id": 513 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Rank": 4, - "Id": 514, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "CommandName": "Get-PnPListItem", + "Id": 514 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Rank": 5, - "Id": 515, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "CommandName": "Get-PnPListItem", + "Id": 515 }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Rank": 6, - "Id": 516, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "CommandName": "Get-PnPListItem", + "Id": 516 }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Rank": 7, - "Id": 517, - "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": 517 }, { - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Rank": 8, - "Id": 518, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "CommandName": "Get-PnPListItem", + "Id": 518 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Rank": 9, - "Id": 519, - "CommandName": "Get-PnPListItem" + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "CommandName": "Get-PnPListItem", + "Id": 519 }, { - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Rank": 1, - "Id": 520, - "CommandName": "Get-PnPListItemComment" + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "CommandName": "Get-PnPListItemComment", + "Id": 520 }, { - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Rank": 1, - "Id": 521, - "CommandName": "Get-PnPListItemPermission" + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "CommandName": "Get-PnPListItemPermission", + "Id": 521 }, { - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Rank": 1, - "Id": 522, - "CommandName": "Get-PnPListItemVersion" + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "CommandName": "Get-PnPListItemVersion", + "Id": 522 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Rank": 1, - "Id": 523, - "CommandName": "Get-PnPListPermissions" + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "CommandName": "Get-PnPListPermissions", + "Id": 523 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Rank": 2, - "Id": 524, - "CommandName": "Get-PnPListPermissions" + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "CommandName": "Get-PnPListPermissions", + "Id": 524 }, { - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Rank": 1, - "Id": 525, - "CommandName": "Get-PnPListRecordDeclaration" + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "CommandName": "Get-PnPListRecordDeclaration", + "Id": 525 }, { - "Command": "Get-PnPMasterPage", "Rank": 1, - "Id": 526, - "CommandName": "Get-PnPMasterPage" + "Command": "Get-PnPMasterPage", + "CommandName": "Get-PnPMasterPage", + "Id": 526 }, { - "Command": "Get-PnPMessageCenterAnnouncement", "Rank": 1, - "Id": 527, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "Command": "Get-PnPMessageCenterAnnouncement", + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 527 }, { - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Rank": 2, - "Id": 528, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "CommandName": "Get-PnPMessageCenterAnnouncement", + "Id": 528 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, - "Id": 529, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "Command": "Get-PnPMicrosoft365ExpiringGroup", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 529 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Rank": 2, - "Id": 530, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 530 }, { - "Command": "Get-PnPMicrosoft365Group", "Rank": 1, - "Id": 531, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365Group", + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 531 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Rank": 2, - "Id": 532, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 532 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Rank": 3, - "Id": 533, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 533 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Rank": 4, - "Id": 534, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 534 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $group", "Rank": 5, - "Id": 535, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365Group -Identity $group", + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 535 }, { - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Rank": 6, - "Id": 536, - "CommandName": "Get-PnPMicrosoft365Group" + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "CommandName": "Get-PnPMicrosoft365Group", + "Id": 536 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, - "Id": 537, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "Command": "Get-PnPMicrosoft365GroupEndpoint", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 537 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Rank": 2, - "Id": 538, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 538 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "Id": 539, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 539 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Rank": 1, - "Id": 540, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 540 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Rank": 2, - "Id": 541, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 541 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Rank": 3, - "Id": 542, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "CommandName": "Get-PnPMicrosoft365GroupMember", + "Id": 542 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Rank": 1, - "Id": 543, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 543 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Rank": 2, - "Id": 544, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Id": 544 }, { - "Command": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, - "Id": 545, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "Command": "Get-PnPMicrosoft365GroupSettings", + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 545 }, { - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Rank": 2, - "Id": 546, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Id": 546 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, - "Id": 547, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 547 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Rank": 2, - "Id": 548, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 548 }, { - "Command": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, - "Id": 549, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Command": "Get-PnPMicrosoft365GroupTeam", + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 549 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Rank": 2, - "Id": 550, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 550 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "Id": 551, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Id": 551 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, - "Id": 552, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 552 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Rank": 2, - "Id": 553, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 553 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Rank": 3, - "Id": 554, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 554 }, { - "Command": "Get-PnPNavigationNode", "Rank": 1, - "Id": 555, - "CommandName": "Get-PnPNavigationNode" + "Command": "Get-PnPNavigationNode", + "CommandName": "Get-PnPNavigationNode", + "Id": 555 }, { - "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Rank": 2, - "Id": 556, - "CommandName": "Get-PnPNavigationNode" + "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "CommandName": "Get-PnPNavigationNode", + "Id": 556 }, { - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Rank": 3, - "Id": 557, - "CommandName": "Get-PnPNavigationNode" + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "CommandName": "Get-PnPNavigationNode", + "Id": 557 }, { - "Command": "Get-PnPOrgAssetsLibrary", "Rank": 1, - "Id": 558, - "CommandName": "Get-PnPOrgAssetsLibrary" + "Command": "Get-PnPOrgAssetsLibrary", + "CommandName": "Get-PnPOrgAssetsLibrary", + "Id": 558 }, { - "Command": "Get-PnPOrgNewsSite", "Rank": 1, - "Id": 559, - "CommandName": "Get-PnPOrgNewsSite" + "Command": "Get-PnPOrgNewsSite", + "CommandName": "Get-PnPOrgNewsSite", + "Id": 559 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Rank": 1, - "Id": 560, - "CommandName": "Get-PnPPage" + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "CommandName": "Get-PnPPage", + "Id": 560 }, { - "Command": "Get-PnPPage \"MyPage\"", "Rank": 2, - "Id": 561, - "CommandName": "Get-PnPPage" + "Command": "Get-PnPPage \"MyPage\"", + "CommandName": "Get-PnPPage", + "Id": 561 }, { - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Rank": 3, - "Id": 562, - "CommandName": "Get-PnPPage" + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "CommandName": "Get-PnPPage", + "Id": 562 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Rank": 4, - "Id": 563, - "CommandName": "Get-PnPPage" + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "CommandName": "Get-PnPPage", + "Id": 563 }, { - "Command": "Get-PnPPageComponent -Page Home", "Rank": 1, - "Id": 564, - "CommandName": "Get-PnPPageComponent" + "Command": "Get-PnPPageComponent -Page Home", + "CommandName": "Get-PnPPageComponent", + "Id": 564 }, { - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "Id": 565, - "CommandName": "Get-PnPPageComponent" + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPPageComponent", + "Id": 565 }, { - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Rank": 3, - "Id": 566, - "CommandName": "Get-PnPPageComponent" + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "CommandName": "Get-PnPPageComponent", + "Id": 566 }, { - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "Id": 567, - "CommandName": "Get-PnPPlannerBucket" + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "CommandName": "Get-PnPPlannerBucket", + "Id": 567 }, { - "Command": "Get-PnPPlannerConfiguration", "Rank": 1, - "Id": 568, - "CommandName": "Get-PnPPlannerConfiguration" + "Command": "Get-PnPPlannerConfiguration", + "CommandName": "Get-PnPPlannerConfiguration", + "Id": 568 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Rank": 1, - "Id": 569, - "CommandName": "Get-PnPPlannerPlan" + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "CommandName": "Get-PnPPlannerPlan", + "Id": 569 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Rank": 2, - "Id": 570, - "CommandName": "Get-PnPPlannerPlan" + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "CommandName": "Get-PnPPlannerPlan", + "Id": 570 }, { - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Rank": 3, - "Id": 571, - "CommandName": "Get-PnPPlannerPlan" + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "CommandName": "Get-PnPPlannerPlan", + "Id": 571 }, { - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "Id": 572, - "CommandName": "Get-PnPPlannerRosterMember" + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "CommandName": "Get-PnPPlannerRosterMember", + "Id": 572 }, { - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Rank": 1, - "Id": 573, - "CommandName": "Get-PnPPlannerRosterPlan" + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 573 }, { - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 2, - "Id": 574, - "CommandName": "Get-PnPPlannerRosterPlan" + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPPlannerRosterPlan", + "Id": 574 }, { - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Rank": 1, - "Id": 575, - "CommandName": "Get-PnPPlannerTask" + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "CommandName": "Get-PnPPlannerTask", + "Id": 575 }, { - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 2, - "Id": 576, - "CommandName": "Get-PnPPlannerTask" + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerTask", + "Id": 576 }, { - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Rank": 3, - "Id": 577, - "CommandName": "Get-PnPPlannerTask" + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "CommandName": "Get-PnPPlannerTask", + "Id": 577 }, { - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 578, - "CommandName": "Get-PnPPlannerUserPolicy" + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Get-PnPPlannerUserPolicy", + "Id": 578 }, { - "Command": "Get-PnPPowerPlatformEnvironment", "Rank": 1, - "Id": 579, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "Command": "Get-PnPPowerPlatformEnvironment", + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 579 }, { - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Rank": 2, - "Id": 580, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 580 }, { - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Rank": 3, - "Id": 581, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "CommandName": "Get-PnPPowerPlatformEnvironment", + "Id": 581 }, { - "Command": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, - "Id": 582, - "CommandName": "Get-PnPPowerShellTelemetryEnabled" + "Command": "Get-PnPPowerShellTelemetryEnabled", + "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Id": 582 }, { - "Command": "Get-PnPPropertyBag", "Rank": 1, - "Id": 583, - "CommandName": "Get-PnPPropertyBag" + "Command": "Get-PnPPropertyBag", + "CommandName": "Get-PnPPropertyBag", + "Id": 583 }, { - "Command": "Get-PnPPropertyBag -Key MyKey", "Rank": 2, - "Id": 584, - "CommandName": "Get-PnPPropertyBag" + "Command": "Get-PnPPropertyBag -Key MyKey", + "CommandName": "Get-PnPPropertyBag", + "Id": 584 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Rank": 3, - "Id": 585, - "CommandName": "Get-PnPPropertyBag" + "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "CommandName": "Get-PnPPropertyBag", + "Id": 585 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Rank": 4, - "Id": 586, - "CommandName": "Get-PnPPropertyBag" + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "CommandName": "Get-PnPPropertyBag", + "Id": 586 }, { - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Rank": 5, - "Id": 587, - "CommandName": "Get-PnPPropertyBag" + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "CommandName": "Get-PnPPropertyBag", + "Id": 587 }, { - "Command": "Get-PnPPublishingImageRendition", "Rank": 1, - "Id": 588, - "CommandName": "Get-PnPPublishingImageRendition" + "Command": "Get-PnPPublishingImageRendition", + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 588 }, { - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Rank": 2, - "Id": 589, - "CommandName": "Get-PnPPublishingImageRendition" + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 589 }, { - "Command": "Get-PnPPublishingImageRendition -Identity 2", "Rank": 3, - "Id": 590, - "CommandName": "Get-PnPPublishingImageRendition" + "Command": "Get-PnPPublishingImageRendition -Identity 2", + "CommandName": "Get-PnPPublishingImageRendition", + "Id": 590 }, { - "Command": "Get-PnPRecycleBinItem", "Rank": 1, - "Id": 591, - "CommandName": "Get-PnPRecycleBinItem" + "Command": "Get-PnPRecycleBinItem", + "CommandName": "Get-PnPRecycleBinItem", + "Id": 591 }, { - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Rank": 2, - "Id": 592, - "CommandName": "Get-PnPRecycleBinItem" + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "CommandName": "Get-PnPRecycleBinItem", + "Id": 592 }, { - "Command": "Get-PnPRecycleBinItem -FirstStage", "Rank": 3, - "Id": 593, - "CommandName": "Get-PnPRecycleBinItem" + "Command": "Get-PnPRecycleBinItem -FirstStage", + "CommandName": "Get-PnPRecycleBinItem", + "Id": 593 }, { - "Command": "Get-PnPRecycleBinItem -SecondStage", "Rank": 4, - "Id": 594, - "CommandName": "Get-PnPRecycleBinItem" + "Command": "Get-PnPRecycleBinItem -SecondStage", + "CommandName": "Get-PnPRecycleBinItem", + "Id": 594 }, { - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Rank": 5, - "Id": 595, - "CommandName": "Get-PnPRecycleBinItem" + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "CommandName": "Get-PnPRecycleBinItem", + "Id": 595 }, { - "Command": "Get-PnPRequestAccessEmails", "Rank": 1, - "Id": 596, - "CommandName": "Get-PnPRequestAccessEmails" + "Command": "Get-PnPRequestAccessEmails", + "CommandName": "Get-PnPRequestAccessEmails", + "Id": 596 }, { - "Command": "Get-PnPRoleDefinition", "Rank": 1, - "Id": 597, - "CommandName": "Get-PnPRoleDefinition" + "Command": "Get-PnPRoleDefinition", + "CommandName": "Get-PnPRoleDefinition", + "Id": 597 }, { - "Command": "Get-PnPRoleDefinition -Identity Read", "Rank": 2, - "Id": 598, - "CommandName": "Get-PnPRoleDefinition" + "Command": "Get-PnPRoleDefinition -Identity Read", + "CommandName": "Get-PnPRoleDefinition", + "Id": 598 }, { - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Rank": 3, - "Id": 599, - "CommandName": "Get-PnPRoleDefinition" + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "CommandName": "Get-PnPRoleDefinition", + "Id": 599 }, { - "Command": "Get-PnPSearchConfiguration", "Rank": 1, - "Id": 600, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 600 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site", "Rank": 2, - "Id": 601, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration -Scope Site", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 601 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Rank": 3, - "Id": 602, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 602 }, { - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "Id": 603, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 603 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Rank": 5, - "Id": 604, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 604 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Rank": 6, - "Id": 605, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 605 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Rank": 7, - "Id": 606, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 606 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Rank": 8, - "Id": 607, - "CommandName": "Get-PnPSearchConfiguration" + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "CommandName": "Get-PnPSearchConfiguration", + "Id": 607 }, { - "Command": "Get-PnPSearchCrawlLog", "Rank": 1, - "Id": 608, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchCrawlLog", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 608 }, { - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Rank": 2, - "Id": 609, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 609 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Rank": 3, - "Id": 610, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 610 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Rank": 4, - "Id": 611, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 611 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Rank": 5, - "Id": 612, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 612 }, { - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Rank": 6, - "Id": 613, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 613 }, { - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Rank": 7, - "Id": 614, - "CommandName": "Get-PnPSearchCrawlLog" + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "CommandName": "Get-PnPSearchCrawlLog", + "Id": 614 }, { - "Command": "Get-PnPSearchSettings", "Rank": 1, - "Id": 615, - "CommandName": "Get-PnPSearchSettings" + "Command": "Get-PnPSearchSettings", + "CommandName": "Get-PnPSearchSettings", + "Id": 615 }, { - "Command": "Get-PnPServiceCurrentHealth", "Rank": 1, - "Id": 616, - "CommandName": "Get-PnPServiceCurrentHealth" + "Command": "Get-PnPServiceCurrentHealth", + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 616 }, { - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Rank": 2, - "Id": 617, - "CommandName": "Get-PnPServiceCurrentHealth" + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "CommandName": "Get-PnPServiceCurrentHealth", + "Id": 617 }, { - "Command": "Get-PnPServiceHealthIssue", "Rank": 1, - "Id": 618, - "CommandName": "Get-PnPServiceHealthIssue" + "Command": "Get-PnPServiceHealthIssue", + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 618 }, { - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Rank": 2, - "Id": 619, - "CommandName": "Get-PnPServiceHealthIssue" + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "CommandName": "Get-PnPServiceHealthIssue", + "Id": 619 }, { - "Command": "Get-PnPSharePointAddIn", "Rank": 1, - "Id": 620, - "CommandName": "Get-PnPSharePointAddIn" + "Command": "Get-PnPSharePointAddIn", + "CommandName": "Get-PnPSharePointAddIn", + "Id": 620 }, { - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Rank": 2, - "Id": 621, - "CommandName": "Get-PnPSharePointAddIn" + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "CommandName": "Get-PnPSharePointAddIn", + "Id": 621 }, { - "Command": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, - "Id": 622, - "CommandName": "Get-PnPSharingForNonOwnersOfSite" + "Command": "Get-PnPSharingForNonOwnersOfSite", + "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Id": 622 }, { - "Command": "Get-PnPSite", "Rank": 1, - "Id": 623, - "CommandName": "Get-PnPSite" + "Command": "Get-PnPSite", + "CommandName": "Get-PnPSite", + "Id": 623 }, { - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Rank": 2, - "Id": 624, - "CommandName": "Get-PnPSite" + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "CommandName": "Get-PnPSite", + "Id": 624 }, { - "Command": "Get-PnPSiteClosure", "Rank": 1, - "Id": 625, - "CommandName": "Get-PnPSiteClosure" + "Command": "Get-PnPSiteClosure", + "CommandName": "Get-PnPSiteClosure", + "Id": 625 }, { - "Command": "Get-PnPSiteCollectionAdmin", "Rank": 1, - "Id": 626, - "CommandName": "Get-PnPSiteCollectionAdmin" + "Command": "Get-PnPSiteCollectionAdmin", + "CommandName": "Get-PnPSiteCollectionAdmin", + "Id": 626 }, { - "Command": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, - "Id": 627, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "Command": "Get-PnPSiteCollectionAppCatalog", + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 627 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Rank": 2, - "Id": 628, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 628 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Rank": 3, - "Id": 629, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Id": 629 }, { - "Command": "Get-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 630, - "CommandName": "Get-PnPSiteCollectionTermStore" + "Command": "Get-PnPSiteCollectionTermStore", + "CommandName": "Get-PnPSiteCollectionTermStore", + "Id": 630 }, { - "Command": "Get-PnPSiteDesign", "Rank": 1, - "Id": 631, - "CommandName": "Get-PnPSiteDesign" + "Command": "Get-PnPSiteDesign", + "CommandName": "Get-PnPSiteDesign", + "Id": 631 }, { - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "Id": 632, - "CommandName": "Get-PnPSiteDesign" + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteDesign", + "Id": 632 }, { - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 633, - "CommandName": "Get-PnPSiteDesignRights" + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteDesignRights", + "Id": 633 }, { - "Command": "Get-PnPSiteDesignRun", "Rank": 1, - "Id": 634, - "CommandName": "Get-PnPSiteDesignRun" + "Command": "Get-PnPSiteDesignRun", + "CommandName": "Get-PnPSiteDesignRun", + "Id": 634 }, { - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Rank": 2, - "Id": 635, - "CommandName": "Get-PnPSiteDesignRun" + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "CommandName": "Get-PnPSiteDesignRun", + "Id": 635 }, { - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Rank": 1, - "Id": 636, - "CommandName": "Get-PnPSiteDesignTask" + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "CommandName": "Get-PnPSiteDesignTask", + "Id": 636 }, { - "Command": "Get-PnPSiteDesignTask", "Rank": 2, - "Id": 637, - "CommandName": "Get-PnPSiteDesignTask" + "Command": "Get-PnPSiteDesignTask", + "CommandName": "Get-PnPSiteDesignTask", + "Id": 637 }, { - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Rank": 3, - "Id": 638, - "CommandName": "Get-PnPSiteDesignTask" + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "CommandName": "Get-PnPSiteDesignTask", + "Id": 638 }, { - "Command": "Get-PnPSiteGroup", "Rank": 1, - "Id": 639, - "CommandName": "Get-PnPSiteGroup" + "Command": "Get-PnPSiteGroup", + "CommandName": "Get-PnPSiteGroup", + "Id": 639 }, { - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 2, - "Id": 640, - "CommandName": "Get-PnPSiteGroup" + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "CommandName": "Get-PnPSiteGroup", + "Id": 640 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Rank": 3, - "Id": 641, - "CommandName": "Get-PnPSiteGroup" + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "CommandName": "Get-PnPSiteGroup", + "Id": 641 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Rank": 4, - "Id": 642, - "CommandName": "Get-PnPSiteGroup" + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "CommandName": "Get-PnPSiteGroup", + "Id": 642 }, { - "Command": "Get-PnPSitePolicy", "Rank": 1, - "Id": 643, - "CommandName": "Get-PnPSitePolicy" + "Command": "Get-PnPSitePolicy", + "CommandName": "Get-PnPSitePolicy", + "Id": 643 }, { - "Command": "Get-PnPSitePolicy -AllAvailable", "Rank": 2, - "Id": 644, - "CommandName": "Get-PnPSitePolicy" + "Command": "Get-PnPSitePolicy -AllAvailable", + "CommandName": "Get-PnPSitePolicy", + "Id": 644 }, { - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 3, - "Id": 645, - "CommandName": "Get-PnPSitePolicy" + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Get-PnPSitePolicy", + "Id": 645 }, { - "Command": "Get-PnPSiteScript", "Rank": 1, - "Id": 646, - "CommandName": "Get-PnPSiteScript" + "Command": "Get-PnPSiteScript", + "CommandName": "Get-PnPSiteScript", + "Id": 646 }, { - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 2, - "Id": 647, - "CommandName": "Get-PnPSiteScript" + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Get-PnPSiteScript", + "Id": 647 }, { - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Rank": 1, - "Id": 648, - "CommandName": "Get-PnPSiteScriptFromList" + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 648 }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Rank": 2, - "Id": 649, - "CommandName": "Get-PnPSiteScriptFromList" + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 649 }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Rank": 3, - "Id": 650, - "CommandName": "Get-PnPSiteScriptFromList" + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "CommandName": "Get-PnPSiteScriptFromList", + "Id": 650 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Rank": 1, - "Id": 651, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 651 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Rank": 2, - "Id": 652, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 652 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Rank": 3, - "Id": 653, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 653 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Rank": 4, - "Id": 654, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 654 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Rank": 5, - "Id": 655, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "CommandName": "Get-PnPSiteScriptFromWeb", + "Id": 655 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Rank": 6, - "Id": 656, - "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": 656 }, { - "Command": "Get-PnPSiteSearchQueryResults", "Rank": 1, - "Id": 657, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteSearchQueryResults", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 657 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Rank": 2, - "Id": 658, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 658 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Rank": 3, - "Id": 659, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 659 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Rank": 4, - "Id": 660, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 660 }, { - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Rank": 5, - "Id": 661, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 661 }, { - "Command": "Get-PnPSiteSearchQueryResults -All", "Rank": 6, - "Id": 662, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Command": "Get-PnPSiteSearchQueryResults -All", + "CommandName": "Get-PnPSiteSearchQueryResults", + "Id": 662 }, { - "Command": "Get-PnPSiteSensitivityLabel", "Rank": 1, - "Id": 663, - "CommandName": "Get-PnPSiteSensitivityLabel" + "Command": "Get-PnPSiteSensitivityLabel", + "CommandName": "Get-PnPSiteSensitivityLabel", + "Id": 663 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp", "Rank": 1, - "Id": 664, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.pnp", + "CommandName": "Get-PnPSiteTemplate", + "Id": 664 }, { - "Command": "Get-PnPSiteTemplate -Out template.xml", "Rank": 2, - "Id": 665, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.xml", + "CommandName": "Get-PnPSiteTemplate", + "Id": 665 }, { - "Command": "Get-PnPSiteTemplate -Out template.md", "Rank": 3, - "Id": 666, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.md", + "CommandName": "Get-PnPSiteTemplate", + "Id": 666 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Rank": 4, - "Id": 667, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "CommandName": "Get-PnPSiteTemplate", + "Id": 667 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Rank": 5, - "Id": 668, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "CommandName": "Get-PnPSiteTemplate", + "Id": 668 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Rank": 6, - "Id": 669, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "CommandName": "Get-PnPSiteTemplate", + "Id": 669 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Rank": 7, - "Id": 670, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "CommandName": "Get-PnPSiteTemplate", + "Id": 670 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Rank": 8, - "Id": 671, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "CommandName": "Get-PnPSiteTemplate", + "Id": 671 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Rank": 9, - "Id": 672, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteTemplate", + "Id": 672 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Rank": 10, - "Id": 673, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "CommandName": "Get-PnPSiteTemplate", + "Id": 673 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Rank": 11, - "Id": 674, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "CommandName": "Get-PnPSiteTemplate", + "Id": 674 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Rank": 12, - "Id": 675, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "CommandName": "Get-PnPSiteTemplate", + "Id": 675 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", "Rank": 13, - "Id": 676, - "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": 676 }, { - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Rank": 14, - "Id": 677, - "CommandName": "Get-PnPSiteTemplate" + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "CommandName": "Get-PnPSiteTemplate", + "Id": 677 }, { - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "Id": 678, - "CommandName": "Get-PnPSiteUserInvitations" + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "CommandName": "Get-PnPSiteUserInvitations", + "Id": 678 }, { - "Command": "Get-PnPStorageEntity", "Rank": 1, - "Id": 679, - "CommandName": "Get-PnPStorageEntity" + "Command": "Get-PnPStorageEntity", + "CommandName": "Get-PnPStorageEntity", + "Id": 679 }, { - "Command": "Get-PnPStorageEntity -Key MyKey", "Rank": 2, - "Id": 680, - "CommandName": "Get-PnPStorageEntity" + "Command": "Get-PnPStorageEntity -Key MyKey", + "CommandName": "Get-PnPStorageEntity", + "Id": 680 }, { - "Command": "Get-PnPStorageEntity -Scope Site", "Rank": 3, - "Id": 681, - "CommandName": "Get-PnPStorageEntity" + "Command": "Get-PnPStorageEntity -Scope Site", + "CommandName": "Get-PnPStorageEntity", + "Id": 681 }, { - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 4, - "Id": 682, - "CommandName": "Get-PnPStorageEntity" + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "CommandName": "Get-PnPStorageEntity", + "Id": 682 }, { - "Command": "Get-PnPStoredCredential -Name O365", "Rank": 1, - "Id": 683, - "CommandName": "Get-PnPStoredCredential" + "Command": "Get-PnPStoredCredential -Name O365", + "CommandName": "Get-PnPStoredCredential", + "Id": 683 }, { - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "Id": 684, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState" + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Id": 684 }, { - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "Id": 685, - "CommandName": "Get-PnPStructuralNavigationCacheWebState" + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Id": 685 }, { - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Rank": 1, - "Id": 686, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest" + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Id": 686 }, { - "Command": "Get-PnPSubWeb", "Rank": 1, - "Id": 687, - "CommandName": "Get-PnPSubWeb" + "Command": "Get-PnPSubWeb", + "CommandName": "Get-PnPSubWeb", + "Id": 687 }, { - "Command": "Get-PnPSubWeb -Recurse", "Rank": 2, - "Id": 688, - "CommandName": "Get-PnPSubWeb" + "Command": "Get-PnPSubWeb -Recurse", + "CommandName": "Get-PnPSubWeb", + "Id": 688 }, { - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Rank": 3, - "Id": 689, - "CommandName": "Get-PnPSubWeb" + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "CommandName": "Get-PnPSubWeb", + "Id": 689 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Rank": 4, - "Id": 690, - "CommandName": "Get-PnPSubWeb" + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "CommandName": "Get-PnPSubWeb", + "Id": 690 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Rank": 5, - "Id": 691, - "CommandName": "Get-PnPSubWeb" + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "CommandName": "Get-PnPSubWeb", + "Id": 691 }, { - "Command": "Get-PnPSyntexModel", "Rank": 1, - "Id": 692, - "CommandName": "Get-PnPSyntexModel" + "Command": "Get-PnPSyntexModel", + "CommandName": "Get-PnPSyntexModel", + "Id": 692 }, { - "Command": "Get-PnPSyntexModel -Identity 1", "Rank": 2, - "Id": 693, - "CommandName": "Get-PnPSyntexModel" + "Command": "Get-PnPSyntexModel -Identity 1", + "CommandName": "Get-PnPSyntexModel", + "Id": 693 }, { - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Rank": 3, - "Id": 694, - "CommandName": "Get-PnPSyntexModel" + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "CommandName": "Get-PnPSyntexModel", + "Id": 694 }, { - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Rank": 1, - "Id": 695, - "CommandName": "Get-PnPSyntexModelPublication" + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "CommandName": "Get-PnPSyntexModelPublication", + "Id": 695 }, { - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Rank": 1, - "Id": 696, - "CommandName": "Get-PnPTaxonomyItem" + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "CommandName": "Get-PnPTaxonomyItem", + "Id": 696 }, { - "Command": "Get-PnPTeamsApp", "Rank": 1, - "Id": 697, - "CommandName": "Get-PnPTeamsApp" + "Command": "Get-PnPTeamsApp", + "CommandName": "Get-PnPTeamsApp", + "Id": 697 }, { - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Rank": 2, - "Id": 698, - "CommandName": "Get-PnPTeamsApp" + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "CommandName": "Get-PnPTeamsApp", + "Id": 698 }, { - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Rank": 3, - "Id": 699, - "CommandName": "Get-PnPTeamsApp" + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "CommandName": "Get-PnPTeamsApp", + "Id": 699 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Rank": 1, - "Id": 700, - "CommandName": "Get-PnPTeamsChannel" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "CommandName": "Get-PnPTeamsChannel", + "Id": 700 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Rank": 2, - "Id": 701, - "CommandName": "Get-PnPTeamsChannel" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "CommandName": "Get-PnPTeamsChannel", + "Id": 701 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 3, - "Id": 702, - "CommandName": "Get-PnPTeamsChannel" + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "CommandName": "Get-PnPTeamsChannel", + "Id": 702 }, { - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Rank": 1, - "Id": 703, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 703 }, { - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Rank": 2, - "Id": 704, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Id": 704 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Rank": 1, - "Id": 705, - "CommandName": "Get-PnPTeamsChannelMessage" + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 705 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Rank": 2, - "Id": 706, - "CommandName": "Get-PnPTeamsChannelMessage" + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "CommandName": "Get-PnPTeamsChannelMessage", + "Id": 706 }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Rank": 1, - "Id": 707, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 707 }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Rank": 2, - "Id": 708, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "CommandName": "Get-PnPTeamsChannelMessageReply", + "Id": 708 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Rank": 1, - "Id": 709, - "CommandName": "Get-PnPTeamsChannelUser" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 709 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Rank": 2, - "Id": 710, - "CommandName": "Get-PnPTeamsChannelUser" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 710 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Rank": 3, - "Id": 711, - "CommandName": "Get-PnPTeamsChannelUser" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 711 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 4, - "Id": 712, - "CommandName": "Get-PnPTeamsChannelUser" + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Get-PnPTeamsChannelUser", + "Id": 712 }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Rank": 1, - "Id": 713, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 713 }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Rank": 2, - "Id": 714, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "CommandName": "Get-PnPTeamsPrimaryChannel", + "Id": 714 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Rank": 1, - "Id": 715, - "CommandName": "Get-PnPTeamsTab" + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "CommandName": "Get-PnPTeamsTab", + "Id": 715 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Rank": 2, - "Id": 716, - "CommandName": "Get-PnPTeamsTab" + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "CommandName": "Get-PnPTeamsTab", + "Id": 716 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", "Rank": 3, - "Id": 717, - "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": 717 }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Rank": 4, - "Id": 718, - "CommandName": "Get-PnPTeamsTab" + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "CommandName": "Get-PnPTeamsTab", + "Id": 718 }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Rank": 5, - "Id": 719, - "CommandName": "Get-PnPTeamsTab" + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "CommandName": "Get-PnPTeamsTab", + "Id": 719 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "Id": 720, - "CommandName": "Get-PnPTeamsTag" + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "CommandName": "Get-PnPTeamsTag", + "Id": 720 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 2, - "Id": 721, - "CommandName": "Get-PnPTeamsTag" + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Get-PnPTeamsTag", + "Id": 721 }, { - "Command": "Get-PnPTeamsTeam", "Rank": 1, - "Id": 722, - "CommandName": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsTeam", + "CommandName": "Get-PnPTeamsTeam", + "Id": 722 }, { - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Rank": 2, - "Id": 723, - "CommandName": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "CommandName": "Get-PnPTeamsTeam", + "Id": 723 }, { - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Rank": 3, - "Id": 724, - "CommandName": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "CommandName": "Get-PnPTeamsTeam", + "Id": 724 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Rank": 4, - "Id": 725, - "CommandName": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "CommandName": "Get-PnPTeamsTeam", + "Id": 725 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Rank": 5, - "Id": 726, - "CommandName": "Get-PnPTeamsTeam" + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "CommandName": "Get-PnPTeamsTeam", + "Id": 726 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam", "Rank": 1, - "Id": 727, - "CommandName": "Get-PnPTeamsUser" + "Command": "Get-PnPTeamsUser -Team MyTeam", + "CommandName": "Get-PnPTeamsUser", + "Id": 727 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Rank": 2, - "Id": 728, - "CommandName": "Get-PnPTeamsUser" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "CommandName": "Get-PnPTeamsUser", + "Id": 728 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Rank": 3, - "Id": 729, - "CommandName": "Get-PnPTeamsUser" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "CommandName": "Get-PnPTeamsUser", + "Id": 729 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Rank": 4, - "Id": 730, - "CommandName": "Get-PnPTeamsUser" + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "CommandName": "Get-PnPTeamsUser", + "Id": 730 }, { - "Command": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, - "Id": 731, - "CommandName": "Get-PnPTemporarilyDisableAppBar" + "Command": "Get-PnPTemporarilyDisableAppBar", + "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Id": 731 }, { - "Command": "Get-PnPTenant", "Rank": 1, - "Id": 732, - "CommandName": "Get-PnPTenant" + "Command": "Get-PnPTenant", + "CommandName": "Get-PnPTenant", + "Id": 732 }, { - "Command": "Get-PnPTenantAppCatalogUrl", "Rank": 1, - "Id": 733, - "CommandName": "Get-PnPTenantAppCatalogUrl" + "Command": "Get-PnPTenantAppCatalogUrl", + "CommandName": "Get-PnPTenantAppCatalogUrl", + "Id": 733 }, { - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Rank": 1, - "Id": 734, - "CommandName": "Get-PnPTenantCdnEnabled" + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "CommandName": "Get-PnPTenantCdnEnabled", + "Id": 734 }, { - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Rank": 1, - "Id": 735, - "CommandName": "Get-PnPTenantCdnOrigin" + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "CommandName": "Get-PnPTenantCdnOrigin", + "Id": 735 }, { - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Rank": 1, - "Id": 736, - "CommandName": "Get-PnPTenantCdnPolicies" + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "CommandName": "Get-PnPTenantCdnPolicies", + "Id": 736 }, { - "Command": "Get-PnPTenantDeletedSite", "Rank": 1, - "Id": 737, - "CommandName": "Get-PnPTenantDeletedSite" + "Command": "Get-PnPTenantDeletedSite", + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 737 }, { - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 2, - "Id": 738, - "CommandName": "Get-PnPTenantDeletedSite" + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 738 }, { - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Rank": 3, - "Id": 739, - "CommandName": "Get-PnPTenantDeletedSite" + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 739 }, { - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Rank": 4, - "Id": 740, - "CommandName": "Get-PnPTenantDeletedSite" + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "CommandName": "Get-PnPTenantDeletedSite", + "Id": 740 }, { - "Command": "Get-PnPTenantId", "Rank": 1, - "Id": 741, - "CommandName": "Get-PnPTenantId" + "Command": "Get-PnPTenantId", + "CommandName": "Get-PnPTenantId", + "Id": 741 }, { - "Command": "Get-PnPTenantId contoso", "Rank": 2, - "Id": 742, - "CommandName": "Get-PnPTenantId" + "Command": "Get-PnPTenantId contoso", + "CommandName": "Get-PnPTenantId", + "Id": 742 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Rank": 3, - "Id": 743, - "CommandName": "Get-PnPTenantId" + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "CommandName": "Get-PnPTenantId", + "Id": 743 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Rank": 4, - "Id": 744, - "CommandName": "Get-PnPTenantId" + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "CommandName": "Get-PnPTenantId", + "Id": 744 }, { - "Command": "Get-PnPTenantInstance", "Rank": 1, - "Id": 745, - "CommandName": "Get-PnPTenantInstance" + "Command": "Get-PnPTenantInstance", + "CommandName": "Get-PnPTenantInstance", + "Id": 745 }, { - "Command": "Get-PnPTenantRecycleBinItem", "Rank": 1, - "Id": 746, - "CommandName": "Get-PnPTenantRecycleBinItem" + "Command": "Get-PnPTenantRecycleBinItem", + "CommandName": "Get-PnPTenantRecycleBinItem", + "Id": 746 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Rank": 1, - "Id": 747, - "CommandName": "Get-PnPTenantSequence" + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "CommandName": "Get-PnPTenantSequence", + "Id": 747 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Rank": 2, - "Id": 748, - "CommandName": "Get-PnPTenantSequence" + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "CommandName": "Get-PnPTenantSequence", + "Id": 748 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Rank": 1, - "Id": 749, - "CommandName": "Get-PnPTenantSequenceSite" + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 749 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Rank": 2, - "Id": 750, - "CommandName": "Get-PnPTenantSequenceSite" + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "CommandName": "Get-PnPTenantSequenceSite", + "Id": 750 }, { - "Command": "Get-PnPTenantSite", "Rank": 1, - "Id": 751, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSite", + "CommandName": "Get-PnPTenantSite", + "Id": 751 }, { - "Command": "Get-PnPTenantSite -Detailed", "Rank": 2, - "Id": 752, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSite -Detailed", + "CommandName": "Get-PnPTenantSite", + "Id": 752 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Rank": 3, - "Id": 753, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "CommandName": "Get-PnPTenantSite", + "Id": 753 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Rank": 4, - "Id": 754, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "CommandName": "Get-PnPTenantSite", + "Id": 754 }, { - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Rank": 5, - "Id": 755, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "CommandName": "Get-PnPTenantSite", + "Id": 755 }, { - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Rank": 6, - "Id": 756, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "CommandName": "Get-PnPTenantSite", + "Id": 756 }, { - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Rank": 7, - "Id": 757, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "CommandName": "Get-PnPTenantSite", + "Id": 757 }, { - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Rank": 8, - "Id": 758, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "CommandName": "Get-PnPTenantSite", + "Id": 758 }, { - "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Rank": 9, - "Id": 759, - "CommandName": "Get-PnPTenantSite" + "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "CommandName": "Get-PnPTenantSite", + "Id": 759 }, { - "Command": "Get-PnPTenantSyncClientRestriction", "Rank": 1, - "Id": 760, - "CommandName": "Get-PnPTenantSyncClientRestriction" + "Command": "Get-PnPTenantSyncClientRestriction", + "CommandName": "Get-PnPTenantSyncClientRestriction", + "Id": 760 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Rank": 1, - "Id": 761, - "CommandName": "Get-PnPTenantTemplate" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "CommandName": "Get-PnPTenantTemplate", + "Id": 761 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Rank": 2, - "Id": 762, - "CommandName": "Get-PnPTenantTemplate" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "CommandName": "Get-PnPTenantTemplate", + "Id": 762 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Rank": 3, - "Id": 763, - "CommandName": "Get-PnPTenantTemplate" + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "CommandName": "Get-PnPTenantTemplate", + "Id": 763 }, { - "Command": "Get-PnPTenantTheme", "Rank": 1, - "Id": 764, - "CommandName": "Get-PnPTenantTheme" + "Command": "Get-PnPTenantTheme", + "CommandName": "Get-PnPTenantTheme", + "Id": 764 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 2, - "Id": 765, - "CommandName": "Get-PnPTenantTheme" + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Get-PnPTenantTheme", + "Id": 765 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Rank": 3, - "Id": 766, - "CommandName": "Get-PnPTenantTheme" + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "CommandName": "Get-PnPTenantTheme", + "Id": 766 }, { - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 1, - "Id": 767, - "CommandName": "Get-PnPTerm" + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", + "Id": 767 }, { - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "Id": 768, - "CommandName": "Get-PnPTerm" + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", + "Id": 768 }, { - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "Id": 769, - "CommandName": "Get-PnPTerm" + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTerm", + "Id": 769 }, { - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Rank": 4, - "Id": 770, - "CommandName": "Get-PnPTerm" + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "CommandName": "Get-PnPTerm", + "Id": 770 }, { - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Rank": 5, - "Id": 771, - "CommandName": "Get-PnPTerm" + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "CommandName": "Get-PnPTerm", + "Id": 771 }, { - "Command": "Get-PnPTermGroup", "Rank": 1, - "Id": 772, - "CommandName": "Get-PnPTermGroup" + "Command": "Get-PnPTermGroup", + "CommandName": "Get-PnPTermGroup", + "Id": 772 }, { - "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Rank": 2, - "Id": 773, - "CommandName": "Get-PnPTermGroup" + "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "CommandName": "Get-PnPTermGroup", + "Id": 773 }, { - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Rank": 3, - "Id": 774, - "CommandName": "Get-PnPTermGroup" + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "CommandName": "Get-PnPTermGroup", + "Id": 774 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Rank": 1, - "Id": 775, - "CommandName": "Get-PnPTermLabel" + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "CommandName": "Get-PnPTermLabel", + "Id": 775 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Rank": 2, - "Id": 776, - "CommandName": "Get-PnPTermLabel" + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "CommandName": "Get-PnPTermLabel", + "Id": 776 }, { - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 3, - "Id": 777, - "CommandName": "Get-PnPTermLabel" + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermLabel", + "Id": 777 }, { - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Rank": 1, - "Id": 778, - "CommandName": "Get-PnPTermSet" + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermSet", + "Id": 778 }, { - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "Id": 779, - "CommandName": "Get-PnPTermSet" + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Get-PnPTermSet", + "Id": 779 }, { - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Rank": 3, - "Id": 780, - "CommandName": "Get-PnPTermSet" + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "CommandName": "Get-PnPTermSet", + "Id": 780 }, { - "Command": "Get-PnPTheme", "Rank": 1, - "Id": 781, - "CommandName": "Get-PnPTheme" + "Command": "Get-PnPTheme", + "CommandName": "Get-PnPTheme", + "Id": 781 }, { - "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Rank": 2, - "Id": 782, - "CommandName": "Get-PnPTheme" + "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "CommandName": "Get-PnPTheme", + "Id": 782 }, { - "Command": "Get-PnPTimeZoneId", "Rank": 1, - "Id": 783, - "CommandName": "Get-PnPTimeZoneId" + "Command": "Get-PnPTimeZoneId", + "CommandName": "Get-PnPTimeZoneId", + "Id": 783 }, { - "Command": "Get-PnPTimeZoneId -Match Stockholm", "Rank": 2, - "Id": 784, - "CommandName": "Get-PnPTimeZoneId" + "Command": "Get-PnPTimeZoneId -Match Stockholm", + "CommandName": "Get-PnPTimeZoneId", + "Id": 784 }, { - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Rank": 1, - "Id": 785, - "CommandName": "Get-PnPUnfurlLink" + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "CommandName": "Get-PnPUnfurlLink", + "Id": 785 }, { - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Rank": 1, - "Id": 786, - "CommandName": "Get-PnPUnifiedAuditLog" + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "CommandName": "Get-PnPUnifiedAuditLog", + "Id": 786 }, { - "Command": "Get-PnPUPABulkImportStatus", "Rank": 1, - "Id": 787, - "CommandName": "Get-PnPUPABulkImportStatus" + "Command": "Get-PnPUPABulkImportStatus", + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 787 }, { - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Rank": 2, - "Id": 788, - "CommandName": "Get-PnPUPABulkImportStatus" + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 788 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId ", "Rank": 3, - "Id": 789, - "CommandName": "Get-PnPUPABulkImportStatus" + "Command": "Get-PnPUPABulkImportStatus -JobId ", + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 789 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Rank": 4, - "Id": 790, - "CommandName": "Get-PnPUPABulkImportStatus" + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "CommandName": "Get-PnPUPABulkImportStatus", + "Id": 790 }, { - "Command": "Get-PnPUser", "Rank": 1, - "Id": 791, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPUser", + "CommandName": "Get-PnPUser", + "Id": 791 }, { - "Command": "Get-PnPUser -Identity 23", "Rank": 2, - "Id": 792, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPUser -Identity 23", + "CommandName": "Get-PnPUser", + "Id": 792 }, { - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Rank": 3, - "Id": 793, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPUser", + "Id": 793 }, { - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Rank": 4, - "Id": 794, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "CommandName": "Get-PnPUser", + "Id": 794 }, { - "Command": "Get-PnPUser -WithRightsAssigned", "Rank": 5, - "Id": 795, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPUser -WithRightsAssigned", + "CommandName": "Get-PnPUser", + "Id": 795 }, { - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Rank": 6, - "Id": 796, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "CommandName": "Get-PnPUser", + "Id": 796 }, { - "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Rank": 7, - "Id": 797, - "CommandName": "Get-PnPUser" + "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "CommandName": "Get-PnPUser", + "Id": 797 }, { - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Rank": 1, - "Id": 798, - "CommandName": "Get-PnPUserOneDriveQuota" + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "CommandName": "Get-PnPUserOneDriveQuota", + "Id": 798 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Rank": 1, - "Id": 799, - "CommandName": "Get-PnPUserProfileProperty" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "CommandName": "Get-PnPUserProfileProperty", + "Id": 799 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Rank": 2, - "Id": 800, - "CommandName": "Get-PnPUserProfileProperty" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "CommandName": "Get-PnPUserProfileProperty", + "Id": 800 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Rank": 3, - "Id": 801, - "CommandName": "Get-PnPUserProfileProperty" + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "CommandName": "Get-PnPUserProfileProperty", + "Id": 801 }, { - "Command": "Get-PnPView -List \"Demo List\"", "Rank": 1, - "Id": 802, - "CommandName": "Get-PnPView" + "Command": "Get-PnPView -List \"Demo List\"", + "CommandName": "Get-PnPView", + "Id": 802 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Rank": 2, - "Id": 803, - "CommandName": "Get-PnPView" + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "CommandName": "Get-PnPView", + "Id": 803 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Rank": 3, - "Id": 804, - "CommandName": "Get-PnPView" + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "CommandName": "Get-PnPView", + "Id": 804 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, - "Id": 805, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "Command": "Get-PnPVivaConnectionsDashboardACE", + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 805 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 2, - "Id": 806, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Id": 806 }, { - "Command": "Get-PnPWeb", "Rank": 1, - "Id": 807, - "CommandName": "Get-PnPWeb" + "Command": "Get-PnPWeb", + "CommandName": "Get-PnPWeb", + "Id": 807 }, { - "Command": "Get-PnPWebHeader", "Rank": 1, - "Id": 808, - "CommandName": "Get-PnPWebHeader" + "Command": "Get-PnPWebHeader", + "CommandName": "Get-PnPWebHeader", + "Id": 808 }, { - "Command": "Get-PnPWebhookSubscriptions -List MyList", "Rank": 1, - "Id": 809, - "CommandName": "Get-PnPWebhookSubscriptions" + "Command": "Get-PnPWebhookSubscriptions -List MyList", + "CommandName": "Get-PnPWebhookSubscriptions", + "Id": 809 }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Rank": 1, - "Id": 810, - "CommandName": "Get-PnPWebPart" + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "CommandName": "Get-PnPWebPart", + "Id": 810 }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 2, - "Id": 811, - "CommandName": "Get-PnPWebPart" + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPWebPart", + "Id": 811 }, { - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Rank": 1, - "Id": 812, - "CommandName": "Get-PnPWebPartProperty" + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "CommandName": "Get-PnPWebPartProperty", + "Id": 812 }, { - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Rank": 2, - "Id": 813, - "CommandName": "Get-PnPWebPartProperty" + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "CommandName": "Get-PnPWebPartProperty", + "Id": 813 }, { - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "Id": 814, - "CommandName": "Get-PnPWebPartXml" + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Get-PnPWebPartXml", + "Id": 814 }, { - "Command": "Get-PnPWebTemplates", "Rank": 1, - "Id": 815, - "CommandName": "Get-PnPWebTemplates" + "Command": "Get-PnPWebTemplates", + "CommandName": "Get-PnPWebTemplates", + "Id": 815 }, { - "Command": "Get-PnPWebTemplates -LCID 1033", "Rank": 2, - "Id": 816, - "CommandName": "Get-PnPWebTemplates" + "Command": "Get-PnPWebTemplates -LCID 1033", + "CommandName": "Get-PnPWebTemplates", + "Id": 816 }, { - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Rank": 3, - "Id": 817, - "CommandName": "Get-PnPWebTemplates" + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "CommandName": "Get-PnPWebTemplates", + "Id": 817 }, { - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Rank": 1, - "Id": 818, - "CommandName": "Get-PnPWikiPageContent" + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "CommandName": "Get-PnPWikiPageContent", + "Id": 818 }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Rank": 1, - "Id": 819, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "CommandName": "Grant-PnPAzureADAppSitePermission", + "Id": 819 }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", "Rank": 2, - "Id": 820, - "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": 820 }, { - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "Id": 821, - "CommandName": "Grant-PnPHubSiteRights" + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Grant-PnPHubSiteRights", + "Id": 821 }, { - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "Id": 822, - "CommandName": "Grant-PnPSiteDesignRights" + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Grant-PnPSiteDesignRights", + "Id": 822 }, { - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "Id": 823, - "CommandName": "Grant-PnPTenantServicePrincipalPermission" + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Id": 823 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Rank": 1, - "Id": 824, - "CommandName": "Import-PnPTaxonomy" + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "CommandName": "Import-PnPTaxonomy", + "Id": 824 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Rank": 2, - "Id": 825, - "CommandName": "Import-PnPTaxonomy" + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "CommandName": "Import-PnPTaxonomy", + "Id": 825 }, { - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Rank": 3, - "Id": 826, - "CommandName": "Import-PnPTaxonomy" + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "CommandName": "Import-PnPTaxonomy", + "Id": 826 }, { - "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Rank": 1, - "Id": 827, - "CommandName": "Import-PnPTermGroupFromXml" + "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 827 }, { - "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Rank": 2, - "Id": 828, - "CommandName": "Import-PnPTermGroupFromXml" + "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "CommandName": "Import-PnPTermGroupFromXml", + "Id": 828 }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Rank": 1, - "Id": 829, - "CommandName": "Import-PnPTermSet" + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "CommandName": "Import-PnPTermSet", + "Id": 829 }, { - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", "Rank": 2, - "Id": 830, - "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": 830 }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", "Rank": 3, - "Id": 831, - "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": 831 }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 832, - "CommandName": "Install-PnPApp" + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Install-PnPApp", + "Id": 832 }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 833, - "CommandName": "Install-PnPApp" + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Install-PnPApp", + "Id": 833 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Rank": 1, - "Id": 834, - "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": 834 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Rank": 2, - "Id": 835, - "CommandName": "Invoke-PnPGraphMethod" + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "CommandName": "Invoke-PnPGraphMethod", + "Id": 835 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Rank": 3, - "Id": 836, - "CommandName": "Invoke-PnPGraphMethod" + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "CommandName": "Invoke-PnPGraphMethod", + "Id": 836 }, { - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Rank": 4, - "Id": 837, - "CommandName": "Invoke-PnPGraphMethod" + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "CommandName": "Invoke-PnPGraphMethod", + "Id": 837 }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Rank": 5, - "Id": 838, - "CommandName": "Invoke-PnPGraphMethod" + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "CommandName": "Invoke-PnPGraphMethod", + "Id": 838 }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", "Rank": 6, - "Id": 839, - "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": 839 }, { - "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": 840, - "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": 840 }, { - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 841, - "CommandName": "Invoke-PnPListDesign" + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Invoke-PnPListDesign", + "Id": 841 }, { - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "Id": 842, - "CommandName": "Invoke-PnPListDesign" + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "CommandName": "Invoke-PnPListDesign", + "Id": 842 }, { - "Command": "Invoke-PnPQuery -RetryCount 5", "Rank": 1, - "Id": 843, - "CommandName": "Invoke-PnPQuery" + "Command": "Invoke-PnPQuery -RetryCount 5", + "CommandName": "Invoke-PnPQuery", + "Id": 843 }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 844, - "CommandName": "Invoke-PnPSiteDesign" + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Invoke-PnPSiteDesign", + "Id": 844 }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Rank": 2, - "Id": 845, - "CommandName": "Invoke-PnPSiteDesign" + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "CommandName": "Invoke-PnPSiteDesign", + "Id": 845 }, { - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Rank": 1, - "Id": 846, - "CommandName": "Invoke-PnPSiteScript" + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "CommandName": "Invoke-PnPSiteScript", + "Id": 846 }, { - "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": 847, - "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": 847 }, { - "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": 848, - "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": 848 }, { - "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": 849, - "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": 849 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Rank": 1, - "Id": 850, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 850 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Rank": 2, - "Id": 851, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 851 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "Id": 852, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 852 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Rank": 4, - "Id": 853, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 853 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Rank": 5, - "Id": 854, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 854 }, { - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Rank": 6, - "Id": 855, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 855 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Rank": 7, - "Id": 856, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 856 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Rank": 8, - "Id": 857, - "CommandName": "Invoke-PnPSiteTemplate" + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "CommandName": "Invoke-PnPSiteTemplate", + "Id": 857 }, { - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Rank": 1, - "Id": 858, - "CommandName": "Invoke-PnPSPRestMethod" + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "CommandName": "Invoke-PnPSPRestMethod", + "Id": 858 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Rank": 1, - "Id": 859, - "CommandName": "Invoke-PnPTenantTemplate" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 859 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Rank": 2, - "Id": 860, - "CommandName": "Invoke-PnPTenantTemplate" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 860 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Rank": 3, - "Id": 861, - "CommandName": "Invoke-PnPTenantTemplate" + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "CommandName": "Invoke-PnPTenantTemplate", + "Id": 861 }, { - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Rank": 1, - "Id": 862, - "CommandName": "Invoke-PnPWebAction" + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPWebAction", + "Id": 862 }, { - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Rank": 2, - "Id": 863, - "CommandName": "Invoke-PnPWebAction" + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "CommandName": "Invoke-PnPWebAction", + "Id": 863 }, { - "Command": "Measure-PnPList \"Documents\"", "Rank": 1, - "Id": 864, - "CommandName": "Measure-PnPList" + "Command": "Measure-PnPList \"Documents\"", + "CommandName": "Measure-PnPList", + "Id": 864 }, { - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Rank": 2, - "Id": 865, - "CommandName": "Measure-PnPList" + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "CommandName": "Measure-PnPList", + "Id": 865 }, { - "Command": "Measure-PnPWeb", "Rank": 1, - "Id": 866, - "CommandName": "Measure-PnPWeb" + "Command": "Measure-PnPWeb", + "CommandName": "Measure-PnPWeb", + "Id": 866 }, { - "Command": "Measure-PnPWeb $web -Recursive", "Rank": 2, - "Id": 867, - "CommandName": "Measure-PnPWeb" + "Command": "Measure-PnPWeb $web -Recursive", + "CommandName": "Measure-PnPWeb", + "Id": 867 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Rank": 1, - "Id": 868, - "CommandName": "Move-PnPFile" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "CommandName": "Move-PnPFile", + "Id": 868 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Rank": 2, - "Id": 869, - "CommandName": "Move-PnPFile" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "CommandName": "Move-PnPFile", + "Id": 869 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 3, - "Id": 870, - "CommandName": "Move-PnPFile" + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "CommandName": "Move-PnPFile", + "Id": 870 }, { - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Rank": 4, - "Id": 871, - "CommandName": "Move-PnPFile" + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "CommandName": "Move-PnPFile", + "Id": 871 }, { - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Rank": 1, - "Id": 872, - "CommandName": "Move-PnPFolder" + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "CommandName": "Move-PnPFolder", + "Id": 872 }, { - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Rank": 2, - "Id": 873, - "CommandName": "Move-PnPFolder" + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "CommandName": "Move-PnPFolder", + "Id": 873 }, { - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "Id": 874, - "CommandName": "Move-PnPListItemToRecycleBin" + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "CommandName": "Move-PnPListItemToRecycleBin", + "Id": 874 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "Rank": 1, - "Id": 875, - "CommandName": "Move-PnPPageComponent" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "CommandName": "Move-PnPPageComponent", + "Id": 875 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "Rank": 2, - "Id": 876, - "CommandName": "Move-PnPPageComponent" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "CommandName": "Move-PnPPageComponent", + "Id": 876 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "Rank": 3, - "Id": 877, - "CommandName": "Move-PnPPageComponent" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "CommandName": "Move-PnPPageComponent", + "Id": 877 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Rank": 4, - "Id": 878, - "CommandName": "Move-PnPPageComponent" + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "CommandName": "Move-PnPPageComponent", + "Id": 878 }, { - "Command": "Move-PnPRecycleBinItem", "Rank": 1, - "Id": 879, - "CommandName": "Move-PnpRecycleBinItem" + "Command": "Move-PnPRecycleBinItem", + "CommandName": "Move-PnpRecycleBinItem", + "Id": 879 }, { - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Rank": 2, - "Id": 880, - "CommandName": "Move-PnpRecycleBinItem" + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "CommandName": "Move-PnpRecycleBinItem", + "Id": 880 }, { - "Command": "Move-PnPRecycleBinItem -Force", "Rank": 3, - "Id": 881, - "CommandName": "Move-PnpRecycleBinItem" + "Command": "Move-PnPRecycleBinItem -Force", + "CommandName": "Move-PnpRecycleBinItem", + "Id": 881 }, { - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", "Rank": 1, - "Id": 882, - "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": 882 }, { - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Rank": 2, - "Id": 883, - "CommandName": "Move-PnPTerm" + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "CommandName": "Move-PnPTerm", + "Id": 883 }, { - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Rank": 3, - "Id": 884, - "CommandName": "Move-PnPTerm" + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "CommandName": "Move-PnPTerm", + "Id": 884 }, { - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", "Rank": 1, - "Id": 885, - "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": 885 }, { - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Rank": 2, - "Id": 886, - "CommandName": "Move-PnPTermSet" + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "CommandName": "Move-PnPTermSet", + "Id": 886 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "Id": 887, - "CommandName": "New-PnPAzureADGroup" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "New-PnPAzureADGroup", + "Id": 887 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Rank": 2, - "Id": 888, - "CommandName": "New-PnPAzureADGroup" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "CommandName": "New-PnPAzureADGroup", + "Id": 888 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Rank": 3, - "Id": 889, - "CommandName": "New-PnPAzureADGroup" + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "CommandName": "New-PnPAzureADGroup", + "Id": 889 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Rank": 1, - "Id": 890, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 890 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Rank": 2, - "Id": 891, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 891 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Rank": 3, - "Id": 892, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Id": 892 }, { - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Rank": 1, - "Id": 893, - "CommandName": "New-PnPAzureCertificate" + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "CommandName": "New-PnPAzureCertificate", + "Id": 893 }, { - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Rank": 2, - "Id": 894, - "CommandName": "New-PnPAzureCertificate" + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "CommandName": "New-PnPAzureCertificate", + "Id": 894 }, { - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Rank": 3, - "Id": 895, - "CommandName": "New-PnPAzureCertificate" + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "CommandName": "New-PnPAzureCertificate", + "Id": 895 }, { - "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": 896, - "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": 896 }, { - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", "Rank": 2, - "Id": 897, - "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": 897 }, { - "Command": "New-PnPGroup -Title \"My Site Users\"", "Rank": 1, - "Id": 898, - "CommandName": "New-PnPGroup" + "Command": "New-PnPGroup -Title \"My Site Users\"", + "CommandName": "New-PnPGroup", + "Id": 898 }, { - "Command": "New-PnPList -Title Announcements -Template Announcements", "Rank": 1, - "Id": 899, - "CommandName": "New-PnPList" + "Command": "New-PnPList -Title Announcements -Template Announcements", + "CommandName": "New-PnPList", + "Id": 899 }, { - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Rank": 2, - "Id": 900, - "CommandName": "New-PnPList" + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "CommandName": "New-PnPList", + "Id": 900 }, { - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Rank": 3, - "Id": 901, - "CommandName": "New-PnPList" + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "CommandName": "New-PnPList", + "Id": 901 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Rank": 1, - "Id": 902, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "CommandName": "New-PnPMicrosoft365Group", + "Id": 902 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Rank": 2, - "Id": 903, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "CommandName": "New-PnPMicrosoft365Group", + "Id": 903 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Rank": 3, - "Id": 904, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "CommandName": "New-PnPMicrosoft365Group", + "Id": 904 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Rank": 4, - "Id": 905, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "CommandName": "New-PnPMicrosoft365Group", + "Id": 905 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 5, - "Id": 906, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "CommandName": "New-PnPMicrosoft365Group", + "Id": 906 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "Id": 907, - "CommandName": "New-PnPMicrosoft365Group" + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "CommandName": "New-PnPMicrosoft365Group", + "Id": 907 }, { - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", "Rank": 1, - "Id": 908, - "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": 908 }, { - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Rank": 2, - "Id": 909, - "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": 909 }, { - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Rank": 1, - "Id": 910, - "CommandName": "New-PnPPersonalSite" + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "CommandName": "New-PnPPersonalSite", + "Id": 910 }, { - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Rank": 1, - "Id": 911, - "CommandName": "New-PnPPlannerPlan" + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "CommandName": "New-PnPPlannerPlan", + "Id": 911 }, { - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Rank": 1, - "Id": 912, - "CommandName": "New-PnPSdnProvider" + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "CommandName": "New-PnPSdnProvider", + "Id": 912 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 1, - "Id": 913, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "CommandName": "New-PnPSite", + "Id": 913 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "Rank": 2, - "Id": 914, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "CommandName": "New-PnPSite", + "Id": 914 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Rank": 3, - "Id": 915, - "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": 915 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 4, - "Id": 916, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "CommandName": "New-PnPSite", + "Id": 916 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 5, - "Id": 917, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "CommandName": "New-PnPSite", + "Id": 917 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 6, - "Id": 918, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "CommandName": "New-PnPSite", + "Id": 918 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Rank": 7, - "Id": 919, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "CommandName": "New-PnPSite", + "Id": 919 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Rank": 8, - "Id": 920, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "CommandName": "New-PnPSite", + "Id": 920 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Rank": 9, - "Id": 921, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "CommandName": "New-PnPSite", + "Id": 921 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Rank": 10, - "Id": 922, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "CommandName": "New-PnPSite", + "Id": 922 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Rank": 11, - "Id": 923, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "CommandName": "New-PnPSite", + "Id": 923 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Rank": 12, - "Id": 924, - "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": 924 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Rank": 13, - "Id": 925, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "CommandName": "New-PnPSite", + "Id": 925 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Rank": 14, - "Id": 926, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "CommandName": "New-PnPSite", + "Id": 926 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Rank": 15, - "Id": 927, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "CommandName": "New-PnPSite", + "Id": 927 }, { - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Rank": 16, - "Id": 928, - "CommandName": "New-PnPSite" + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "CommandName": "New-PnPSite", + "Id": 928 }, { - "Command": "New-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 929, - "CommandName": "New-PnPSiteCollectionTermStore" + "Command": "New-PnPSiteCollectionTermStore", + "CommandName": "New-PnPSiteCollectionTermStore", + "Id": 929 }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Rank": 1, - "Id": 930, - "CommandName": "New-PnPSiteGroup" + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "CommandName": "New-PnPSiteGroup", + "Id": 930 }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Rank": 2, - "Id": 931, - "CommandName": "New-PnPSiteGroup" + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "CommandName": "New-PnPSiteGroup", + "Id": 931 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Rank": 1, - "Id": 932, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 932 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Rank": 2, - "Id": 933, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 933 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Rank": 3, - "Id": 934, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 934 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "Rank": 4, - "Id": 935, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 935 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "Rank": 5, - "Id": 936, - "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": 936 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 6, - "Id": 937, - "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": 937 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Rank": 7, - "Id": 938, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 938 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Rank": 8, - "Id": 939, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "CommandName": "New-PnPSiteTemplateFromFolder", + "Id": 939 }, { - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Rank": 1, - "Id": 940, - "CommandName": "New-PnPTeamsApp" + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "CommandName": "New-PnPTeamsApp", + "Id": 940 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Rank": 1, - "Id": 941, - "CommandName": "New-PnPTeamsTeam" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "CommandName": "New-PnPTeamsTeam", + "Id": 941 }, { - "Command": "New-PnPTeamsTeam -GroupId $groupId", "Rank": 2, - "Id": 942, - "CommandName": "New-PnPTeamsTeam" + "Command": "New-PnPTeamsTeam -GroupId $groupId", + "CommandName": "New-PnPTeamsTeam", + "Id": 942 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "Rank": 3, - "Id": 943, - "CommandName": "New-PnPTeamsTeam" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "CommandName": "New-PnPTeamsTeam", + "Id": 943 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Rank": 4, - "Id": 944, - "CommandName": "New-PnPTeamsTeam" + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "CommandName": "New-PnPTeamsTeam", + "Id": 944 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", "Rank": 5, - "Id": 945, - "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": 945 }, { - "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": 946, - "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": 946 }, { - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 1, - "Id": 947, - "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": 947 }, { - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Rank": 2, - "Id": 948, - "CommandName": "New-PnPTenantSite" + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "CommandName": "New-PnPTenantSite", + "Id": 948 }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Rank": 1, - "Id": 949, - "CommandName": "New-PnPTerm" + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "CommandName": "New-PnPTerm", + "Id": 949 }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "Id": 950, - "CommandName": "New-PnPTerm" + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "New-PnPTerm", + "Id": 950 }, { - "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Rank": 1, - "Id": 951, - "CommandName": "New-PnPTermGroup" + "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "CommandName": "New-PnPTermGroup", + "Id": 951 }, { - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Rank": 1, - "Id": 952, - "CommandName": "New-PnPTermLabel" + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "CommandName": "New-PnPTermLabel", + "Id": 952 }, { - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Rank": 1, - "Id": 953, - "CommandName": "New-PnPTermSet" + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "CommandName": "New-PnPTermSet", + "Id": 953 }, { - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Rank": 1, - "Id": 954, - "CommandName": "New-PnPUPABulkImportJob" + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "CommandName": "New-PnPUPABulkImportJob", + "Id": 954 }, { - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", "Rank": 2, - "Id": 955, - "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": 955 }, { - "Command": "New-PnPUser -LoginName user@company.com", "Rank": 1, - "Id": 956, - "CommandName": "New-PnPUser" + "Command": "New-PnPUser -LoginName user@company.com", + "CommandName": "New-PnPUser", + "Id": 956 }, { - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Rank": 1, - "Id": 957, - "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": 957 }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Rank": 1, - "Id": 958, - "CommandName": "Publish-PnPApp" + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "CommandName": "Publish-PnPApp", + "Id": 958 }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Rank": 2, - "Id": 959, - "CommandName": "Publish-PnPApp" + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "CommandName": "Publish-PnPApp", + "Id": 959 }, { - "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": 960, - "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": 960 }, { - "Command": "Publish-PnPContentType -ContentType 0x0101", "Rank": 1, - "Id": 961, - "CommandName": "Publish-PnPContentType" + "Command": "Publish-PnPContentType -ContentType 0x0101", + "CommandName": "Publish-PnPContentType", + "Id": 961 }, { - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "Id": 962, - "CommandName": "Publish-PnPSyntexModel" + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "CommandName": "Publish-PnPSyntexModel", + "Id": 962 }, { - "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": 963, - "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": 963 }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp", "Rank": 1, - "Id": 964, - "CommandName": "Read-PnPSiteTemplate" + "Command": "Read-PnPSiteTemplate -Path template.pnp", + "CommandName": "Read-PnPSiteTemplate", + "Id": 964 }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Rank": 2, - "Id": 965, - "CommandName": "Read-PnPSiteTemplate" + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "CommandName": "Read-PnPSiteTemplate", + "Id": 965 }, { - "Command": "Read-PnPSiteTemplate -Xml $xml", "Rank": 3, - "Id": 966, - "CommandName": "Read-PnPSiteTemplate" + "Command": "Read-PnPSiteTemplate -Xml $xml", + "CommandName": "Read-PnPSiteTemplate", + "Id": 966 }, { - "Command": "Read-PnPTenantTemplate -Path template.pnp", "Rank": 1, - "Id": 967, - "CommandName": "Read-PnPTenantTemplate" + "Command": "Read-PnPTenantTemplate -Path template.pnp", + "CommandName": "Read-PnPTenantTemplate", + "Id": 967 }, { - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Rank": 1, - "Id": 968, - "CommandName": "Register-PnPAppCatalogSite" + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "CommandName": "Register-PnPAppCatalogSite", + "Id": 968 }, { - "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": 969, - "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": 969 }, { - "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": 970, - "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": 970 }, { - "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": 971, - "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": 971 }, { - "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": 972, - "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": 972 }, { - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Rank": 5, - "Id": 973, - "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": 973 }, { - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Rank": 6, - "Id": 974, - "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": 974 }, { - "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": 975, - "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": 975 }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "Id": 976, - "CommandName": "Register-PnPHubSite" + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Register-PnPHubSite", + "Id": 976 }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Rank": 2, - "Id": 977, - "CommandName": "Register-PnPHubSite" + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "CommandName": "Register-PnPHubSite", + "Id": 977 }, { - "Command": "Register-PnPManagementShellAccess", "Rank": 1, - "Id": 978, - "CommandName": "Register-PnPManagementShellAccess" + "Command": "Register-PnPManagementShellAccess", + "CommandName": "Register-PnPManagementShellAccess", + "Id": 978 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Rank": 2, - "Id": 979, - "CommandName": "Register-PnPManagementShellAccess" + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "CommandName": "Register-PnPManagementShellAccess", + "Id": 979 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Rank": 3, - "Id": 980, - "CommandName": "Register-PnPManagementShellAccess" + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "CommandName": "Register-PnPManagementShellAccess", + "Id": 980 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Rank": 1, - "Id": 981, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 981 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Rank": 2, - "Id": 982, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Id": 982 }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Rank": 1, - "Id": 983, - "CommandName": "Remove-PnPAlert" + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "CommandName": "Remove-PnPAlert", + "Id": 983 }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Rank": 2, - "Id": 984, - "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": 984 }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 985, - "CommandName": "Remove-PnPApp" + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Remove-PnPApp", + "Id": 985 }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 986, - "CommandName": "Remove-PnPApp" + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Remove-PnPApp", + "Id": 986 }, { - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "Id": 987, - "CommandName": "Remove-PnPApplicationCustomizer" + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 987 }, { - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "Id": 988, - "CommandName": "Remove-PnPApplicationCustomizer" + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Remove-PnPApplicationCustomizer", + "Id": 988 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Rank": 1, - "Id": 989, - "CommandName": "Remove-PnPAvailableSiteClassification" + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 989 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 2, - "Id": 990, - "CommandName": "Remove-PnPAvailableSiteClassification" + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "CommandName": "Remove-PnPAvailableSiteClassification", + "Id": 990 }, { - "Command": "Remove-PnPAzureADApp -Identity MyApp", "Rank": 1, - "Id": 991, - "CommandName": "Remove-PnPAzureADApp" + "Command": "Remove-PnPAzureADApp -Identity MyApp", + "CommandName": "Remove-PnPAzureADApp", + "Id": 991 }, { - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Rank": 2, - "Id": 992, - "CommandName": "Remove-PnPAzureADApp" + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "CommandName": "Remove-PnPAzureADApp", + "Id": 992 }, { - "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Rank": 1, - "Id": 993, - "CommandName": "Remove-PnPAzureADGroup" + "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "CommandName": "Remove-PnPAzureADGroup", + "Id": 993 }, { - "Command": "Remove-PnPAzureADGroup -Identity $group", "Rank": 2, - "Id": 994, - "CommandName": "Remove-PnPAzureADGroup" + "Command": "Remove-PnPAzureADGroup -Identity $group", + "CommandName": "Remove-PnPAzureADGroup", + "Id": 994 }, { - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 995, - "CommandName": "Remove-PnPAzureADGroupMember" + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPAzureADGroupMember", + "Id": 995 }, { - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 996, - "CommandName": "Remove-PnPAzureADGroupOwner" + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPAzureADGroupOwner", + "Id": 996 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Rank": 1, - "Id": 997, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 997 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Rank": 2, - "Id": 998, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 998 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Rank": 3, - "Id": 999, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 999 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Rank": 4, - "Id": 1000, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Id": 1000 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Rank": 1, - "Id": 1001, - "CommandName": "Remove-PnPContentType" + "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "CommandName": "Remove-PnPContentType", + "Id": 1001 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Rank": 2, - "Id": 1002, - "CommandName": "Remove-PnPContentType" + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "CommandName": "Remove-PnPContentType", + "Id": 1002 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Rank": 1, - "Id": 1003, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1003 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Rank": 2, - "Id": 1004, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Id": 1004 }, { - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Rank": 1, - "Id": 1005, - "CommandName": "Remove-PnPContentTypeFromList" + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "CommandName": "Remove-PnPContentTypeFromList", + "Id": 1005 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "Id": 1006, - "CommandName": "Remove-PnPCustomAction" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Remove-PnPCustomAction", + "Id": 1006 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Rank": 2, - "Id": 1007, - "CommandName": "Remove-PnPCustomAction" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "CommandName": "Remove-PnPCustomAction", + "Id": 1007 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Rank": 3, - "Id": 1008, - "CommandName": "Remove-PnPCustomAction" + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "CommandName": "Remove-PnPCustomAction", + "Id": 1008 }, { - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "Id": 1009, - "CommandName": "Remove-PnPDeletedMicrosoft365Group" + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Id": 1009 }, { - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 1, - "Id": 1010, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1010 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Rank": 2, - "Id": 1011, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1011 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Rank": 3, - "Id": 1012, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1012 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList", "Rank": 4, - "Id": 1013, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPEventReceiver -List ProjectList", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1013 }, { - "Command": "Remove-PnPEventReceiver", "Rank": 5, - "Id": 1014, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPEventReceiver", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1014 }, { - "Command": "Remove-PnPEventReceiver -Scope Site", "Rank": 6, - "Id": 1015, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPEventReceiver -Scope Site", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1015 }, { - "Command": "Remove-PnPEventReceiver -Scope Web", "Rank": 7, - "Id": 1016, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPEventReceiver -Scope Web", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1016 }, { - "Command": "Remove-PnPEventReceiver -Scope All", "Rank": 8, - "Id": 1017, - "CommandName": "Remove-PnPEventReceiver" + "Command": "Remove-PnPEventReceiver -Scope All", + "CommandName": "Remove-PnPEventReceiver", + "Id": 1017 }, { - "Command": "Remove-PnPField -Identity \"Speakers\"", "Rank": 1, - "Id": 1018, - "CommandName": "Remove-PnPField" + "Command": "Remove-PnPField -Identity \"Speakers\"", + "CommandName": "Remove-PnPField", + "Id": 1018 }, { - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Rank": 2, - "Id": 1019, - "CommandName": "Remove-PnPField" + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "CommandName": "Remove-PnPField", + "Id": 1019 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Rank": 1, - "Id": 1020, - "CommandName": "Remove-PnPFieldFromContentType" + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1020 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Rank": 2, - "Id": 1021, - "CommandName": "Remove-PnPFieldFromContentType" + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "CommandName": "Remove-PnPFieldFromContentType", + "Id": 1021 }, { - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Rank": 1, - "Id": 1022, - "CommandName": "Remove-PnPFile" + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPFile", + "Id": 1022 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Rank": 2, - "Id": 1023, - "CommandName": "Remove-PnPFile" + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "CommandName": "Remove-PnPFile", + "Id": 1023 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Rank": 3, - "Id": 1024, - "CommandName": "Remove-PnPFile" + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "CommandName": "Remove-PnPFile", + "Id": 1024 }, { - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Rank": 1, - "Id": 1025, - "CommandName": "Remove-PnPFileFromSiteTemplate" + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "CommandName": "Remove-PnPFileFromSiteTemplate", + "Id": 1025 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Rank": 1, - "Id": 1026, - "CommandName": "Remove-PnPFileSharingLink" + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1026 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Rank": 2, - "Id": 1027, - "CommandName": "Remove-PnPFileSharingLink" + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "CommandName": "Remove-PnPFileSharingLink", + "Id": 1027 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "Id": 1028, - "CommandName": "Remove-PnPFileVersion" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "CommandName": "Remove-PnPFileVersion", + "Id": 1028 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 2, - "Id": 1029, - "CommandName": "Remove-PnPFileVersion" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "CommandName": "Remove-PnPFileVersion", + "Id": 1029 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Rank": 3, - "Id": 1030, - "CommandName": "Remove-PnPFileVersion" + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "CommandName": "Remove-PnPFileVersion", + "Id": 1030 }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Rank": 1, - "Id": 1031, - "CommandName": "Remove-PnPFolder" + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "CommandName": "Remove-PnPFolder", + "Id": 1031 }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Rank": 2, - "Id": 1032, - "CommandName": "Remove-PnPFolder" + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "CommandName": "Remove-PnPFolder", + "Id": 1032 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Rank": 1, - "Id": 1033, - "CommandName": "Remove-PnPFolderSharingLink" + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1033 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Rank": 2, - "Id": 1034, - "CommandName": "Remove-PnPFolderSharingLink" + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "CommandName": "Remove-PnPFolderSharingLink", + "Id": 1034 }, { - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Rank": 1, - "Id": 1035, - "CommandName": "Remove-PnPGraphSubscription" + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "CommandName": "Remove-PnPGraphSubscription", + "Id": 1035 }, { - "Command": "Remove-PnPGroup -Identity \"My Users\"", "Rank": 1, - "Id": 1036, - "CommandName": "Remove-PnPGroup" + "Command": "Remove-PnPGroup -Identity \"My Users\"", + "CommandName": "Remove-PnPGroup", + "Id": 1036 }, { - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Rank": 1, - "Id": 1037, - "CommandName": "Remove-PnPGroupMember" + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "CommandName": "Remove-PnPGroupMember", + "Id": 1037 }, { - "Command": "Remove-PnPHomeSite", "Rank": 1, - "Id": 1038, - "CommandName": "Remove-PnPHomeSite" + "Command": "Remove-PnPHomeSite", + "CommandName": "Remove-PnPHomeSite", + "Id": 1038 }, { - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "Id": 1039, - "CommandName": "Remove-PnPHubSiteAssociation" + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "CommandName": "Remove-PnPHubSiteAssociation", + "Id": 1039 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Rank": 1, - "Id": 1040, - "CommandName": "Remove-PnPHubToHubAssociation" + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1040 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Rank": 2, - "Id": 1041, - "CommandName": "Remove-PnPHubToHubAssociation" + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "CommandName": "Remove-PnPHubToHubAssociation", + "Id": 1041 }, { - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Rank": 1, - "Id": 1042, - "CommandName": "Remove-PnPIndexedProperty" + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "CommandName": "Remove-PnPIndexedProperty", + "Id": 1042 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Rank": 1, - "Id": 1043, - "CommandName": "Remove-PnPJavaScriptLink" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1043 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Rank": 2, - "Id": 1044, - "CommandName": "Remove-PnPJavaScriptLink" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1044 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Rank": 3, - "Id": 1045, - "CommandName": "Remove-PnPJavaScriptLink" + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1045 }, { - "Command": "Remove-PnPJavaScriptLink -Scope Site", "Rank": 4, - "Id": 1046, - "CommandName": "Remove-PnPJavaScriptLink" + "Command": "Remove-PnPJavaScriptLink -Scope Site", + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1046 }, { - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Rank": 5, - "Id": 1047, - "CommandName": "Remove-PnPJavaScriptLink" + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "CommandName": "Remove-PnPJavaScriptLink", + "Id": 1047 }, { - "Command": "Remove-PnPKnowledgeHubSite", "Rank": 1, - "Id": 1048, - "CommandName": "Remove-PnPKnowledgeHubSite" + "Command": "Remove-PnPKnowledgeHubSite", + "CommandName": "Remove-PnPKnowledgeHubSite", + "Id": 1048 }, { - "Command": "Remove-PnPList -Identity Announcements", "Rank": 1, - "Id": 1049, - "CommandName": "Remove-PnPList" + "Command": "Remove-PnPList -Identity Announcements", + "CommandName": "Remove-PnPList", + "Id": 1049 }, { - "Command": "Remove-PnPList -Identity Announcements -Force", "Rank": 2, - "Id": 1050, - "CommandName": "Remove-PnPList" + "Command": "Remove-PnPList -Identity Announcements -Force", + "CommandName": "Remove-PnPList", + "Id": 1050 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle", "Rank": 3, - "Id": 1051, - "CommandName": "Remove-PnPList" + "Command": "Remove-PnPList -Identity Announcements -Recycle", + "CommandName": "Remove-PnPList", + "Id": 1051 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Rank": 4, - "Id": 1052, - "CommandName": "Remove-PnPList" + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "CommandName": "Remove-PnPList", + "Id": 1052 }, { - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 1053, - "CommandName": "Remove-PnPListDesign" + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPListDesign", + "Id": 1053 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Rank": 1, - "Id": 1054, - "CommandName": "Remove-PnPListItem" + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "CommandName": "Remove-PnPListItem", + "Id": 1054 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Rank": 2, - "Id": 1055, - "CommandName": "Remove-PnPListItem" + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "CommandName": "Remove-PnPListItem", + "Id": 1055 }, { - "Command": "Remove-PnPListItem -List \"Demo List\"", "Rank": 3, - "Id": 1056, - "CommandName": "Remove-PnPListItem" + "Command": "Remove-PnPListItem -List \"Demo List\"", + "CommandName": "Remove-PnPListItem", + "Id": 1056 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Rank": 1, - "Id": 1057, - "CommandName": "Remove-PnPListItemAttachment" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1057 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "Rank": 2, - "Id": 1058, - "CommandName": "Remove-PnPListItemAttachment" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1058 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Rank": 3, - "Id": 1059, - "CommandName": "Remove-PnPListItemAttachment" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1059 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Rank": 4, - "Id": 1060, - "CommandName": "Remove-PnPListItemAttachment" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1060 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Rank": 5, - "Id": 1061, - "CommandName": "Remove-PnPListItemAttachment" + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "CommandName": "Remove-PnPListItemAttachment", + "Id": 1061 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "Id": 1062, - "CommandName": "Remove-PnPListItemVersion" + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Remove-PnPListItemVersion", + "Id": 1062 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "Id": 1063, - "CommandName": "Remove-PnPListItemVersion" + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Remove-PnPListItemVersion", + "Id": 1063 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Rank": 1, - "Id": 1064, - "CommandName": "Remove-PnPMicrosoft365Group" + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1064 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Rank": 2, - "Id": 1065, - "CommandName": "Remove-PnPMicrosoft365Group" + "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "CommandName": "Remove-PnPMicrosoft365Group", + "Id": 1065 }, { - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1066, - "CommandName": "Remove-PnPMicrosoft365GroupMember" + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Id": 1066 }, { - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1067, - "CommandName": "Remove-PnPMicrosoft365GroupOwner" + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Id": 1067 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Rank": 1, - "Id": 1068, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1068 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Rank": 2, - "Id": 1069, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Id": 1069 }, { - "Command": "Remove-PnPNavigationNode -Identity 1032", "Rank": 1, - "Id": 1070, - "CommandName": "Remove-PnPNavigationNode" + "Command": "Remove-PnPNavigationNode -Identity 1032", + "CommandName": "Remove-PnPNavigationNode", + "Id": 1070 }, { - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Rank": 2, - "Id": 1071, - "CommandName": "Remove-PnPNavigationNode" + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "CommandName": "Remove-PnPNavigationNode", + "Id": 1071 }, { - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Rank": 3, - "Id": 1072, - "CommandName": "Remove-PnPNavigationNode" + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "CommandName": "Remove-PnPNavigationNode", + "Id": 1072 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Rank": 1, - "Id": 1073, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1073 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Rank": 2, - "Id": 1074, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1074 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Rank": 3, - "Id": 1075, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "CommandName": "Remove-PnPOrgAssetsLibrary", + "Id": 1075 }, { - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Rank": 1, - "Id": 1076, - "CommandName": "Remove-PnPOrgNewsSite" + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "CommandName": "Remove-PnPOrgNewsSite", + "Id": 1076 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\"", "Rank": 1, - "Id": 1077, - "CommandName": "Remove-PnPPage" + "Command": "Remove-PnPPage -Identity \"MyPage\"", + "CommandName": "Remove-PnPPage", + "Id": 1077 }, { - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Rank": 2, - "Id": 1078, - "CommandName": "Remove-PnPPage" + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "CommandName": "Remove-PnPPage", + "Id": 1078 }, { - "Command": "Remove-PnPPage $page", "Rank": 3, - "Id": 1079, - "CommandName": "Remove-PnPPage" + "Command": "Remove-PnPPage $page", + "CommandName": "Remove-PnPPage", + "Id": 1079 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Rank": 4, - "Id": 1080, - "CommandName": "Remove-PnPPage" + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "CommandName": "Remove-PnPPage", + "Id": 1080 }, { - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "Id": 1081, - "CommandName": "Remove-PnPPageComponent" + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Remove-PnPPageComponent", + "Id": 1081 }, { - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Rank": 1, - "Id": 1082, - "CommandName": "Remove-PnPPlannerBucket" + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "CommandName": "Remove-PnPPlannerBucket", + "Id": 1082 }, { - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Rank": 1, - "Id": 1083, - "CommandName": "Remove-PnPPlannerPlan" + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "CommandName": "Remove-PnPPlannerPlan", + "Id": 1083 }, { - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Rank": 1, - "Id": 1084, - "CommandName": "Remove-PnPPlannerRoster" + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "CommandName": "Remove-PnPPlannerRoster", + "Id": 1084 }, { - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1085, - "CommandName": "Remove-PnPPlannerRosterMember" + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPPlannerRosterMember", + "Id": 1085 }, { - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Rank": 1, - "Id": 1086, - "CommandName": "Remove-PnPPlannerTask" + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "CommandName": "Remove-PnPPlannerTask", + "Id": 1086 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Rank": 1, - "Id": 1087, - "CommandName": "Remove-PnPPropertyBagValue" + "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1087 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Rank": 2, - "Id": 1088, - "CommandName": "Remove-PnPPropertyBagValue" + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1088 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Rank": 3, - "Id": 1089, - "CommandName": "Remove-PnPPropertyBagValue" + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "CommandName": "Remove-PnPPropertyBagValue", + "Id": 1089 }, { - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Rank": 1, - "Id": 1090, - "CommandName": "Remove-PnPPublishingImageRendition" + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "CommandName": "Remove-PnPPublishingImageRendition", + "Id": 1090 }, { - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Rank": 1, - "Id": 1091, - "CommandName": "Remove-PnPRoleDefinition" + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "CommandName": "Remove-PnPRoleDefinition", + "Id": 1091 }, { - "Command": "Remove-PnPSdnProvider -Confirm:false", "Rank": 1, - "Id": 1092, - "CommandName": "Remove-PnPSdnProvider" + "Command": "Remove-PnPSdnProvider -Confirm:false", + "CommandName": "Remove-PnPSdnProvider", + "Id": 1092 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "Id": 1093, - "CommandName": "Remove-PnPSearchConfiguration" + "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1093 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "Id": 1094, - "CommandName": "Remove-PnPSearchConfiguration" + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1094 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "Id": 1095, - "CommandName": "Remove-PnPSearchConfiguration" + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1095 }, { - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "Id": 1096, - "CommandName": "Remove-PnPSearchConfiguration" + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Remove-PnPSearchConfiguration", + "Id": 1096 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1097, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1097 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 2, - "Id": 1098, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "CommandName": "Remove-PnPSiteCollectionAdmin", + "Id": 1098 }, { - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Rank": 1, - "Id": 1099, - "CommandName": "Remove-PnPSiteCollectionAppCatalog" + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Id": 1099 }, { - "Command": "Remove-PnPSiteCollectionTermStore", "Rank": 1, - "Id": 1100, - "CommandName": "Remove-PnPSiteCollectionTermStore" + "Command": "Remove-PnPSiteCollectionTermStore", + "CommandName": "Remove-PnPSiteCollectionTermStore", + "Id": 1100 }, { - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 1101, - "CommandName": "Remove-PnPSiteDesign" + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteDesign", + "Id": 1101 }, { - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 1102, - "CommandName": "Remove-PnPSiteDesignTask" + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteDesignTask", + "Id": 1102 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "Id": 1103, - "CommandName": "Remove-PnPSiteGroup" + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Remove-PnPSiteGroup", + "Id": 1103 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Rank": 2, - "Id": 1104, - "CommandName": "Remove-PnPSiteGroup" + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "CommandName": "Remove-PnPSiteGroup", + "Id": 1104 }, { - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Rank": 1, - "Id": 1105, - "CommandName": "Remove-PnPSiteScript" + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "CommandName": "Remove-PnPSiteScript", + "Id": 1105 }, { - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Rank": 1, - "Id": 1106, - "CommandName": "Remove-PnPSiteUserInvitations" + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "CommandName": "Remove-PnPSiteUserInvitations", + "Id": 1106 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey", "Rank": 1, - "Id": 1107, - "CommandName": "Remove-PnPStorageEntity" + "Command": "Remove-PnPStorageEntity -Key MyKey", + "CommandName": "Remove-PnPStorageEntity", + "Id": 1107 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Rank": 2, - "Id": 1108, - "CommandName": "Remove-PnPStorageEntity" + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "CommandName": "Remove-PnPStorageEntity", + "Id": 1108 }, { - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Rank": 1, - "Id": 1109, - "CommandName": "Remove-PnPStoredCredential" + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "CommandName": "Remove-PnPStoredCredential", + "Id": 1109 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Rank": 1, - "Id": 1110, - "CommandName": "Remove-PnPTaxonomyItem" + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1110 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Rank": 2, - "Id": 1111, - "CommandName": "Remove-PnPTaxonomyItem" + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "CommandName": "Remove-PnPTaxonomyItem", + "Id": 1111 }, { - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Rank": 1, - "Id": 1112, - "CommandName": "Remove-PnPTeamsApp" + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "CommandName": "Remove-PnPTeamsApp", + "Id": 1112 }, { - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Rank": 2, - "Id": 1113, - "CommandName": "Remove-PnPTeamsApp" + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "CommandName": "Remove-PnPTeamsApp", + "Id": 1113 }, { - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Rank": 1, - "Id": 1114, - "CommandName": "Remove-PnPTeamsChannel" + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "CommandName": "Remove-PnPTeamsChannel", + "Id": 1114 }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Rank": 1, - "Id": 1115, - "CommandName": "Remove-PnPTeamsChannelUser" + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1115 }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Rank": 2, - "Id": 1116, - "CommandName": "Remove-PnPTeamsChannelUser" + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1116 }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Rank": 3, - "Id": 1117, - "CommandName": "Remove-PnPTeamsChannelUser" + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "CommandName": "Remove-PnPTeamsChannelUser", + "Id": 1117 }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "Rank": 1, - "Id": 1118, - "CommandName": "Remove-PnPTeamsTab" + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "CommandName": "Remove-PnPTeamsTab", + "Id": 1118 }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "Rank": 2, - "Id": 1119, - "CommandName": "Remove-PnPTeamsTab" + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "CommandName": "Remove-PnPTeamsTab", + "Id": 1119 }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", "Rank": 3, - "Id": 1120, - "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": 1120 }, { - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Rank": 1, - "Id": 1121, - "CommandName": "Remove-PnPTeamsTag" + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "CommandName": "Remove-PnPTeamsTag", + "Id": 1121 }, { - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Rank": 1, - "Id": 1122, - "CommandName": "Remove-PnPTeamsTeam" + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1122 }, { - "Command": "Remove-PnPTeamsTeam -Identity testteam", "Rank": 2, - "Id": 1123, - "CommandName": "Remove-PnPTeamsTeam" + "Command": "Remove-PnPTeamsTeam -Identity testteam", + "CommandName": "Remove-PnPTeamsTeam", + "Id": 1123 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Rank": 1, - "Id": 1124, - "CommandName": "Remove-PnPTeamsUser" + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "CommandName": "Remove-PnPTeamsUser", + "Id": 1124 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 2, - "Id": 1125, - "CommandName": "Remove-PnPTeamsUser" + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Remove-PnPTeamsUser", + "Id": 1125 }, { - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Rank": 1, - "Id": 1126, - "CommandName": "Remove-PnPTenantCdnOrigin" + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "CommandName": "Remove-PnPTenantCdnOrigin", + "Id": 1126 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 1127, - "CommandName": "Remove-PnPTenantDeletedSite" + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1127 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "Id": 1128, - "CommandName": "Remove-PnPTenantDeletedSite" + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Remove-PnPTenantDeletedSite", + "Id": 1128 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 1129, - "CommandName": "Remove-PnPTenantSite" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Remove-PnPTenantSite", + "Id": 1129 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Rank": 2, - "Id": 1130, - "CommandName": "Remove-PnPTenantSite" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "CommandName": "Remove-PnPTenantSite", + "Id": 1130 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Rank": 3, - "Id": 1131, - "CommandName": "Remove-PnPTenantSite" + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "CommandName": "Remove-PnPTenantSite", + "Id": 1131 }, { - "Command": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, - "Id": 1132, - "CommandName": "Remove-PnPTenantSyncClientRestriction" + "Command": "Remove-PnPTenantSyncClientRestriction", + "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Id": 1132 }, { - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Rank": 1, - "Id": 1133, - "CommandName": "Remove-PnPTenantTheme" + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "CommandName": "Remove-PnPTenantTheme", + "Id": 1133 }, { - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "Id": 1134, - "CommandName": "Remove-PnPTerm" + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "CommandName": "Remove-PnPTerm", + "Id": 1134 }, { - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "Id": 1135, - "CommandName": "Remove-PnPTerm" + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Remove-PnPTerm", + "Id": 1135 }, { - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Rank": 1, - "Id": 1136, - "CommandName": "Remove-PnPTermGroup" + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "CommandName": "Remove-PnPTermGroup", + "Id": 1136 }, { - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Rank": 2, - "Id": 1137, - "CommandName": "Remove-PnPTermGroup" + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "CommandName": "Remove-PnPTermGroup", + "Id": 1137 }, { - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Rank": 3, - "Id": 1138, - "CommandName": "Remove-PnPTermGroup" + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "CommandName": "Remove-PnPTermGroup", + "Id": 1138 }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Rank": 1, - "Id": 1139, - "CommandName": "Remove-PnPTermLabel" + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "CommandName": "Remove-PnPTermLabel", + "Id": 1139 }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Rank": 2, - "Id": 1140, - "CommandName": "Remove-PnPTermLabel" + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "CommandName": "Remove-PnPTermLabel", + "Id": 1140 }, { - "Command": "Remove-PnPUser -Identity 23", "Rank": 1, - "Id": 1141, - "CommandName": "Remove-PnPUser" + "Command": "Remove-PnPUser -Identity 23", + "CommandName": "Remove-PnPUser", + "Id": 1141 }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "Rank": 2, - "Id": 1142, - "CommandName": "Remove-PnPUser" + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "CommandName": "Remove-PnPUser", + "Id": 1142 }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Rank": 3, - "Id": 1143, - "CommandName": "Remove-PnPUser" + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "CommandName": "Remove-PnPUser", + "Id": 1143 }, { - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Rank": 1, - "Id": 1144, - "CommandName": "Remove-PnPUserInfo" + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "CommandName": "Remove-PnPUserInfo", + "Id": 1144 }, { - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Rank": 1, - "Id": 1145, - "CommandName": "Remove-PnPUserProfile" + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "CommandName": "Remove-PnPUserProfile", + "Id": 1145 }, { - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Rank": 1, - "Id": 1146, - "CommandName": "Remove-PnPView" + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "CommandName": "Remove-PnPView", + "Id": 1146 }, { - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Rank": 1, - "Id": 1147, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE" + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Id": 1147 }, { - "Command": "Remove-PnPWeb -Identity projectA", "Rank": 1, - "Id": 1148, - "CommandName": "Remove-PnPWeb" + "Command": "Remove-PnPWeb -Identity projectA", + "CommandName": "Remove-PnPWeb", + "Id": 1148 }, { - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Rank": 2, - "Id": 1149, - "CommandName": "Remove-PnPWeb" + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "CommandName": "Remove-PnPWeb", + "Id": 1149 }, { - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Rank": 1, - "Id": 1150, - "CommandName": "Remove-PnPWebhookSubscription" + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "CommandName": "Remove-PnPWebhookSubscription", + "Id": 1150 }, { - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Rank": 1, - "Id": 1151, - "CommandName": "Remove-PnPWebPart" + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "CommandName": "Remove-PnPWebPart", + "Id": 1151 }, { - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Rank": 2, - "Id": 1152, - "CommandName": "Remove-PnPWebPart" + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "CommandName": "Remove-PnPWebPart", + "Id": 1152 }, { - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Rank": 1, - "Id": 1153, - "CommandName": "Remove-PnPWikiPage" + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "CommandName": "Remove-PnPWikiPage", + "Id": 1153 }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Rank": 1, - "Id": 1154, - "CommandName": "Rename-PnPFile" + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "CommandName": "Rename-PnPFile", + "Id": 1154 }, { - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Rank": 2, - "Id": 1155, - "CommandName": "Rename-PnPFile" + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "CommandName": "Rename-PnPFile", + "Id": 1155 }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Rank": 3, - "Id": 1156, - "CommandName": "Rename-PnPFile" + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "CommandName": "Rename-PnPFile", + "Id": 1156 }, { - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Rank": 1, - "Id": 1157, - "CommandName": "Rename-PnPFolder" + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "CommandName": "Rename-PnPFolder", + "Id": 1157 }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "Id": 1158, - "CommandName": "Repair-PnPSite" + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Repair-PnPSite", + "Id": 1158 }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "Id": 1159, - "CommandName": "Repair-PnPSite" + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "CommandName": "Repair-PnPSite", + "Id": 1159 }, { - "Command": "Request-PnPAccessToken", "Rank": 1, - "Id": 1160, - "CommandName": "Request-PnPAccessToken" + "Command": "Request-PnPAccessToken", + "CommandName": "Request-PnPAccessToken", + "Id": 1160 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Rank": 2, - "Id": 1161, - "CommandName": "Request-PnPAccessToken" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "CommandName": "Request-PnPAccessToken", + "Id": 1161 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "Rank": 3, - "Id": 1162, - "CommandName": "Request-PnPAccessToken" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "CommandName": "Request-PnPAccessToken", + "Id": 1162 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Rank": 4, - "Id": 1163, - "CommandName": "Request-PnPAccessToken" + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "CommandName": "Request-PnPAccessToken", + "Id": 1163 }, { - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Rank": 1, - "Id": 1164, - "CommandName": "Request-PnPPersonalSite" + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "CommandName": "Request-PnPPersonalSite", + "Id": 1164 }, { - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Rank": 2, - "Id": 1165, - "CommandName": "Request-PnPPersonalSite" + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "CommandName": "Request-PnPPersonalSite", + "Id": 1165 }, { - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Rank": 1, - "Id": 1166, - "CommandName": "Request-PnPReIndexList" + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "CommandName": "Request-PnPReIndexList", + "Id": 1166 }, { - "Command": "Request-PnPReIndexWeb", "Rank": 1, - "Id": 1167, - "CommandName": "Request-PnPReIndexWeb" + "Command": "Request-PnPReIndexWeb", + "CommandName": "Request-PnPReIndexWeb", + "Id": 1167 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Rank": 1, - "Id": 1168, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1168 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Rank": 2, - "Id": 1169, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1169 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Rank": 3, - "Id": 1170, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Id": 1170 }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Rank": 1, - "Id": 1171, - "CommandName": "Reset-PnPFileVersion" + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "CommandName": "Reset-PnPFileVersion", + "Id": 1171 }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Rank": 2, - "Id": 1172, - "CommandName": "Reset-PnPFileVersion" + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "CommandName": "Reset-PnPFileVersion", + "Id": 1172 }, { - "Command": "Reset-PnPLabel -List \"Demo List\"", "Rank": 1, - "Id": 1173, - "CommandName": "Reset-PnPLabel" + "Command": "Reset-PnPLabel -List \"Demo List\"", + "CommandName": "Reset-PnPLabel", + "Id": 1173 }, { - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Rank": 2, - "Id": 1174, - "CommandName": "Reset-PnPLabel" + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "CommandName": "Reset-PnPLabel", + "Id": 1174 }, { - "Command": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, - "Id": 1175, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration" + "Command": "Reset-PnPMicrosoft365GroupExpiration", + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1175 }, { - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Rank": 1, - "Id": 1176, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Id": 1176 }, { - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Rank": 1, - "Id": 1177, - "CommandName": "Resolve-PnPFolder" + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "CommandName": "Resolve-PnPFolder", + "Id": 1177 }, { - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Rank": 1, - "Id": 1178, - "CommandName": "Restore-PnPDeletedMicrosoft365Group" + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Id": 1178 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Rank": 1, - "Id": 1179, - "CommandName": "Restore-PnPFileVersion" + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "CommandName": "Restore-PnPFileVersion", + "Id": 1179 }, { - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Rank": 2, - "Id": 1180, - "CommandName": "Restore-PnPFileVersion" + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "CommandName": "Restore-PnPFileVersion", + "Id": 1180 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Rank": 3, - "Id": 1181, - "CommandName": "Restore-PnPFileVersion" + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "CommandName": "Restore-PnPFileVersion", + "Id": 1181 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Rank": 1, - "Id": 1182, - "CommandName": "Restore-PnPListItemVersion" + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "CommandName": "Restore-PnPListItemVersion", + "Id": 1182 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Rank": 2, - "Id": 1183, - "CommandName": "Restore-PnPListItemVersion" + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "CommandName": "Restore-PnPListItemVersion", + "Id": 1183 }, { - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Rank": 1, - "Id": 1184, - "CommandName": "Restore-PnPRecycleBinItem" + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "CommandName": "Restore-PnPRecycleBinItem", + "Id": 1184 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 1185, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1185 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Rank": 2, - "Id": 1186, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "CommandName": "Restore-PnPTenantRecycleBinItem", + "Id": 1186 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Rank": 1, - "Id": 1187, - "CommandName": "Restore-PnPTenantSite" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "CommandName": "Restore-PnPTenantSite", + "Id": 1187 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Rank": 2, - "Id": 1188, - "CommandName": "Restore-PnPTenantSite" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "CommandName": "Restore-PnPTenantSite", + "Id": 1188 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Rank": 3, - "Id": 1189, - "CommandName": "Restore-PnPTenantSite" + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "CommandName": "Restore-PnPTenantSite", + "Id": 1189 }, { - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Rank": 1, - "Id": 1190, - "CommandName": "Revoke-PnPAzureADAppSitePermission" + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Id": 1190 }, { - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "Id": 1191, - "CommandName": "Revoke-PnPHubSiteRights" + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Revoke-PnPHubSiteRights", + "Id": 1191 }, { - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Rank": 1, - "Id": 1192, - "CommandName": "Revoke-PnPSiteDesignRights" + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "CommandName": "Revoke-PnPSiteDesignRights", + "Id": 1192 }, { - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Rank": 1, - "Id": 1193, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission" + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Id": 1193 }, { - "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Rank": 1, - "Id": 1194, - "CommandName": "Revoke-PnPUserSession" + "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "CommandName": "Revoke-PnPUserSession", + "Id": 1194 }, { - "Command": "Save-PnPPageConversionLog", "Rank": 1, - "Id": 1195, - "CommandName": "Save-PnPPageConversionLog" + "Command": "Save-PnPPageConversionLog", + "CommandName": "Save-PnPPageConversionLog", + "Id": 1195 }, { - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Rank": 1, - "Id": 1196, - "CommandName": "Save-PnPSiteTemplate" + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "CommandName": "Save-PnPSiteTemplate", + "Id": 1196 }, { - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Rank": 1, - "Id": 1197, - "CommandName": "Save-PnPTenantTemplate" + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "CommandName": "Save-PnPTenantTemplate", + "Id": 1197 }, { - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 1, - "Id": 1198, - "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": 1198 }, { - "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": 1199, - "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": 1199 }, { - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Rank": 3, - "Id": 1200, - "CommandName": "Send-PnPMail" + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "CommandName": "Send-PnPMail", + "Id": 1200 }, { - "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": 1201, - "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": 1201 }, { - "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": 1202, - "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": 1202 }, { - "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": 1203, - "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": 1203 }, { - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Rank": 1, - "Id": 1204, - "CommandName": "Set-PnPAdaptiveScopeProperty" + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "CommandName": "Set-PnPAdaptiveScopeProperty", + "Id": 1204 }, { - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Rank": 1, - "Id": 1205, - "CommandName": "Set-PnPApplicationCustomizer" + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "CommandName": "Set-PnPApplicationCustomizer", + "Id": 1205 }, { - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", "Rank": 2, - "Id": 1206, - "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": 1206 }, { - "Command": "Set-PnPAppSideLoading -On", "Rank": 1, - "Id": 1207, - "CommandName": "Set-PnPAppSideLoading" + "Command": "Set-PnPAppSideLoading -On", + "CommandName": "Set-PnPAppSideLoading", + "Id": 1207 }, { - "Command": "Set-PnPAppSideLoading -Off", "Rank": 2, - "Id": 1208, - "CommandName": "Set-PnPAppSideLoading" + "Command": "Set-PnPAppSideLoading -Off", + "CommandName": "Set-PnPAppSideLoading", + "Id": 1208 }, { - "Command": "Set-PnPAuditing -EnableAll", "Rank": 1, - "Id": 1209, - "CommandName": "Set-PnPAuditing" + "Command": "Set-PnPAuditing -EnableAll", + "CommandName": "Set-PnPAuditing", + "Id": 1209 }, { - "Command": "Set-PnPAuditing -DisableAll", "Rank": 2, - "Id": 1210, - "CommandName": "Set-PnPAuditing" + "Command": "Set-PnPAuditing -DisableAll", + "CommandName": "Set-PnPAuditing", + "Id": 1210 }, { - "Command": "Set-PnPAuditing -RetentionTime 7", "Rank": 3, - "Id": 1211, - "CommandName": "Set-PnPAuditing" + "Command": "Set-PnPAuditing -RetentionTime 7", + "CommandName": "Set-PnPAuditing", + "Id": 1211 }, { - "Command": "Set-PnPAuditing -TrimAuditLog", "Rank": 4, - "Id": 1212, - "CommandName": "Set-PnPAuditing" + "Command": "Set-PnPAuditing -TrimAuditLog", + "CommandName": "Set-PnPAuditing", + "Id": 1212 }, { - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Rank": 5, - "Id": 1213, - "CommandName": "Set-PnPAuditing" + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "CommandName": "Set-PnPAuditing", + "Id": 1213 }, { - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Rank": 1, - "Id": 1214, - "CommandName": "Set-PnPAvailablePageLayouts" + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "CommandName": "Set-PnPAvailablePageLayouts", + "Id": 1214 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Rank": 1, - "Id": 1215, - "CommandName": "Set-PnPAzureADAppSitePermission" + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1215 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Rank": 2, - "Id": 1216, - "CommandName": "Set-PnPAzureADAppSitePermission" + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "CommandName": "Set-PnPAzureADAppSitePermission", + "Id": 1216 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "Id": 1217, - "CommandName": "Set-PnPAzureADGroup" + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPAzureADGroup", + "Id": 1217 }, { - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "Id": 1218, - "CommandName": "Set-PnPAzureADGroup" + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPAzureADGroup", + "Id": 1218 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Rank": 3, - "Id": 1219, - "CommandName": "Set-PnPAzureADGroup" + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPAzureADGroup", + "Id": 1219 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Rank": 1, - "Id": 1220, - "CommandName": "Set-PnPBrowserIdleSignout" + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1220 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Rank": 2, - "Id": 1221, - "CommandName": "Set-PnPBrowserIdleSignout" + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1221 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Rank": 3, - "Id": 1222, - "CommandName": "Set-PnPBrowserIdleSignout" + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "CommandName": "Set-PnPBrowserIdleSignout", + "Id": 1222 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Rank": 1, - "Id": 1223, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1223 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Rank": 2, - "Id": 1224, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Id": 1224 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Rank": 1, - "Id": 1225, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1225 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Rank": 2, - "Id": 1226, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1226 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Rank": 3, - "Id": 1227, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1227 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Rank": 4, - "Id": 1228, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Id": 1228 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 1, - "Id": 1229, - "CommandName": "Set-PnPContentType" + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "CommandName": "Set-PnPContentType", + "Id": 1229 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Rank": 2, - "Id": 1230, - "CommandName": "Set-PnPContentType" + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "CommandName": "Set-PnPContentType", + "Id": 1230 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Rank": 3, - "Id": 1231, - "CommandName": "Set-PnPContentType" + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "CommandName": "Set-PnPContentType", + "Id": 1231 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 4, - "Id": 1232, - "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": 1232 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Rank": 5, - "Id": 1233, - "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": 1233 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Rank": 1, - "Id": 1234, - "CommandName": "Set-PnPDefaultColumnValues" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1234 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Rank": 2, - "Id": 1235, - "CommandName": "Set-PnPDefaultColumnValues" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1235 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Rank": 3, - "Id": 1236, - "CommandName": "Set-PnPDefaultColumnValues" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1236 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Rank": 4, - "Id": 1237, - "CommandName": "Set-PnPDefaultColumnValues" + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "CommandName": "Set-PnPDefaultColumnValues", + "Id": 1237 }, { - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Rank": 1, - "Id": 1238, - "CommandName": "Set-PnPDefaultContentTypeToList" + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "CommandName": "Set-PnPDefaultContentTypeToList", + "Id": 1238 }, { - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Rank": 1, - "Id": 1239, - "CommandName": "Set-PnPDefaultPageLayout" + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1239 }, { - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Rank": 2, - "Id": 1240, - "CommandName": "Set-PnPDefaultPageLayout" + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1240 }, { - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Rank": 3, - "Id": 1241, - "CommandName": "Set-PnPDefaultPageLayout" + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "CommandName": "Set-PnPDefaultPageLayout", + "Id": 1241 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Rank": 1, - "Id": 1242, - "CommandName": "Set-PnPDisableSpacesActivation" + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1242 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 2, - "Id": 1243, - "CommandName": "Set-PnPDisableSpacesActivation" + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1243 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Rank": 3, - "Id": 1244, - "CommandName": "Set-PnPDisableSpacesActivation" + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "CommandName": "Set-PnPDisableSpacesActivation", + "Id": 1244 }, { - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Rank": 1, - "Id": 1245, - "CommandName": "Set-PnPDocumentSetField" + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "CommandName": "Set-PnPDocumentSetField", + "Id": 1245 }, { - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Rank": 2, - "Id": 1246, - "CommandName": "Set-PnPDocumentSetField" + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "CommandName": "Set-PnPDocumentSetField", + "Id": 1246 }, { - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "Rank": 1, - "Id": 1247, - "CommandName": "Set-PnPField" + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "CommandName": "Set-PnPField", + "Id": 1247 }, { - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Rank": 2, - "Id": 1248, - "CommandName": "Set-PnPField" + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "CommandName": "Set-PnPField", + "Id": 1248 }, { - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Rank": 3, - "Id": 1249, - "CommandName": "Set-PnPField" + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "CommandName": "Set-PnPField", + "Id": 1249 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Rank": 1, - "Id": 1250, - "CommandName": "Set-PnPFileCheckedIn" + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1250 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Rank": 2, - "Id": 1251, - "CommandName": "Set-PnPFileCheckedIn" + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "CommandName": "Set-PnPFileCheckedIn", + "Id": 1251 }, { - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Rank": 1, - "Id": 1252, - "CommandName": "Set-PnPFileCheckedOut" + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "CommandName": "Set-PnPFileCheckedOut", + "Id": 1252 }, { - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "Id": 1253, - "CommandName": "Set-PnPFolderPermission" + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPFolderPermission", + "Id": 1253 }, { - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "Id": 1254, - "CommandName": "Set-PnPFolderPermission" + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPFolderPermission", + "Id": 1254 }, { - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "Id": 1255, - "CommandName": "Set-PnPFolderPermission" + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "CommandName": "Set-PnPFolderPermission", + "Id": 1255 }, { - "Command": "Set-PnPFooter -Enabled:$true", "Rank": 1, - "Id": 1256, - "CommandName": "Set-PnPFooter" + "Command": "Set-PnPFooter -Enabled:$true", + "CommandName": "Set-PnPFooter", + "Id": 1256 }, { - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Rank": 2, - "Id": 1257, - "CommandName": "Set-PnPFooter" + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "CommandName": "Set-PnPFooter", + "Id": 1257 }, { - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Rank": 3, - "Id": 1258, - "CommandName": "Set-PnPFooter" + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "CommandName": "Set-PnPFooter", + "Id": 1258 }, { - "Command": "Set-PnPFooter -LogoUrl \"\"", "Rank": 4, - "Id": 1259, - "CommandName": "Set-PnPFooter" + "Command": "Set-PnPFooter -LogoUrl \"\"", + "CommandName": "Set-PnPFooter", + "Id": 1259 }, { - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Rank": 1, - "Id": 1260, - "CommandName": "Set-PnPGraphSubscription" + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "CommandName": "Set-PnPGraphSubscription", + "Id": 1260 }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Rank": 1, - "Id": 1261, - "CommandName": "Set-PnPGroup" + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "CommandName": "Set-PnPGroup", + "Id": 1261 }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Rank": 2, - "Id": 1262, - "CommandName": "Set-PnPGroup" + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "CommandName": "Set-PnPGroup", + "Id": 1262 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Rank": 1, - "Id": 1263, - "CommandName": "Set-PnPGroupPermissions" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "CommandName": "Set-PnPGroupPermissions", + "Id": 1263 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Rank": 2, - "Id": 1264, - "CommandName": "Set-PnPGroupPermissions" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "CommandName": "Set-PnPGroupPermissions", + "Id": 1264 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Rank": 3, - "Id": 1265, - "CommandName": "Set-PnPGroupPermissions" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "CommandName": "Set-PnPGroupPermissions", + "Id": 1265 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Rank": 4, - "Id": 1266, - "CommandName": "Set-PnPGroupPermissions" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "CommandName": "Set-PnPGroupPermissions", + "Id": 1266 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Rank": 5, - "Id": 1267, - "CommandName": "Set-PnPGroupPermissions" + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "CommandName": "Set-PnPGroupPermissions", + "Id": 1267 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Rank": 1, - "Id": 1268, - "CommandName": "Set-PnPHideDefaultThemes" + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1268 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Rank": 2, - "Id": 1269, - "CommandName": "Set-PnPHideDefaultThemes" + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "CommandName": "Set-PnPHideDefaultThemes", + "Id": 1269 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Rank": 1, - "Id": 1270, - "CommandName": "Set-PnPHomePage" + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "CommandName": "Set-PnPHomePage", + "Id": 1270 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Rank": 2, - "Id": 1271, - "CommandName": "Set-PnPHomePage" + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "CommandName": "Set-PnPHomePage", + "Id": 1271 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Rank": 1, - "Id": 1272, - "CommandName": "Set-PnPHomeSite" + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "CommandName": "Set-PnPHomeSite", + "Id": 1272 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Rank": 2, - "Id": 1273, - "CommandName": "Set-PnPHomeSite" + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "CommandName": "Set-PnPHomeSite", + "Id": 1273 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "Rank": 1, - "Id": 1274, - "CommandName": "Set-PnPHubSite" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "CommandName": "Set-PnPHubSite", + "Id": 1274 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "Rank": 2, - "Id": 1275, - "CommandName": "Set-PnPHubSite" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "CommandName": "Set-PnPHubSite", + "Id": 1275 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Rank": 3, - "Id": 1276, - "CommandName": "Set-PnPHubSite" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "CommandName": "Set-PnPHubSite", + "Id": 1276 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Rank": 4, - "Id": 1277, - "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": 1277 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Rank": 5, - "Id": 1278, - "CommandName": "Set-PnPHubSite" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "CommandName": "Set-PnPHubSite", + "Id": 1278 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Rank": 6, - "Id": 1279, - "CommandName": "Set-PnPHubSite" + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "CommandName": "Set-PnPHubSite", + "Id": 1279 }, { - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Rank": 1, - "Id": 1280, - "CommandName": "Set-PnPImageListItemColumn" + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1280 }, { - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Rank": 2, - "Id": 1281, - "CommandName": "Set-PnPImageListItemColumn" + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "CommandName": "Set-PnPImageListItemColumn", + "Id": 1281 }, { - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Rank": 1, - "Id": 1282, - "CommandName": "Set-PnPIndexedProperties" + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "CommandName": "Set-PnPIndexedProperties", + "Id": 1282 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Rank": 1, - "Id": 1283, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1283 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Rank": 2, - "Id": 1284, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "CommandName": "Set-PnPInPlaceRecordsManagement", + "Id": 1284 }, { - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Rank": 1, - "Id": 1285, - "CommandName": "Set-PnPKnowledgeHubSite" + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "CommandName": "Set-PnPKnowledgeHubSite", + "Id": 1285 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Rank": 1, - "Id": 1286, - "CommandName": "Set-PnPLabel" + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "CommandName": "Set-PnPLabel", + "Id": 1286 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Rank": 2, - "Id": 1287, - "CommandName": "Set-PnPLabel" + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "CommandName": "Set-PnPLabel", + "Id": 1287 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Rank": 1, - "Id": 1288, - "CommandName": "Set-PnPList" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "CommandName": "Set-PnPList", + "Id": 1288 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Rank": 2, - "Id": 1289, - "CommandName": "Set-PnPList" + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "CommandName": "Set-PnPList", + "Id": 1289 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Rank": 3, - "Id": 1290, - "CommandName": "Set-PnPList" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "CommandName": "Set-PnPList", + "Id": 1290 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Rank": 4, - "Id": 1291, - "CommandName": "Set-PnPList" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "CommandName": "Set-PnPList", + "Id": 1291 }, { - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Rank": 5, - "Id": 1292, - "CommandName": "Set-PnPList" + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "CommandName": "Set-PnPList", + "Id": 1292 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Rank": 6, - "Id": 1293, - "CommandName": "Set-PnPList" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "CommandName": "Set-PnPList", + "Id": 1293 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Rank": 7, - "Id": 1294, - "CommandName": "Set-PnPList" + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "CommandName": "Set-PnPList", + "Id": 1294 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Rank": 8, - "Id": 1295, - "CommandName": "Set-PnPList" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "CommandName": "Set-PnPList", + "Id": 1295 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Rank": 9, - "Id": 1296, - "CommandName": "Set-PnPList" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "CommandName": "Set-PnPList", + "Id": 1296 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Rank": 10, - "Id": 1297, - "CommandName": "Set-PnPList" + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "CommandName": "Set-PnPList", + "Id": 1297 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Rank": 11, - "Id": 1298, - "CommandName": "Set-PnPList" + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "CommandName": "Set-PnPList", + "Id": 1298 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Rank": 1, - "Id": 1299, - "CommandName": "Set-PnPListInformationRightsManagement" + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1299 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Rank": 2, - "Id": 1300, - "CommandName": "Set-PnPListInformationRightsManagement" + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "CommandName": "Set-PnPListInformationRightsManagement", + "Id": 1300 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 1, - "Id": 1301, - "CommandName": "Set-PnPListItem" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem", + "Id": 1301 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 2, - "Id": 1302, - "CommandName": "Set-PnPListItem" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem", + "Id": 1302 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Rank": 3, - "Id": 1303, - "CommandName": "Set-PnPListItem" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "CommandName": "Set-PnPListItem", + "Id": 1303 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Rank": 4, - "Id": 1304, - "CommandName": "Set-PnPListItem" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "CommandName": "Set-PnPListItem", + "Id": 1304 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Rank": 5, - "Id": 1305, - "CommandName": "Set-PnPListItem" + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "CommandName": "Set-PnPListItem", + "Id": 1305 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "Id": 1306, - "CommandName": "Set-PnPListItemAsRecord" + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1306 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Rank": 2, - "Id": 1307, - "CommandName": "Set-PnPListItemAsRecord" + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "CommandName": "Set-PnPListItemAsRecord", + "Id": 1307 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "Id": 1308, - "CommandName": "Set-PnPListItemPermission" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPListItemPermission", + "Id": 1308 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "Id": 1309, - "CommandName": "Set-PnPListItemPermission" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPListItemPermission", + "Id": 1309 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Rank": 3, - "Id": 1310, - "CommandName": "Set-PnPListItemPermission" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "CommandName": "Set-PnPListItemPermission", + "Id": 1310 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Rank": 4, - "Id": 1311, - "CommandName": "Set-PnPListItemPermission" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "CommandName": "Set-PnPListItemPermission", + "Id": 1311 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Rank": 5, - "Id": 1312, - "CommandName": "Set-PnPListItemPermission" + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "CommandName": "Set-PnPListItemPermission", + "Id": 1312 }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Rank": 1, - "Id": 1313, - "CommandName": "Set-PnPListPermission" + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "CommandName": "Set-PnPListPermission", + "Id": 1313 }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Rank": 2, - "Id": 1314, - "CommandName": "Set-PnPListPermission" + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "CommandName": "Set-PnPListPermission", + "Id": 1314 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Rank": 1, - "Id": 1315, - "CommandName": "Set-PnPListRecordDeclaration" + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1315 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Rank": 2, - "Id": 1316, - "CommandName": "Set-PnPListRecordDeclaration" + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "CommandName": "Set-PnPListRecordDeclaration", + "Id": 1316 }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 1, - "Id": 1317, - "CommandName": "Set-PnPMasterPage" + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", + "Id": 1317 }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Rank": 2, - "Id": 1318, - "CommandName": "Set-PnPMasterPage" + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", + "Id": 1318 }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 3, - "Id": 1319, - "CommandName": "Set-PnPMasterPage" + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", + "Id": 1319 }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Rank": 4, - "Id": 1320, - "CommandName": "Set-PnPMasterPage" + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "CommandName": "Set-PnPMasterPage", + "Id": 1320 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Rank": 1, - "Id": 1321, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1321 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1322, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1322 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, - "Id": 1323, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1323 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Rank": 1, - "Id": 1324, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1324 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1325, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1325 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, - "Id": 1326, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1326 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Rank": 1, - "Id": 1327, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1327 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1328, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1328 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, - "Id": 1329, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1329 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Rank": 1, - "Id": 1330, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1330 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1331, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1331 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, - "Id": 1332, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1332 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Rank": 1, - "Id": 1333, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1333 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1334, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1334 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, - "Id": 1335, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1335 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Rank": 1, - "Id": 1336, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1336 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Rank": 2, - "Id": 1337, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1337 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, - "Id": 1338, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1338 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Rank": 1, - "Id": 1339, - "CommandName": "Set-PnPMicrosoft365Group" + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1339 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Rank": 2, - "Id": 1340, - "CommandName": "Set-PnPMicrosoft365Group" + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1340 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Rank": 3, - "Id": 1341, - "CommandName": "Set-PnPMicrosoft365Group" + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1341 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Rank": 4, - "Id": 1342, - "CommandName": "Set-PnPMicrosoft365Group" + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1342 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Rank": 5, - "Id": 1343, - "CommandName": "Set-PnPMicrosoft365Group" + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1343 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Rank": 6, - "Id": 1344, - "CommandName": "Set-PnPMicrosoft365Group" + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "CommandName": "Set-PnPMicrosoft365Group", + "Id": 1344 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Rank": 1, - "Id": 1345, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1345 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Rank": 2, - "Id": 1346, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Id": 1346 }, { - "Command": "Set-PnPMinimalDownloadStrategy -Off", "Rank": 1, - "Id": 1347, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "Command": "Set-PnPMinimalDownloadStrategy -Off", + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1347 }, { - "Command": "Set-PnPMinimalDownloadStrategy -On", "Rank": 2, - "Id": 1348, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "Command": "Set-PnPMinimalDownloadStrategy -On", + "CommandName": "Set-PnPMinimalDownloadStrategy", + "Id": 1348 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Rank": 1, - "Id": 1349, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "CommandName": "Set-PnPPage", + "Id": 1349 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Rank": 2, - "Id": 1350, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "CommandName": "Set-PnPPage", + "Id": 1350 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Rank": 3, - "Id": 1351, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "CommandName": "Set-PnPPage", + "Id": 1351 }, { - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Rank": 4, - "Id": 1352, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "CommandName": "Set-PnPPage", + "Id": 1352 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Rank": 5, - "Id": 1353, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "CommandName": "Set-PnPPage", + "Id": 1353 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Rank": 6, - "Id": 1354, - "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": 1354 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Rank": 7, - "Id": 1355, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "CommandName": "Set-PnPPage", + "Id": 1355 }, { - "Command": "Set-PnPPage -Name \"NewPage\" -Translate", "Rank": 8, - "Id": 1356, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPPage -Name \"NewPage\" -Translate", + "CommandName": "Set-PnPPage", + "Id": 1356 }, { - "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Rank": 9, - "Id": 1357, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "CommandName": "Set-PnPPage", + "Id": 1357 }, { - "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Rank": 10, - "Id": 1358, - "CommandName": "Set-PnPPage" + "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "CommandName": "Set-PnPPage", + "Id": 1358 }, { - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Rank": 1, - "Id": 1359, - "CommandName": "Set-PnPPageTextPart" + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "CommandName": "Set-PnPPageTextPart", + "Id": 1359 }, { - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "Rank": 1, - "Id": 1360, - "CommandName": "Set-PnPPageWebPart" + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "CommandName": "Set-PnPPageWebPart", + "Id": 1360 }, { - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Rank": 2, - "Id": 1361, - "CommandName": "Set-PnPPageWebPart" + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "CommandName": "Set-PnPPageWebPart", + "Id": 1361 }, { - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Rank": 1, - "Id": 1362, - "CommandName": "Set-PnPPlannerBucket" + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "CommandName": "Set-PnPPlannerBucket", + "Id": 1362 }, { - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Rank": 1, - "Id": 1363, - "CommandName": "Set-PnPPlannerConfiguration" + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1363 }, { - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Rank": 2, - "Id": 1364, - "CommandName": "Set-PnPPlannerConfiguration" + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "CommandName": "Set-PnPPlannerConfiguration", + "Id": 1364 }, { - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Rank": 1, - "Id": 1365, - "CommandName": "Set-PnPPlannerPlan" + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "CommandName": "Set-PnPPlannerPlan", + "Id": 1365 }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Rank": 1, - "Id": 1366, - "CommandName": "Set-PnPPlannerTask" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "CommandName": "Set-PnPPlannerTask", + "Id": 1366 }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Rank": 2, - "Id": 1367, - "CommandName": "Set-PnPPlannerTask" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "CommandName": "Set-PnPPlannerTask", + "Id": 1367 }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Rank": 3, - "Id": 1368, - "CommandName": "Set-PnPPlannerTask" + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "CommandName": "Set-PnPPlannerTask", + "Id": 1368 }, { - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Rank": 1, - "Id": 1369, - "CommandName": "Set-PnPPlannerUserPolicy" + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "CommandName": "Set-PnPPlannerUserPolicy", + "Id": 1369 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Rank": 1, - "Id": 1370, - "CommandName": "Set-PnPPropertyBagValue" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1370 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Rank": 2, - "Id": 1371, - "CommandName": "Set-PnPPropertyBagValue" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1371 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Rank": 3, - "Id": 1372, - "CommandName": "Set-PnPPropertyBagValue" + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "CommandName": "Set-PnPPropertyBagValue", + "Id": 1372 }, { - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Rank": 1, - "Id": 1373, - "CommandName": "Set-PnPRequestAccessEmails" + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1373 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled", "Rank": 2, - "Id": 1374, - "CommandName": "Set-PnPRequestAccessEmails" + "Command": "Set-PnPRequestAccessEmails -Disabled", + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1374 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Rank": 3, - "Id": 1375, - "CommandName": "Set-PnPRequestAccessEmails" + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "CommandName": "Set-PnPRequestAccessEmails", + "Id": 1375 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Rank": 1, - "Id": 1376, - "CommandName": "Set-PnPRoleDefinition" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "CommandName": "Set-PnPRoleDefinition", + "Id": 1376 }, { - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Rank": 2, - "Id": 1377, - "CommandName": "Set-PnPRoleDefinition" + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "CommandName": "Set-PnPRoleDefinition", + "Id": 1377 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Rank": 3, - "Id": 1378, - "CommandName": "Set-PnPRoleDefinition" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "CommandName": "Set-PnPRoleDefinition", + "Id": 1378 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Rank": 4, - "Id": 1379, - "CommandName": "Set-PnPRoleDefinition" + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "CommandName": "Set-PnPRoleDefinition", + "Id": 1379 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config", "Rank": 1, - "Id": 1380, - "CommandName": "Set-PnPSearchConfiguration" + "Command": "Set-PnPSearchConfiguration -Configuration $config", + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1380 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Rank": 2, - "Id": 1381, - "CommandName": "Set-PnPSearchConfiguration" + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1381 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Rank": 3, - "Id": 1382, - "CommandName": "Set-PnPSearchConfiguration" + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1382 }, { - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Rank": 4, - "Id": 1383, - "CommandName": "Set-PnPSearchConfiguration" + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "CommandName": "Set-PnPSearchConfiguration", + "Id": 1383 }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Rank": 1, - "Id": 1384, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "CommandName": "Set-PnPSearchSettings", + "Id": 1384 }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Rank": 2, - "Id": 1385, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "CommandName": "Set-PnPSearchSettings", + "Id": 1385 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Rank": 3, - "Id": 1386, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "CommandName": "Set-PnPSearchSettings", + "Id": 1386 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Rank": 4, - "Id": 1387, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "CommandName": "Set-PnPSearchSettings", + "Id": 1387 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Rank": 5, - "Id": 1388, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "CommandName": "Set-PnPSearchSettings", + "Id": 1388 }, { - "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Rank": 6, - "Id": 1389, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "CommandName": "Set-PnPSearchSettings", + "Id": 1389 }, { - "Command": "Set-PnPSearchSettings -SearchScope Hub", "Rank": 7, - "Id": 1390, - "CommandName": "Set-PnPSearchSettings" + "Command": "Set-PnPSearchSettings -SearchScope Hub", + "CommandName": "Set-PnPSearchSettings", + "Id": 1390 }, { - "Command": "Set-PnPSite -Classification \"HBI\"", "Rank": 1, - "Id": 1391, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSite -Classification \"HBI\"", + "CommandName": "Set-PnPSite", + "Id": 1391 }, { - "Command": "Set-PnPSite -Classification $null", "Rank": 2, - "Id": 1392, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSite -Classification $null", + "CommandName": "Set-PnPSite", + "Id": 1392 }, { - "Command": "Set-PnPSite -DisableFlows", "Rank": 3, - "Id": 1393, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSite -DisableFlows", + "CommandName": "Set-PnPSite", + "Id": 1393 }, { - "Command": "Set-PnPSite -DisableFlows:$false", "Rank": 4, - "Id": 1394, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSite -DisableFlows:$false", + "CommandName": "Set-PnPSite", + "Id": 1394 }, { - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Rank": 5, - "Id": 1395, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "CommandName": "Set-PnPSite", + "Id": 1395 }, { - "Command": "Set-PnPSite -NoScriptSite $false", "Rank": 6, - "Id": 1396, - "CommandName": "Set-PnPSite" + "Command": "Set-PnPSite -NoScriptSite $false", + "CommandName": "Set-PnPSite", + "Id": 1396 }, { - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Rank": 1, - "Id": 1397, - "CommandName": "Set-PnPSiteClassification" + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "CommandName": "Set-PnPSiteClassification", + "Id": 1397 }, { - "Command": "Set-PnPSiteClosure -State Open", "Rank": 1, - "Id": 1398, - "CommandName": "Set-PnPSiteClosure" + "Command": "Set-PnPSiteClosure -State Open", + "CommandName": "Set-PnPSiteClosure", + "Id": 1398 }, { - "Command": "Set-PnPSiteClosure -State Closed", "Rank": 2, - "Id": 1399, - "CommandName": "Set-PnPSiteClosure" + "Command": "Set-PnPSiteClosure -State Closed", + "CommandName": "Set-PnPSiteClosure", + "Id": 1399 }, { - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "Rank": 1, - "Id": 1400, - "CommandName": "Set-PnPSiteDesign" + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "CommandName": "Set-PnPSiteDesign", + "Id": 1400 }, { - "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": 1401, - "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": 1401 }, { - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "Rank": 1, - "Id": 1402, - "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": 1402 }, { - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Rank": 2, - "Id": 1403, - "CommandName": "Set-PnPSiteGroup" + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "CommandName": "Set-PnPSiteGroup", + "Id": 1403 }, { - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Rank": 1, - "Id": 1404, - "CommandName": "Set-PnPSitePolicy" + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "CommandName": "Set-PnPSitePolicy", + "Id": 1404 }, { - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "Id": 1405, - "CommandName": "Set-PnPSiteScript" + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "CommandName": "Set-PnPSiteScript", + "Id": 1405 }, { - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Rank": 1, - "Id": 1406, - "CommandName": "Set-PnPSiteScriptPackage" + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "CommandName": "Set-PnPSiteScriptPackage", + "Id": 1406 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Rank": 1, - "Id": 1407, - "CommandName": "Set-PnPSiteSensitivityLabel" + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1407 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Rank": 2, - "Id": 1408, - "CommandName": "Set-PnPSiteSensitivityLabel" + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "CommandName": "Set-PnPSiteSensitivityLabel", + "Id": 1408 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Rank": 1, - "Id": 1409, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1409 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Rank": 2, - "Id": 1410, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1410 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 3, - "Id": 1411, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1411 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Rank": 4, - "Id": 1412, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1412 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 5, - "Id": 1413, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1413 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Rank": 6, - "Id": 1414, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "CommandName": "Set-PnPSiteTemplateMetadata", + "Id": 1414 }, { - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 1, - "Id": 1415, - "CommandName": "Set-PnPStorageEntity" + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "CommandName": "Set-PnPStorageEntity", + "Id": 1415 }, { - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Rank": 2, - "Id": 1416, - "CommandName": "Set-PnPStorageEntity" + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "CommandName": "Set-PnPStorageEntity", + "Id": 1416 }, { - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 1, - "Id": 1417, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1417 }, { - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Rank": 2, - "Id": 1418, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Id": 1418 }, { - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 1, - "Id": 1419, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1419 }, { - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Rank": 2, - "Id": 1420, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Id": 1420 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Rank": 1, - "Id": 1421, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1421 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Rank": 2, - "Id": 1422, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Id": 1422 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Rank": 1, - "Id": 1423, - "CommandName": "Set-PnPTaxonomyFieldValue" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1423 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Rank": 2, - "Id": 1424, - "CommandName": "Set-PnPTaxonomyFieldValue" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1424 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Rank": 3, - "Id": 1425, - "CommandName": "Set-PnPTaxonomyFieldValue" + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "CommandName": "Set-PnPTaxonomyFieldValue", + "Id": 1425 }, { - "Command": "Set-PnPTeamifyPromptHidden", "Rank": 1, - "Id": 1426, - "CommandName": "Set-PnPTeamifyPromptHidden" + "Command": "Set-PnPTeamifyPromptHidden", + "CommandName": "Set-PnPTeamifyPromptHidden", + "Id": 1426 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Rank": 1, - "Id": 1427, - "CommandName": "Set-PnPTeamsChannel" + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "CommandName": "Set-PnPTeamsChannel", + "Id": 1427 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Rank": 2, - "Id": 1428, - "CommandName": "Set-PnPTeamsChannel" + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "CommandName": "Set-PnPTeamsChannel", + "Id": 1428 }, { - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Rank": 1, - "Id": 1429, - "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": 1429 }, { - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Rank": 2, - "Id": 1430, - "CommandName": "Set-PnpTeamsChannelUser" + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "CommandName": "Set-PnpTeamsChannelUser", + "Id": 1430 }, { - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Rank": 1, - "Id": 1431, - "CommandName": "Set-PnPTeamsTab" + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "CommandName": "Set-PnPTeamsTab", + "Id": 1431 }, { - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Rank": 1, - "Id": 1432, - "CommandName": "Set-PnPTeamsTag" + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "CommandName": "Set-PnPTeamsTag", + "Id": 1432 }, { - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Rank": 1, - "Id": 1433, - "CommandName": "Set-PnPTeamsTeam" + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "CommandName": "Set-PnPTeamsTeam", + "Id": 1433 }, { - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Rank": 2, - "Id": 1434, - "CommandName": "Set-PnPTeamsTeam" + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "CommandName": "Set-PnPTeamsTeam", + "Id": 1434 }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Rank": 3, - "Id": 1435, - "CommandName": "Set-PnPTeamsTeam" + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "CommandName": "Set-PnPTeamsTeam", + "Id": 1435 }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Rank": 4, - "Id": 1436, - "CommandName": "Set-PnPTeamsTeam" + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "CommandName": "Set-PnPTeamsTeam", + "Id": 1436 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Rank": 1, - "Id": 1437, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1437 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Rank": 2, - "Id": 1438, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1438 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Rank": 3, - "Id": 1439, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "CommandName": "Set-PnPTeamsTeamArchivedState", + "Id": 1439 }, { - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Rank": 1, - "Id": 1440, - "CommandName": "Set-PnPTeamsTeamPicture" + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "CommandName": "Set-PnPTeamsTeamPicture", + "Id": 1440 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $true", "Rank": 1, - "Id": 1441, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "Command": "Set-PnPTemporarilyDisableAppBar $true", + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1441 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $false", "Rank": 2, - "Id": 1442, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "Command": "Set-PnPTemporarilyDisableAppBar $false", + "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Id": 1442 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", "Rank": 1, - "Id": 1443, - "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": 1443 }, { - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Rank": 2, - "Id": 1444, - "CommandName": "Set-PnPTenant" + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "CommandName": "Set-PnPTenant", + "Id": 1444 }, { - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Rank": 3, - "Id": 1445, - "CommandName": "Set-PnPTenant" + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "CommandName": "Set-PnPTenant", + "Id": 1445 }, { - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Rank": 4, - "Id": 1446, - "CommandName": "Set-PnPTenant" + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "CommandName": "Set-PnPTenant", + "Id": 1446 }, { - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Rank": 1, - "Id": 1447, - "CommandName": "Set-PnPTenantAppCatalogUrl" + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "CommandName": "Set-PnPTenantAppCatalogUrl", + "Id": 1447 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Rank": 1, - "Id": 1448, - "CommandName": "Set-PnPTenantCdnEnabled" + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1448 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Rank": 2, - "Id": 1449, - "CommandName": "Set-PnPTenantCdnEnabled" + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1449 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Rank": 3, - "Id": 1450, - "CommandName": "Set-PnPTenantCdnEnabled" + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "CommandName": "Set-PnPTenantCdnEnabled", + "Id": 1450 }, { - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", "Rank": 1, - "Id": 1451, - "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": 1451 }, { - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Rank": 2, - "Id": 1452, - "CommandName": "Set-PnPTenantCdnPolicy" + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "CommandName": "Set-PnPTenantCdnPolicy", + "Id": 1452 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "Rank": 1, - "Id": 1453, - "CommandName": "Set-PnPTenantSite" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "CommandName": "Set-PnPTenantSite", + "Id": 1453 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Rank": 2, - "Id": 1454, - "CommandName": "Set-PnPTenantSite" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "CommandName": "Set-PnPTenantSite", + "Id": 1454 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "Rank": 3, - "Id": 1455, - "CommandName": "Set-PnPTenantSite" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "CommandName": "Set-PnPTenantSite", + "Id": 1455 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Rank": 4, - "Id": 1456, - "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": 1456 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Rank": 5, - "Id": 1457, - "CommandName": "Set-PnPTenantSite" + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "CommandName": "Set-PnPTenantSite", + "Id": 1457 }, { - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Rank": 1, - "Id": 1458, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1458 }, { - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Rank": 2, - "Id": 1459, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "CommandName": "Set-PnPTenantSyncClientRestriction", + "Id": 1459 }, { - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Rank": 1, - "Id": 1460, - "CommandName": "Set-PnPTerm" + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "CommandName": "Set-PnPTerm", + "Id": 1460 }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 2, - "Id": 1461, - "CommandName": "Set-PnPTerm" + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "Set-PnPTerm", + "Id": 1461 }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "Rank": 3, - "Id": 1462, - "CommandName": "Set-PnPTerm" + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "CommandName": "Set-PnPTerm", + "Id": 1462 }, { - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Rank": 1, - "Id": 1463, - "CommandName": "Set-PnPTermGroup" + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "CommandName": "Set-PnPTermGroup", + "Id": 1463 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Rank": 1, - "Id": 1464, - "CommandName": "Set-PnPTermSet" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "CommandName": "Set-PnPTermSet", + "Id": 1464 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Rank": 2, - "Id": 1465, - "CommandName": "Set-PnPTermSet" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "CommandName": "Set-PnPTermSet", + "Id": 1465 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Rank": 3, - "Id": 1466, - "CommandName": "Set-PnPTermSet" + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "CommandName": "Set-PnPTermSet", + "Id": 1466 }, { - "Command": "Set-PnPTheme", "Rank": 1, - "Id": 1467, - "CommandName": "Set-PnPTheme" + "Command": "Set-PnPTheme", + "CommandName": "Set-PnPTheme", + "Id": 1467 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Rank": 2, - "Id": 1468, - "CommandName": "Set-PnPTheme" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "CommandName": "Set-PnPTheme", + "Id": 1468 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "Rank": 3, - "Id": 1469, - "CommandName": "Set-PnPTheme" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "CommandName": "Set-PnPTheme", + "Id": 1469 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Rank": 4, - "Id": 1470, - "CommandName": "Set-PnPTheme" + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "CommandName": "Set-PnPTheme", + "Id": 1470 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Rank": 1, - "Id": 1471, - "CommandName": "Set-PnPTraceLog" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "CommandName": "Set-PnPTraceLog", + "Id": 1471 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Rank": 2, - "Id": 1472, - "CommandName": "Set-PnPTraceLog" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "CommandName": "Set-PnPTraceLog", + "Id": 1472 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Rank": 3, - "Id": 1473, - "CommandName": "Set-PnPTraceLog" + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "CommandName": "Set-PnPTraceLog", + "Id": 1473 }, { - "Command": "Set-PnPTraceLog -Off", "Rank": 4, - "Id": 1474, - "CommandName": "Set-PnPTraceLog" + "Command": "Set-PnPTraceLog -Off", + "CommandName": "Set-PnPTraceLog", + "Id": 1474 }, { - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Rank": 1, - "Id": 1475, - "CommandName": "Set-PnPUserOneDriveQuota" + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "CommandName": "Set-PnPUserOneDriveQuota", + "Id": 1475 }, { - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Rank": 1, - "Id": 1476, - "CommandName": "Set-PnPUserProfileProperty" + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1476 }, { - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Rank": 2, - "Id": 1477, - "CommandName": "Set-PnPUserProfileProperty" + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "CommandName": "Set-PnPUserProfileProperty", + "Id": 1477 }, { - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Rank": 1, - "Id": 1478, - "CommandName": "Set-PnPView" + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "CommandName": "Set-PnPView", + "Id": 1478 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Rank": 2, - "Id": 1479, - "CommandName": "Set-PnPView" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "CommandName": "Set-PnPView", + "Id": 1479 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "Rank": 3, - "Id": 1480, - "CommandName": "Set-PnPView" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "CommandName": "Set-PnPView", + "Id": 1480 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Rank": 4, - "Id": 1481, - "CommandName": "Set-PnPView" + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "CommandName": "Set-PnPView", + "Id": 1481 }, { - "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": 1482, - "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": 1482 }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "Rank": 2, - "Id": 1483, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1483 }, { - "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": 1484, - "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": 1484 }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Rank": 4, - "Id": 1485, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Id": 1485 }, { - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Rank": 1, - "Id": 1486, - "CommandName": "Set-PnPWeb" + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "CommandName": "Set-PnPWeb", + "Id": 1486 }, { - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Rank": 2, - "Id": 1487, - "CommandName": "Set-PnPWeb" + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "CommandName": "Set-PnPWeb", + "Id": 1487 }, { - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Rank": 3, - "Id": 1488, - "CommandName": "Set-PnPWeb" + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "CommandName": "Set-PnPWeb", + "Id": 1488 }, { - "Command": "Set-PnPWeb -NoCrawl:$true", "Rank": 4, - "Id": 1489, - "CommandName": "Set-PnPWeb" + "Command": "Set-PnPWeb -NoCrawl:$true", + "CommandName": "Set-PnPWeb", + "Id": 1489 }, { - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Rank": 1, - "Id": 1490, - "CommandName": "Set-PnPWebHeader" + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "CommandName": "Set-PnPWebHeader", + "Id": 1490 }, { - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Rank": 2, - "Id": 1491, - "CommandName": "Set-PnPWebHeader" + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "CommandName": "Set-PnPWebHeader", + "Id": 1491 }, { - "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Rank": 3, - "Id": 1492, - "CommandName": "Set-PnPWebHeader" + "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "CommandName": "Set-PnPWebHeader", + "Id": 1492 }, { - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "Rank": 1, - "Id": 1493, - "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": 1493 }, { - "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": 1494, - "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": 1494 }, { - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", "Rank": 1, - "Id": 1495, - "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": 1495 }, { - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 1, - "Id": 1496, - "CommandName": "Set-PnPWebPermission" + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission", + "Id": 1496 }, { - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Rank": 2, - "Id": 1497, - "CommandName": "Set-PnPWebPermission" + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission", + "Id": 1497 }, { - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Rank": 3, - "Id": 1498, - "CommandName": "Set-PnPWebPermission" + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "CommandName": "Set-PnPWebPermission", + "Id": 1498 }, { - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Rank": 4, - "Id": 1499, - "CommandName": "Set-PnPWebPermission" + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "CommandName": "Set-PnPWebPermission", + "Id": 1499 }, { - "Command": "Set-PnPWebTheme -Theme MyTheme", "Rank": 1, - "Id": 1500, - "CommandName": "Set-PnPWebTheme" + "Command": "Set-PnPWebTheme -Theme MyTheme", + "CommandName": "Set-PnPWebTheme", + "Id": 1500 }, { - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Rank": 2, - "Id": 1501, - "CommandName": "Set-PnPWebTheme" + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "CommandName": "Set-PnPWebTheme", + "Id": 1501 }, { - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Rank": 1, - "Id": 1502, - "CommandName": "Set-PnPWikiPageContent" + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "CommandName": "Set-PnPWikiPageContent", + "Id": 1502 }, { - "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Rank": 1, - "Id": 1503, - "CommandName": "Submit-PnPSearchQuery" + "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "CommandName": "Submit-PnPSearchQuery", + "Id": 1503 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Rank": 2, - "Id": 1504, - "CommandName": "Submit-PnPSearchQuery" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "CommandName": "Submit-PnPSearchQuery", + "Id": 1504 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Rank": 3, - "Id": 1505, - "CommandName": "Submit-PnPSearchQuery" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "CommandName": "Submit-PnPSearchQuery", + "Id": 1505 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Rank": 4, - "Id": 1506, - "CommandName": "Submit-PnPSearchQuery" + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "CommandName": "Submit-PnPSearchQuery", + "Id": 1506 }, { - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Rank": 5, - "Id": 1507, - "CommandName": "Submit-PnPSearchQuery" + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "CommandName": "Submit-PnPSearchQuery", + "Id": 1507 }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Rank": 1, - "Id": 1508, - "CommandName": "Submit-PnPTeamsChannelMessage" + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1508 }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "Rank": 2, - "Id": 1509, - "CommandName": "Submit-PnPTeamsChannelMessage" + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "CommandName": "Submit-PnPTeamsChannelMessage", + "Id": 1509 }, { - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1510, - "CommandName": "Sync-PnPAppToTeams" + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Sync-PnPAppToTeams", + "Id": 1510 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Rank": 1, - "Id": 1511, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1511 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "Rank": 2, - "Id": 1512, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1512 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Rank": 3, - "Id": 1513, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Id": 1513 }, { - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Rank": 1, - "Id": 1514, - "CommandName": "Test-PnPListItemIsRecord" + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "CommandName": "Test-PnPListItemIsRecord", + "Id": 1514 }, { - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Rank": 1, - "Id": 1515, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Id": 1515 }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Rank": 1, - "Id": 1516, - "CommandName": "Test-PnPSite" + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "CommandName": "Test-PnPSite", + "Id": 1516 }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Rank": 2, - "Id": 1517, - "CommandName": "Test-PnPSite" + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "CommandName": "Test-PnPSite", + "Id": 1517 }, { - "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Rank": 1, - "Id": 1518, - "CommandName": "Test-PnPTenantTemplate" + "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "CommandName": "Test-PnPTenantTemplate", + "Id": 1518 }, { - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Rank": 1, - "Id": 1519, - "CommandName": "Undo-PnPFileCheckedOut" + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "CommandName": "Undo-PnPFileCheckedOut", + "Id": 1519 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1520, - "CommandName": "Uninstall-PnPApp" + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Uninstall-PnPApp", + "Id": 1520 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 1521, - "CommandName": "Uninstall-PnPApp" + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Uninstall-PnPApp", + "Id": 1521 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1522, - "CommandName": "Unpublish-PnPApp" + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Unpublish-PnPApp", + "Id": 1522 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 1523, - "CommandName": "Unpublish-PnPApp" + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Unpublish-PnPApp", + "Id": 1523 }, { - "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Rank": 1, - "Id": 1524, - "CommandName": "Unpublish-PnPContentType" + "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "CommandName": "Unpublish-PnPContentType", + "Id": 1524 }, { - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Rank": 1, - "Id": 1525, - "CommandName": "Unpublish-PnPSyntexModel" + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "CommandName": "Unpublish-PnPSyntexModel", + "Id": 1525 }, { - "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": 1526, - "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": 1526 }, { - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Rank": 1, - "Id": 1527, - "CommandName": "Unregister-PnPHubSite" + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "CommandName": "Unregister-PnPHubSite", + "Id": 1527 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Rank": 1, - "Id": 1528, - "CommandName": "Update-PnPApp" + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "CommandName": "Update-PnPApp", + "Id": 1528 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Rank": 2, - "Id": 1529, - "CommandName": "Update-PnPApp" + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "CommandName": "Update-PnPApp", + "Id": 1529 }, { - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Rank": 1, - "Id": 1530, - "CommandName": "Update-PnPAvailableSiteClassification" + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1530 }, { - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Rank": 2, - "Id": 1531, - "CommandName": "Update-PnPAvailableSiteClassification" + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1531 }, { - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Rank": 3, - "Id": 1532, - "CommandName": "Update-PnPAvailableSiteClassification" + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "CommandName": "Update-PnPAvailableSiteClassification", + "Id": 1532 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Rank": 1, - "Id": 1533, - "CommandName": "Update-PnPSiteDesignFromWeb" + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1533 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Rank": 2, - "Id": 1534, - "CommandName": "Update-PnPSiteDesignFromWeb" + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1534 }, { - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Rank": 3, - "Id": 1535, - "CommandName": "Update-PnPSiteDesignFromWeb" + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "CommandName": "Update-PnPSiteDesignFromWeb", + "Id": 1535 }, { - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Rank": 1, - "Id": 1536, - "CommandName": "Update-PnPTeamsApp" + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "CommandName": "Update-PnPTeamsApp", + "Id": 1536 }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Rank": 1, - "Id": 1537, - "CommandName": "Update-PnPTeamsUser" + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "CommandName": "Update-PnPTeamsUser", + "Id": 1537 }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Rank": 2, - "Id": 1538, - "CommandName": "Update-PnPTeamsUser" + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "CommandName": "Update-PnPTeamsUser", + "Id": 1538 }, { - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Rank": 3, - "Id": 1539, - "CommandName": "Update-PnPTeamsUser" + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "CommandName": "Update-PnPTeamsUser", + "Id": 1539 }, { - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Rank": 1, - "Id": 1540, - "CommandName": "Update-PnPUserType" + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "CommandName": "Update-PnPUserType", + "Id": 1540 } ] diff --git a/version.txt b/version.txt index c3ebe69ea..a8e6cefec 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.16 \ No newline at end of file +2.2.17 \ No newline at end of file From 94db628178ec5221ce11b069af0df4c8c8abf906 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Mon, 17 Jul 2023 22:21:54 +0300 Subject: [PATCH 05/21] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bf8d25aa..61860f532 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `-MediaTranscription` and `-MediaTranscriptionAutomaticFeatures` to `Set-PnPTenant` which allows for configuring the media transcription settings. [#3238](https://github.com/pnp/powershell/pull/3238) - Added `AllowCommentsTextOnEmailEnabled` parameter to `Set-PnPTenant` which allows including the surrounding document context in email notification when user is mentioned in document comments. [#3268](https://github.com/pnp/powershell/pull/3268) +- Added `Export-PnPPowerApp` cmdlet which will export a specified PowerApp as zip package. [#2990](https://github.com/pnp/powershell/pull/2990) ### Fixed @@ -22,6 +23,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Contributors +- Siddharth Vaghasia [siddharth-vaghasia] - Giacomo Pozzoni [jackpoz] - Martin Lingstuyl [martinlingstuyl] - Arleta Wanat [PowershellScripts] From 0a6d6e0d5f2d3ccc3f63ade4b92d9792d7b9d19a Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Tue, 18 Jul 2023 03:11:09 +0000 Subject: [PATCH 06/21] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6160 ++++++++--------- version.txt | 2 +- 3 files changed, 3082 insertions(+), 3082 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 70a136208..97bdd62de 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -c98f8cb1feaf4956f6fcc467155187a9b38ede78 \ No newline at end of file +92acde34f8bd83e2280d16a40240bdd7868b9a4f \ 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 e3b02bf53..efeed130f 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -2,9241 +2,9241 @@ { "Rank": 1, "Command": "Add-PnPAlert -List \"Demo List\"", - "CommandName": "Add-PnPAlert", - "Id": 1 + "Id": 1, + "CommandName": "Add-PnPAlert" }, { "Rank": 2, "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)", - "CommandName": "Add-PnPAlert", - "Id": 2 + "Id": 2, + "CommandName": "Add-PnPAlert" }, { "Rank": 3, "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAlert", - "Id": 3 + "Id": 3, + "CommandName": "Add-PnPAlert" }, { "Rank": 4, "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\" -Frequency Daily -Time ((Get-Date).AddDays(1))", - "CommandName": "Add-PnPAlert", - "Id": 4 + "Id": 4, + "CommandName": "Add-PnPAlert" }, { "Rank": 1, "Command": "Add-PnPApp -Path ./myapp.sppkg", - "CommandName": "Add-PnPApp", - "Id": 5 + "Id": 5, + "CommandName": "Add-PnPApp" }, { "Rank": 2, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "CommandName": "Add-PnPApp", - "Id": 6 + "Id": 6, + "CommandName": "Add-PnPApp" }, { "Rank": 3, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "CommandName": "Add-PnPApp", - "Id": 7 + "Id": 7, + "CommandName": "Add-PnPApp" }, { "Rank": 4, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "CommandName": "Add-PnPApp", - "Id": 8 + "Id": 8, + "CommandName": "Add-PnPApp" }, { "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 + "Id": 9, + "CommandName": "Add-PnPApplicationCustomizer" }, { "Rank": 1, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 10 + "Id": 10, + "CommandName": "Add-PnPAvailableSiteClassification" }, { "Rank": 2, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "CommandName": "Add-PnPAvailableSiteClassification", - "Id": 11 + "Id": 11, + "CommandName": "Add-PnPAvailableSiteClassification" }, { "Rank": 1, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 12 + "Id": 12, + "CommandName": "Add-PnPAzureADGroupMember" }, { "Rank": 2, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 13 + "Id": 13, + "CommandName": "Add-PnPAzureADGroupMember" }, { "Rank": 3, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupMember", - "Id": 14 + "Id": 14, + "CommandName": "Add-PnPAzureADGroupMember" }, { "Rank": 1, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 15 + "Id": 15, + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Rank": 2, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 16 + "Id": 16, + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Rank": 3, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "CommandName": "Add-PnPAzureADGroupOwner", - "Id": 17 + "Id": 17, + "CommandName": "Add-PnPAzureADGroupOwner" }, { "Rank": 1, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 18 + "Id": 18, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { "Rank": 2, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Id": 19 + "Id": 19, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { "Rank": 1, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "CommandName": "Add-PnPContentType", - "Id": 20 + "Id": 20, + "CommandName": "Add-PnPContentType" }, { "Rank": 2, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType (Get-PnPContentType -Identity 0x0101) -DocumentTemplate \"/_cts/Project Document/template.docx\"", - "CommandName": "Add-PnPContentType", - "Id": 21 + "Id": 21, + "CommandName": "Add-PnPContentType" }, { "Rank": 3, "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "CommandName": "Add-PnPContentType", - "Id": 22 + "Id": 22, + "CommandName": "Add-PnPContentType" }, { "Rank": 4, "Command": "Add-PnPContentType -Name \"Project Item\"", - "CommandName": "Add-PnPContentType", - "Id": 23 + "Id": 23, + "CommandName": "Add-PnPContentType" }, { "Rank": 5, "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "CommandName": "Add-PnPContentType", - "Id": 24 + "Id": 24, + "CommandName": "Add-PnPContentType" }, { "Rank": 1, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 25 + "Id": 25, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { "Rank": 2, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Id": 26 + "Id": 26, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { "Rank": 1, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 27 + "Id": 27, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { "Rank": 2, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Id": 28 + "Id": 28, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { "Rank": 1, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "CommandName": "Add-PnPContentTypeToList", - "Id": 29 + "Id": 29, + "CommandName": "Add-PnPContentTypeToList" }, { "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 + "Id": 30, + "CommandName": "Add-PnPCustomAction" }, { "Rank": 1, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 31 + "Id": 31, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { "Rank": 2, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Id": 32 + "Id": 32, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { "Rank": 1, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "CommandName": "Add-PnPDocumentSet", - "Id": 33 + "Id": 33, + "CommandName": "Add-PnPDocumentSet" }, { "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 + "Id": 34, + "CommandName": "Add-PnPEventReceiver" }, { "Rank": 2, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "CommandName": "Add-PnPEventReceiver", - "Id": 35 + "Id": 35, + "CommandName": "Add-PnPEventReceiver" }, { "Rank": 3, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", - "CommandName": "Add-PnPEventReceiver", - "Id": 36 + "Id": 36, + "CommandName": "Add-PnPEventReceiver" }, { "Rank": 4, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", - "CommandName": "Add-PnPEventReceiver", - "Id": 37 + "Id": 37, + "CommandName": "Add-PnPEventReceiver" }, { "Rank": 1, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "CommandName": "Add-PnPField", - "Id": 38 + "Id": 38, + "CommandName": "Add-PnPField" }, { "Rank": 2, "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", - "CommandName": "Add-PnPField", - "Id": 39 + "Id": 39, + "CommandName": "Add-PnPField" }, { "Rank": 3, "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"", - "CommandName": "Add-PnPField", - "Id": 40 + "Id": 40, + "CommandName": "Add-PnPField" }, { "Rank": 4, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "CommandName": "Add-PnPField", - "Id": 41 + "Id": 41, + "CommandName": "Add-PnPField" }, { "Rank": 5, "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "CommandName": "Add-PnPField", - "Id": 42 + "Id": 42, + "CommandName": "Add-PnPField" }, { "Rank": 6, "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "CommandName": "Add-PnPField", - "Id": 43 + "Id": 43, + "CommandName": "Add-PnPField" }, { "Rank": 1, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Add-PnPFieldToContentType", - "Id": 44 + "Id": 44, + "CommandName": "Add-PnPFieldToContentType" }, { "Rank": 1, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "CommandName": "Add-PnPFile", - "Id": 45 + "Id": 45, + "CommandName": "Add-PnPFile" }, { "Rank": 2, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "CommandName": "Add-PnPFile", - "Id": 46 + "Id": 46, + "CommandName": "Add-PnPFile" }, { "Rank": 3, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "CommandName": "Add-PnPFile", - "Id": 47 + "Id": 47, + "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 + "Id": 48, + "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 + "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}", - "CommandName": "Add-PnPFile", - "Id": 50 + "Id": 50, + "CommandName": "Add-PnPFile" }, { "Rank": 7, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "CommandName": "Add-PnPFile", - "Id": 51 + "Id": 51, + "CommandName": "Add-PnPFile" }, { "Rank": 8, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPFile", - "Id": 52 + "Id": 52, + "CommandName": "Add-PnPFile" }, { "Rank": 1, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 53 + "Id": 53, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Rank": 2, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 54 + "Id": 54, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Rank": 3, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Id": 55 + "Id": 55, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { "Rank": 1, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 56 + "Id": 56, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { "Rank": 2, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Id": 57 + "Id": 57, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { "Rank": 1, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "CommandName": "Add-PnPFileSharingInvite", - "Id": 58 + "Id": 58, + "CommandName": "Add-PnPFileSharingInvite" }, { "Rank": 2, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "CommandName": "Add-PnPFileSharingInvite", - "Id": 59 + "Id": 59, + "CommandName": "Add-PnPFileSharingInvite" }, { "Rank": 3, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", - "CommandName": "Add-PnPFileSharingInvite", - "Id": 60 + "Id": 60, + "CommandName": "Add-PnPFileSharingInvite" }, { "Rank": 1, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 61 + "Id": 61, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Rank": 2, "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 62 + "Id": 62, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Rank": 3, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 63 + "Id": 63, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Rank": 4, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 64 + "Id": 64, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "Rank": 5, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "CommandName": "Add-PnPFileToSiteTemplate", - "Id": 65 + "Id": 65, + "CommandName": "Add-PnPFileToSiteTemplate" }, { "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 + "Id": 66, + "CommandName": "Add-PnPFileUserSharingLink" }, { "Rank": 2, "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFileUserSharingLink", - "Id": 67 + "Id": 67, + "CommandName": "Add-PnPFileUserSharingLink" }, { "Rank": 1, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Add-PnPFolder", - "Id": 68 + "Id": 68, + "CommandName": "Add-PnPFolder" }, { "Rank": 2, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "CommandName": "Add-PnPFolder", - "Id": 69 + "Id": 69, + "CommandName": "Add-PnPFolder" }, { "Rank": 3, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "CommandName": "Add-PnPFolder", - "Id": 70 + "Id": 70, + "CommandName": "Add-PnPFolder" }, { "Rank": 1, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 71 + "Id": 71, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Rank": 2, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Id": 72 + "Id": 72, + "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": 73 + "Id": 73, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { "Rank": 1, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 74 + "Id": 74, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { "Rank": 2, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Id": 75 + "Id": 75, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { "Rank": 1, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "CommandName": "Add-PnPFolderSharingInvite", - "Id": 76 + "Id": 76, + "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": 77 + "Id": 77, + "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": 78 + "Id": 78, + "CommandName": "Add-PnPFolderSharingInvite" }, { "Rank": 1, "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPFolderUserSharingLink", - "Id": 79 + "Id": 79, + "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": 80 + "Id": 80, + "CommandName": "Add-PnPFolderUserSharingLink" }, { "Rank": 1, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Add-PnPGroupMember", - "Id": 81 + "Id": 81, + "CommandName": "Add-PnPGroupMember" }, { "Rank": 2, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "CommandName": "Add-PnPGroupMember", - "Id": 82 + "Id": 82, + "CommandName": "Add-PnPGroupMember" }, { "Rank": 1, "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Id": 83 + "Id": 83, + "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { "Rank": 1, "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "CommandName": "Add-PnPHubSiteAssociation", - "Id": 84 + "Id": 84, + "CommandName": "Add-PnPHubSiteAssociation" }, { "Rank": 1, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "CommandName": "Add-PnPHubToHubAssociation", - "Id": 85 + "Id": 85, + "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": 86 + "Id": 86, + "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": 87 + "Id": 87, + "CommandName": "Add-PnPHubToHubAssociation" }, { "Rank": 1, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptBlock", - "Id": 88 + "Id": 88, + "CommandName": "Add-PnPJavaScriptBlock" }, { "Rank": 2, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "CommandName": "Add-PnPJavaScriptBlock", - "Id": 89 + "Id": 89, + "CommandName": "Add-PnPJavaScriptBlock" }, { "Rank": 1, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "CommandName": "Add-PnPJavaScriptLink", - "Id": 90 + "Id": 90, + "CommandName": "Add-PnPJavaScriptLink" }, { "Rank": 2, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "CommandName": "Add-PnPJavaScriptLink", - "Id": 91 + "Id": 91, + "CommandName": "Add-PnPJavaScriptLink" }, { "Rank": 1, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "CommandName": "Add-PnPListDesign", - "Id": 92 + "Id": 92, + "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": 93 + "Id": 93, + "CommandName": "Add-PnPListDesign" }, { "Rank": 1, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 94 + "Id": 94, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Rank": 2, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 95 + "Id": 95, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Rank": 3, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Id": 96 + "Id": 96, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { "Rank": 1, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem", - "Id": 97 + "Id": 97, + "CommandName": "Add-PnPListItem" }, { "Rank": 2, "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Add-PnPListItem", - "Id": 98 + "Id": 98, + "CommandName": "Add-PnPListItem" }, { "Rank": 3, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "CommandName": "Add-PnPListItem", - "Id": 99 + "Id": 99, + "CommandName": "Add-PnPListItem" }, { "Rank": 4, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "CommandName": "Add-PnPListItem", - "Id": 100 + "Id": 100, + "CommandName": "Add-PnPListItem" }, { "Rank": 5, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "CommandName": "Add-PnPListItem", - "Id": 101 + "Id": 101, + "CommandName": "Add-PnPListItem" }, { "Rank": 1, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "CommandName": "Add-PnPListItemAttachment", - "Id": 102 + "Id": 102, + "CommandName": "Add-PnPListItemAttachment" }, { "Rank": 2, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "CommandName": "Add-PnPListItemAttachment", - "Id": 103 + "Id": 103, + "CommandName": "Add-PnPListItemAttachment" }, { "Rank": 3, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "CommandName": "Add-PnPListItemAttachment", - "Id": 104 + "Id": 104, + "CommandName": "Add-PnPListItemAttachment" }, { "Rank": 1, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "CommandName": "Add-PnPListItemComment", - "Id": 105 + "Id": 105, + "CommandName": "Add-PnPListItemComment" }, { "Rank": 1, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "CommandName": "Add-PnPMasterPage", - "Id": 106 + "Id": 106, + "CommandName": "Add-PnPMasterPage" }, { "Rank": 1, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Id": 107 + "Id": 107, + "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": 108 + "Id": 108, + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { "Rank": 1, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Id": 109 + "Id": 109, + "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": 110 + "Id": 110, + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { "Rank": 1, "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 111 + "Id": 111, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Rank": 2, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 112 + "Id": 112, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Rank": 3, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Id": 113 + "Id": 113, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { "Rank": 1, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "CommandName": "Add-PnPNavigationNode", - "Id": 114 + "Id": 114, + "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": 115 + "Id": 115, + "CommandName": "Add-PnPNavigationNode" }, { "Rank": 3, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "CommandName": "Add-PnPNavigationNode", - "Id": 116 + "Id": 116, + "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": 117 + "Id": 117, + "CommandName": "Add-PnPNavigationNode" }, { "Rank": 5, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "CommandName": "Add-PnPNavigationNode", - "Id": 118 + "Id": 118, + "CommandName": "Add-PnPNavigationNode" }, { "Rank": 6, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "CommandName": "Add-PnPNavigationNode", - "Id": 119 + "Id": 119, + "CommandName": "Add-PnPNavigationNode" }, { "Rank": 7, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "CommandName": "Add-PnPNavigationNode", - "Id": 120 + "Id": 120, + "CommandName": "Add-PnPNavigationNode" }, { "Rank": 8, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "CommandName": "Add-PnPNavigationNode", - "Id": 121 + "Id": 121, + "CommandName": "Add-PnPNavigationNode" }, { "Rank": 1, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 122 + "Id": 122, + "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": 123 + "Id": 123, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "Rank": 3, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "CommandName": "Add-PnPOrgAssetsLibrary", - "Id": 124 + "Id": 124, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { "Rank": 1, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "CommandName": "Add-PnPOrgNewsSite", - "Id": 125 + "Id": 125, + "CommandName": "Add-PnPOrgNewsSite" }, { "Rank": 1, "Command": "Add-PnPPage -Name \"NewPage\"", - "CommandName": "Add-PnPPage", - "Id": 126 + "Id": 126, + "CommandName": "Add-PnPPage" }, { "Rank": 2, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "CommandName": "Add-PnPPage", - "Id": 127 + "Id": 127, + "CommandName": "Add-PnPPage" }, { "Rank": 3, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "CommandName": "Add-PnPPage", - "Id": 128 + "Id": 128, + "CommandName": "Add-PnPPage" }, { "Rank": 4, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "CommandName": "Add-PnPPage", - "Id": 129 + "Id": 129, + "CommandName": "Add-PnPPage" }, { "Rank": 5, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "CommandName": "Add-PnPPage", - "Id": 130 + "Id": 130, + "CommandName": "Add-PnPPage" }, { "Rank": 6, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "CommandName": "Add-PnPPage", - "Id": 131 + "Id": 131, + "CommandName": "Add-PnPPage" }, { "Rank": 7, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Add-PnPPage", - "Id": 132 + "Id": 132, + "CommandName": "Add-PnPPage" }, { "Rank": 8, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "CommandName": "Add-PnPPage", - "Id": 133 + "Id": 133, + "CommandName": "Add-PnPPage" }, { "Rank": 9, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Add-PnPPage", - "Id": 134 + "Id": 134, + "CommandName": "Add-PnPPage" }, { "Rank": 10, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Add-PnPPage", - "Id": 135 + "Id": 135, + "CommandName": "Add-PnPPage" }, { "Rank": 1, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "CommandName": "Add-PnPPageImageWebPart", - "Id": 136 + "Id": 136, + "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": 137 + "Id": 137, + "CommandName": "Add-PnPPageImageWebPart" }, { "Rank": 1, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "CommandName": "Add-PnPPageSection", - "Id": 138 + "Id": 138, + "CommandName": "Add-PnPPageSection" }, { "Rank": 2, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "CommandName": "Add-PnPPageSection", - "Id": 139 + "Id": 139, + "CommandName": "Add-PnPPageSection" }, { "Rank": 1, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "CommandName": "Add-PnPPageTextPart", - "Id": 140 + "Id": 140, + "CommandName": "Add-PnPPageTextPart" }, { "Rank": 2, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Add-PnPPageTextPart", - "Id": 141 + "Id": 141, + "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": 142 + "Id": 142, + "CommandName": "Add-PnPPageTextPart" }, { "Rank": 1, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "CommandName": "Add-PnPPageWebPart", - "Id": 143 + "Id": 143, + "CommandName": "Add-PnPPageWebPart" }, { "Rank": 2, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "CommandName": "Add-PnPPageWebPart", - "Id": 144 + "Id": 144, + "CommandName": "Add-PnPPageWebPart" }, { "Rank": 3, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "CommandName": "Add-PnPPageWebPart", - "Id": 145 + "Id": 145, + "CommandName": "Add-PnPPageWebPart" }, { "Rank": 1, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket", - "Id": 146 + "Id": 146, + "CommandName": "Add-PnPPlannerBucket" }, { "Rank": 2, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "CommandName": "Add-PnPPlannerBucket", - "Id": 147 + "Id": 147, + "CommandName": "Add-PnPPlannerBucket" }, { "Rank": 1, "Command": "Add-PnPPlannerRoster", - "CommandName": "Add-PnPPlannerRoster", - "Id": 148 + "Id": 148, + "CommandName": "Add-PnPPlannerRoster" }, { "Rank": 1, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPPlannerRosterMember", - "Id": 149 + "Id": 149, + "CommandName": "Add-PnPPlannerRosterMember" }, { "Rank": 1, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask", - "Id": 150 + "Id": 150, + "CommandName": "Add-PnPPlannerTask" }, { "Rank": 2, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "CommandName": "Add-PnPPlannerTask", - "Id": 151 + "Id": 151, + "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": 152 + "Id": 152, + "CommandName": "Add-PnPPlannerTask" }, { "Rank": 1, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Add-PnPPublishingImageRendition", - "Id": 153 + "Id": 153, + "CommandName": "Add-PnPPublishingImageRendition" }, { "Rank": 1, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "CommandName": "Add-PnPPublishingPage", - "Id": 154 + "Id": 154, + "CommandName": "Add-PnPPublishingPage" }, { "Rank": 2, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "CommandName": "Add-PnPPublishingPage", - "Id": 155 + "Id": 155, + "CommandName": "Add-PnPPublishingPage" }, { "Rank": 1, "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "CommandName": "Add-PnPPublishingPageLayout", - "Id": 156 + "Id": 156, + "CommandName": "Add-PnPPublishingPageLayout" }, { "Rank": 1, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "CommandName": "Add-PnPRoleDefinition", - "Id": 157 + "Id": 157, + "CommandName": "Add-PnPRoleDefinition" }, { "Rank": 2, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "CommandName": "Add-PnPRoleDefinition", - "Id": 158 + "Id": 158, + "CommandName": "Add-PnPRoleDefinition" }, { "Rank": 3, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "CommandName": "Add-PnPRoleDefinition", - "Id": 159 + "Id": 159, + "CommandName": "Add-PnPRoleDefinition" }, { "Rank": 1, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 160 + "Id": 160, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Rank": 2, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 161 + "Id": 161, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Rank": 3, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "CommandName": "Add-PnPSiteCollectionAdmin", - "Id": 162 + "Id": 162, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { "Rank": 1, "Command": "Add-PnPSiteCollectionAppCatalog", - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 163 + "Id": 163, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { "Rank": 2, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Id": 164 + "Id": 164, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { "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": 165 + "Id": 165, + "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": 166 + "Id": 166, + "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": 167 + "Id": 167, + "CommandName": "Add-PnPSiteDesign" }, { "Rank": 1, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "CommandName": "Add-PnPSiteDesignFromWeb", - "Id": 168 + "Id": 168, + "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": 169 + "Id": 169, + "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": 170 + "Id": 170, + "CommandName": "Add-PnPSiteDesignFromWeb" }, { "Rank": 1, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Add-PnPSiteDesignTask", - "Id": 171 + "Id": 171, + "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": 172 + "Id": 172, + "CommandName": "Add-PnPSiteDesignTask" }, { "Rank": 1, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "CommandName": "Add-PnPSiteScript", - "Id": 173 + "Id": 173, + "CommandName": "Add-PnPSiteScript" }, { "Rank": 1, "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "CommandName": "Add-PnPSiteScriptPackage", - "Id": 174 + "Id": 174, + "CommandName": "Add-PnPSiteScriptPackage" }, { "Rank": 1, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "CommandName": "Add-PnPSiteTemplate", - "Id": 175 + "Id": 175, + "CommandName": "Add-PnPSiteTemplate" }, { "Rank": 1, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "CommandName": "Add-PnPStoredCredential", - "Id": 176 + "Id": 176, + "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": 177 + "Id": 177, + "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": 178 + "Id": 178, + "CommandName": "Add-PnPStoredCredential" }, { "Rank": 1, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "CommandName": "Add-PnPTaxonomyField", - "Id": 179 + "Id": 179, + "CommandName": "Add-PnPTaxonomyField" }, { "Rank": 2, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "CommandName": "Add-PnPTaxonomyField", - "Id": 180 + "Id": 180, + "CommandName": "Add-PnPTaxonomyField" }, { "Rank": 1, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "CommandName": "Add-PnPTeamsChannel", - "Id": 181 + "Id": 181, + "CommandName": "Add-PnPTeamsChannel" }, { "Rank": 2, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "CommandName": "Add-PnPTeamsChannel", - "Id": 182 + "Id": 182, + "CommandName": "Add-PnPTeamsChannel" }, { "Rank": 3, "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "CommandName": "Add-PnPTeamsChannel", - "Id": 183 + "Id": 183, + "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": 184 + "Id": 184, + "CommandName": "Add-PnPTeamsChannel" }, { "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": 185 + "Id": 185, + "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": 186 + "Id": 186, + "CommandName": "Add-PnpTeamsChannelUser" }, { "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": 187 + "Id": 187, + "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": 188 + "Id": 188, + "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": 189 + "Id": 189, + "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": 190 + "Id": 190, + "CommandName": "Add-PnPTeamsTab" }, { "Rank": 1, "Command": "Add-PnPTeamsTeam", - "CommandName": "Add-PnPTeamsTeam", - "Id": 191 + "Id": 191, + "CommandName": "Add-PnPTeamsTeam" }, { "Rank": 1, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Add-PnPTeamsUser", - "Id": 192 + "Id": 192, + "CommandName": "Add-PnPTeamsUser" }, { "Rank": 2, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Add-PnPTeamsUser", - "Id": 193 + "Id": 193, + "CommandName": "Add-PnPTeamsUser" }, { "Rank": 3, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "CommandName": "Add-PnPTeamsUser", - "Id": 194 + "Id": 194, + "CommandName": "Add-PnPTeamsUser" }, { "Rank": 4, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "CommandName": "Add-PnPTeamsUser", - "Id": 195 + "Id": 195, + "CommandName": "Add-PnPTeamsUser" }, { "Rank": 1, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Add-PnPTenantCdnOrigin", - "Id": 196 + "Id": 196, + "CommandName": "Add-PnPTenantCdnOrigin" }, { "Rank": 1, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequence", - "Id": 197 + "Id": 197, + "CommandName": "Add-PnPTenantSequence" }, { "Rank": 1, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "CommandName": "Add-PnPTenantSequenceSite", - "Id": 198 + "Id": 198, + "CommandName": "Add-PnPTenantSequenceSite" }, { "Rank": 1, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "CommandName": "Add-PnPTenantSequenceSubSite", - "Id": 199 + "Id": 199, + "CommandName": "Add-PnPTenantSequenceSubSite" }, { "Rank": 1, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "CommandName": "Add-PnPTermToTerm", - "Id": 200 + "Id": 200, + "CommandName": "Add-PnPTermToTerm" }, { "Rank": 1, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "CommandName": "Add-PnPView", - "Id": 201 + "Id": 201, + "CommandName": "Add-PnPView" }, { "Rank": 2, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "CommandName": "Add-PnPView", - "Id": 202 + "Id": 202, + "CommandName": "Add-PnPView" }, { "Rank": 3, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "CommandName": "Add-PnPView", - "Id": 203 + "Id": 203, + "CommandName": "Add-PnPView" }, { "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": 204 + "Id": 204, + "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": 205 + "Id": 205, + "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": 206 + "Id": 206, + "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { "Rank": 1, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "CommandName": "Add-PnPWebhookSubscription", - "Id": 207 + "Id": 207, + "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": 208 + "Id": 208, + "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": 209 + "Id": 209, + "CommandName": "Add-PnPWebhookSubscription" }, { "Rank": 1, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 210 + "Id": 210, + "CommandName": "Add-PnPWebPartToWebPartPage" }, { "Rank": 2, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "CommandName": "Add-PnPWebPartToWebPartPage", - "Id": 211 + "Id": 211, + "CommandName": "Add-PnPWebPartToWebPartPage" }, { "Rank": 1, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 212 + "Id": 212, + "CommandName": "Add-PnPWebPartToWikiPage" }, { "Rank": 2, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "CommandName": "Add-PnPWebPartToWikiPage", - "Id": 213 + "Id": 213, + "CommandName": "Add-PnPWebPartToWikiPage" }, { "Rank": 1, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "CommandName": "Add-PnPWikiPage", - "Id": 214 + "Id": 214, + "CommandName": "Add-PnPWikiPage" }, { "Rank": 1, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupMember", - "Id": 215 + "Id": 215, + "CommandName": "Clear-PnPAzureADGroupMember" }, { "Rank": 1, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPAzureADGroupOwner", - "Id": 216 + "Id": 216, + "CommandName": "Clear-PnPAzureADGroupOwner" }, { "Rank": 1, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 217 + "Id": 217, + "CommandName": "Clear-PnPDefaultColumnValues" }, { "Rank": 2, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "CommandName": "Clear-PnPDefaultColumnValues", - "Id": 218 + "Id": 218, + "CommandName": "Clear-PnPDefaultColumnValues" }, { "Rank": 1, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Clear-PnPListItemAsRecord", - "Id": 219 + "Id": 219, + "CommandName": "Clear-PnPListItemAsRecord" }, { "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Id": 220 + "Id": 220, + "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Id": 221 + "Id": 221, + "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { "Rank": 1, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 222 + "Id": 222, + "CommandName": "Clear-PnpRecycleBinItem" }, { "Rank": 2, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 223 + "Id": 223, + "CommandName": "Clear-PnpRecycleBinItem" }, { "Rank": 3, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "CommandName": "Clear-PnpRecycleBinItem", - "Id": 224 + "Id": 224, + "CommandName": "Clear-PnpRecycleBinItem" }, { "Rank": 1, "Command": "Clear-PnPTenantAppCatalogUrl", - "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Id": 225 + "Id": 225, + "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { "Rank": 1, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 226 + "Id": 226, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { "Rank": 2, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Id": 227 + "Id": 227, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { "Rank": 1, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 228 + "Id": 228, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { "Rank": 2, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Id": 229 + "Id": 229, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { "Rank": 1, "Command": "Convert-PnPSiteTemplate -Path template.xml", - "CommandName": "Convert-PnPSiteTemplate", - "Id": 230 + "Id": 230, + "CommandName": "Convert-PnPSiteTemplate" }, { "Rank": 2, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "CommandName": "Convert-PnPSiteTemplate", - "Id": 231 + "Id": 231, + "CommandName": "Convert-PnPSiteTemplate" }, { "Rank": 3, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "CommandName": "Convert-PnPSiteTemplate", - "Id": 232 + "Id": 232, + "CommandName": "Convert-PnPSiteTemplate" }, { "Rank": 1, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 233 + "Id": 233, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { "Rank": 2, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Id": 234 + "Id": 234, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { "Rank": 1, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", - "Id": 235 + "Id": 235, + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 2, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "CommandName": "ConvertTo-PnPPage", - "Id": 236 + "Id": 236, + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 3, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "CommandName": "ConvertTo-PnPPage", - "Id": 237 + "Id": 237, + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 4, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "CommandName": "ConvertTo-PnPPage", - "Id": 238 + "Id": 238, + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 5, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", - "Id": 239 + "Id": 239, + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 6, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "CommandName": "ConvertTo-PnPPage", - "Id": 240 + "Id": 240, + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 7, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", - "Id": 241 + "Id": 241, + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 8, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "CommandName": "ConvertTo-PnPPage", - "Id": 242 + "Id": 242, + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 9, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "CommandName": "ConvertTo-PnPPage", - "Id": 243 + "Id": 243, + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 10, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "CommandName": "ConvertTo-PnPPage", - "Id": 244 + "Id": 244, + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 11, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "CommandName": "ConvertTo-PnPPage", - "Id": 245 + "Id": 245, + "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": 246 + "Id": 246, + "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": 247 + "Id": 247, + "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": 248 + "Id": 248, + "CommandName": "ConvertTo-PnPPage" }, { "Rank": 1, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", - "Id": 249 + "Id": 249, + "CommandName": "Copy-PnPFile" }, { "Rank": 2, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFile", - "Id": 250 + "Id": 250, + "CommandName": "Copy-PnPFile" }, { "Rank": 3, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFile", - "Id": 251 + "Id": 251, + "CommandName": "Copy-PnPFile" }, { "Rank": 4, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", - "Id": 252 + "Id": 252, + "CommandName": "Copy-PnPFile" }, { "Rank": 5, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFile", - "Id": 253 + "Id": 253, + "CommandName": "Copy-PnPFile" }, { "Rank": 6, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFile", - "Id": 254 + "Id": 254, + "CommandName": "Copy-PnPFile" }, { "Rank": 7, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFile", - "Id": 255 + "Id": 255, + "CommandName": "Copy-PnPFile" }, { "Rank": 8, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", - "Id": 256 + "Id": 256, + "CommandName": "Copy-PnPFile" }, { "Rank": 9, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFile", - "Id": 257 + "Id": 257, + "CommandName": "Copy-PnPFile" }, { "Rank": 10, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFile", - "Id": 258 + "Id": 258, + "CommandName": "Copy-PnPFile" }, { "Rank": 1, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", - "Id": 259 + "Id": 259, + "CommandName": "Copy-PnPFolder" }, { "Rank": 2, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "CommandName": "Copy-PnPFolder", - "Id": 260 + "Id": 260, + "CommandName": "Copy-PnPFolder" }, { "Rank": 3, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "CommandName": "Copy-PnPFolder", - "Id": 261 + "Id": 261, + "CommandName": "Copy-PnPFolder" }, { "Rank": 4, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", - "Id": 262 + "Id": 262, + "CommandName": "Copy-PnPFolder" }, { "Rank": 5, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "CommandName": "Copy-PnPFolder", - "Id": 263 + "Id": 263, + "CommandName": "Copy-PnPFolder" }, { "Rank": 6, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "CommandName": "Copy-PnPFolder", - "Id": 264 + "Id": 264, + "CommandName": "Copy-PnPFolder" }, { "Rank": 7, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "CommandName": "Copy-PnPFolder", - "Id": 265 + "Id": 265, + "CommandName": "Copy-PnPFolder" }, { "Rank": 8, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", - "Id": 266 + "Id": 266, + "CommandName": "Copy-PnPFolder" }, { "Rank": 9, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "CommandName": "Copy-PnPFolder", - "Id": 267 + "Id": 267, + "CommandName": "Copy-PnPFolder" }, { "Rank": 10, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "CommandName": "Copy-PnPFolder", - "Id": 268 + "Id": 268, + "CommandName": "Copy-PnPFolder" }, { "Rank": 1, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "CommandName": "Copy-PnPItemProxy", - "Id": 269 + "Id": 269, + "CommandName": "Copy-PnPItemProxy" }, { "Rank": 1, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "CommandName": "Copy-PnPList", - "Id": 270 + "Id": 270, + "CommandName": "Copy-PnPList" }, { "Rank": 2, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "CommandName": "Copy-PnPList", - "Id": 271 + "Id": 271, + "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": 272 + "Id": 272, + "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": 273 + "Id": 273, + "CommandName": "Copy-PnPList" }, { "Rank": 1, "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "CommandName": "Copy-PnPTeamsTeam", - "Id": 274 + "Id": 274, + "CommandName": "Copy-PnPTeamsTeam" }, { "Rank": 2, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "CommandName": "Copy-PnPTeamsTeam", - "Id": 275 + "Id": 275, + "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": 276 + "Id": 276, + "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": 277 + "Id": 277, + "CommandName": "Copy-PnPTeamsTeam" }, { "Rank": 1, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Disable-PnPFeature", - "Id": 278 + "Id": 278, + "CommandName": "Disable-PnPFeature" }, { "Rank": 2, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Disable-PnPFeature", - "Id": 279 + "Id": 279, + "CommandName": "Disable-PnPFeature" }, { "Rank": 3, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Disable-PnPFeature", - "Id": 280 + "Id": 280, + "CommandName": "Disable-PnPFeature" }, { "Rank": 1, "Command": "Disable-PnPPageScheduling", - "CommandName": "Disable-PnPPageScheduling", - "Id": 281 + "Id": 281, + "CommandName": "Disable-PnPPageScheduling" }, { "Rank": 1, "Command": "Disable-PnPPowerShellTelemetry", - "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 282 + "Id": 282, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { "Rank": 2, "Command": "Disable-PnPPowerShellTelemetry -Force", - "CommandName": "Disable-PnPPowerShellTelemetry", - "Id": 283 + "Id": 283, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { "Rank": 1, "Command": "Disable-PnPSharingForNonOwnersOfSite", - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 284 + "Id": 284, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { "Rank": 1, "Command": "Disable-PnPSiteClassification", - "CommandName": "Disable-PnPSiteClassification", - "Id": 285 + "Id": 285, + "CommandName": "Disable-PnPSiteClassification" }, { "Rank": 1, "Command": "Disconnect-PnPOnline", - "CommandName": "Disconnect-PnPOnline", - "Id": 286 + "Id": 286, + "CommandName": "Disconnect-PnPOnline" }, { "Rank": 1, "Command": "Enable-PnPCommSite", - "CommandName": "Enable-PnPCommSite", - "Id": 287 + "Id": 287, + "CommandName": "Enable-PnPCommSite" }, { "Rank": 2, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "CommandName": "Enable-PnPCommSite", - "Id": 288 + "Id": 288, + "CommandName": "Enable-PnPCommSite" }, { "Rank": 1, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Enable-PnPFeature", - "Id": 289 + "Id": 289, + "CommandName": "Enable-PnPFeature" }, { "Rank": 2, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "CommandName": "Enable-PnPFeature", - "Id": 290 + "Id": 290, + "CommandName": "Enable-PnPFeature" }, { "Rank": 3, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "CommandName": "Enable-PnPFeature", - "Id": 291 + "Id": 291, + "CommandName": "Enable-PnPFeature" }, { "Rank": 1, "Command": "Enable-PnPPageScheduling", - "CommandName": "Enable-PnPPageScheduling", - "Id": 292 + "Id": 292, + "CommandName": "Enable-PnPPageScheduling" }, { "Rank": 1, "Command": "Enable-PnPPowerShellTelemetry", - "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 293 + "Id": 293, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { "Rank": 2, "Command": "Enable-PnPPowerShellTelemetry -Force", - "CommandName": "Enable-PnPPowerShellTelemetry", - "Id": 294 + "Id": 294, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { "Rank": 1, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "CommandName": "Enable-PnPSiteClassification", - "Id": 295 + "Id": 295, + "CommandName": "Enable-PnPSiteClassification" }, { "Rank": 2, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Enable-PnPSiteClassification", - "Id": 296 + "Id": 296, + "CommandName": "Enable-PnPSiteClassification" }, { "Rank": 1, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "CommandName": "Export-PnPListToSiteTemplate", - "Id": 297 + "Id": 297, + "CommandName": "Export-PnPListToSiteTemplate" }, { "Rank": 2, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "CommandName": "Export-PnPListToSiteTemplate", - "Id": 298 + "Id": 298, + "CommandName": "Export-PnPListToSiteTemplate" }, { "Rank": 1, "Command": "Export-PnPPage -Identity Home.aspx", - "CommandName": "Export-PnPPage", - "Id": 299 + "Id": 299, + "CommandName": "Export-PnPPage" }, { "Rank": 1, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", - "Id": 300 + "Id": 300, + "CommandName": "Export-PnPPageMapping" }, { "Rank": 2, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", - "Id": 301 + "Id": 301, + "CommandName": "Export-PnPPageMapping" }, { "Rank": 3, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "CommandName": "Export-PnPPageMapping", - "Id": 302 + "Id": 302, + "CommandName": "Export-PnPPageMapping" }, { "Rank": 1, "Command": "Export-PnPTaxonomy", - "CommandName": "Export-PnPTaxonomy", - "Id": 303 + "Id": 303, + "CommandName": "Export-PnPTaxonomy" }, { "Rank": 2, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "CommandName": "Export-PnPTaxonomy", - "Id": 304 + "Id": 304, + "CommandName": "Export-PnPTaxonomy" }, { "Rank": 3, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "CommandName": "Export-PnPTaxonomy", - "Id": 305 + "Id": 305, + "CommandName": "Export-PnPTaxonomy" }, { "Rank": 4, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "CommandName": "Export-PnPTaxonomy", - "Id": 306 + "Id": 306, + "CommandName": "Export-PnPTaxonomy" }, { "Rank": 1, "Command": "Export-PnPTermGroupToXml", - "CommandName": "Export-PnPTermGroupToXml", - "Id": 307 + "Id": 307, + "CommandName": "Export-PnPTermGroupToXml" }, { "Rank": 2, "Command": "Export-PnPTermGroupToXml -Out output.xml", - "CommandName": "Export-PnPTermGroupToXml", - "Id": 308 + "Id": 308, + "CommandName": "Export-PnPTermGroupToXml" }, { "Rank": 3, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "CommandName": "Export-PnPTermGroupToXml", - "Id": 309 + "Id": 309, + "CommandName": "Export-PnPTermGroupToXml" }, { "Rank": 1, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Export-PnPUserInfo", - "Id": 310 + "Id": 310, + "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": 311 + "Id": 311, + "CommandName": "Export-PnPUserInfo" }, { "Rank": 1, "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Export-PnPUserProfile", - "Id": 312 + "Id": 312, + "CommandName": "Export-PnPUserProfile" }, { "Rank": 2, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "CommandName": "Export-PnPUserProfile", - "Id": 313 + "Id": 313, + "CommandName": "Export-PnPUserProfile" }, { "Rank": 1, "Command": "Find-PnPFile -Match *.master", - "CommandName": "Find-PnPFile", - "Id": 314 + "Id": 314, + "CommandName": "Find-PnPFile" }, { "Rank": 2, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "CommandName": "Find-PnPFile", - "Id": 315 + "Id": 315, + "CommandName": "Find-PnPFile" }, { "Rank": 3, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "CommandName": "Find-PnPFile", - "Id": 316 + "Id": 316, + "CommandName": "Find-PnPFile" }, { "Rank": 1, "Command": "Get-PnPAccessToken", - "CommandName": "Get-PnPAccessToken", - "Id": 317 + "Id": 317, + "CommandName": "Get-PnPAccessToken" }, { "Rank": 2, "Command": "Get-PnPAccessToken -Decoded", - "CommandName": "Get-PnPAccessToken", - "Id": 318 + "Id": 318, + "CommandName": "Get-PnPAccessToken" }, { "Rank": 3, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "CommandName": "Get-PnPAccessToken", - "Id": 319 + "Id": 319, + "CommandName": "Get-PnPAccessToken" }, { "Rank": 4, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "CommandName": "Get-PnPAccessToken", - "Id": 320 + "Id": 320, + "CommandName": "Get-PnPAccessToken" }, { "Rank": 5, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "CommandName": "Get-PnPAccessToken", - "Id": 321 + "Id": 321, + "CommandName": "Get-PnPAccessToken" }, { "Rank": 1, "Command": "Get-PnPAlert", - "CommandName": "Get-PnPAlert", - "Id": 322 + "Id": 322, + "CommandName": "Get-PnPAlert" }, { "Rank": 2, "Command": "Get-PnPAlert -List \"Demo List\"", - "CommandName": "Get-PnPAlert", - "Id": 323 + "Id": 323, + "CommandName": "Get-PnPAlert" }, { "Rank": 3, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPAlert", - "Id": 324 + "Id": 324, + "CommandName": "Get-PnPAlert" }, { "Rank": 4, "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "CommandName": "Get-PnPAlert", - "Id": 325 + "Id": 325, + "CommandName": "Get-PnPAlert" }, { "Rank": 5, "Command": "Get-PnPAlert -AllUsers", - "CommandName": "Get-PnPAlert", - "Id": 326 + "Id": 326, + "CommandName": "Get-PnPAlert" }, { "Rank": 6, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "CommandName": "Get-PnPAlert", - "Id": 327 + "Id": 327, + "CommandName": "Get-PnPAlert" }, { "Rank": 1, "Command": "Get-PnPApp", - "CommandName": "Get-PnPApp", - "Id": 328 + "Id": 328, + "CommandName": "Get-PnPApp" }, { "Rank": 2, "Command": "Get-PnPApp -Scope Site", - "CommandName": "Get-PnPApp", - "Id": 329 + "Id": 329, + "CommandName": "Get-PnPApp" }, { "Rank": 3, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPApp", - "Id": 330 + "Id": 330, + "CommandName": "Get-PnPApp" }, { "Rank": 1, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "CommandName": "Get-PnPAppErrors", - "Id": 331 + "Id": 331, + "CommandName": "Get-PnPAppErrors" }, { "Rank": 2, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "CommandName": "Get-PnPAppErrors", - "Id": 332 + "Id": 332, + "CommandName": "Get-PnPAppErrors" }, { "Rank": 1, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "CommandName": "Get-PnPAppInfo", - "Id": 333 + "Id": 333, + "CommandName": "Get-PnPAppInfo" }, { "Rank": 2, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Get-PnPAppInfo", - "Id": 334 + "Id": 334, + "CommandName": "Get-PnPAppInfo" }, { "Rank": 3, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "CommandName": "Get-PnPAppInfo", - "Id": 335 + "Id": 335, + "CommandName": "Get-PnPAppInfo" }, { "Rank": 1, "Command": "Get-PnPApplicationCustomizer", - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 336 + "Id": 336, + "CommandName": "Get-PnPApplicationCustomizer" }, { "Rank": 2, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 337 + "Id": 337, + "CommandName": "Get-PnPApplicationCustomizer" }, { "Rank": 3, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "CommandName": "Get-PnPApplicationCustomizer", - "Id": 338 + "Id": 338, + "CommandName": "Get-PnPApplicationCustomizer" }, { "Rank": 1, "Command": "Get-PnPAuditing", - "CommandName": "Get-PnPAuditing", - "Id": 339 + "Id": 339, + "CommandName": "Get-PnPAuditing" }, { "Rank": 1, "Command": "Get-PnPAuthenticationRealm", - "CommandName": "Get-PnPAuthenticationRealm", - "Id": 340 + "Id": 340, + "CommandName": "Get-PnPAuthenticationRealm" }, { "Rank": 2, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "CommandName": "Get-PnPAuthenticationRealm", - "Id": 341 + "Id": 341, + "CommandName": "Get-PnPAuthenticationRealm" }, { "Rank": 1, "Command": "Get-PnPAvailableLanguage", - "CommandName": "Get-PnPAvailableLanguage", - "Id": 342 + "Id": 342, + "CommandName": "Get-PnPAvailableLanguage" }, { "Rank": 1, "Command": "Get-PnPAvailableSensitivityLabel", - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 343 + "Id": 343, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Rank": 2, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 344 + "Id": 344, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Rank": 3, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Id": 345 + "Id": 345, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { "Rank": 1, "Command": "Get-PnPAvailableSiteClassification", - "CommandName": "Get-PnPAvailableSiteClassification", - "Id": 346 + "Id": 346, + "CommandName": "Get-PnPAvailableSiteClassification" }, { "Rank": 1, "Command": "Get-PnPAzureACSPrincipal", - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 347 + "Id": 347, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Rank": 2, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 348 + "Id": 348, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Rank": 3, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 349 + "Id": 349, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Rank": 4, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "CommandName": "Get-PnPAzureACSPrincipal", - "Id": 350 + "Id": 350, + "CommandName": "Get-PnPAzureACSPrincipal" }, { "Rank": 1, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 351 + "Id": 351, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Rank": 2, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 352 + "Id": 352, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Rank": 3, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 353 + "Id": 353, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Rank": 1, "Command": "Get-PnPAzureADActivityReportSignIn", - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 354 + "Id": 354, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Rank": 2, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 355 + "Id": 355, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Rank": 3, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Id": 356 + "Id": 356, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { "Rank": 1, "Command": "Get-PnPAzureADApp", - "CommandName": "Get-PnPAzureADApp", - "Id": 357 + "Id": 357, + "CommandName": "Get-PnPAzureADApp" }, { "Rank": 2, "Command": "Get-PnPAzureADApp -Identity MyApp", - "CommandName": "Get-PnPAzureADApp", - "Id": 358 + "Id": 358, + "CommandName": "Get-PnPAzureADApp" }, { "Rank": 3, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADApp", - "Id": 359 + "Id": 359, + "CommandName": "Get-PnPAzureADApp" }, { "Rank": 4, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADApp", - "Id": 360 + "Id": 360, + "CommandName": "Get-PnPAzureADApp" }, { "Rank": 1, "Command": "Get-PnPAzureADAppPermission", - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 361 + "Id": 361, + "CommandName": "Get-PnPAzureADAppPermission" }, { "Rank": 2, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 362 + "Id": 362, + "CommandName": "Get-PnPAzureADAppPermission" }, { "Rank": 3, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Get-PnPAzureADAppPermission", - "Id": 363 + "Id": 363, + "CommandName": "Get-PnPAzureADAppPermission" }, { "Rank": 1, "Command": "Get-PnPAzureADAppSitePermission", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 364 + "Id": 364, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Rank": 2, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 365 + "Id": 365, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Rank": 3, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 366 + "Id": 366, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Rank": 4, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 367 + "Id": 367, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Rank": 5, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "CommandName": "Get-PnPAzureADAppSitePermission", - "Id": 368 + "Id": 368, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { "Rank": 1, "Command": "Get-PnPAzureADGroup", - "CommandName": "Get-PnPAzureADGroup", - "Id": 369 + "Id": 369, + "CommandName": "Get-PnPAzureADGroup" }, { "Rank": 2, "Command": "Get-PnPAzureADGroup -Identity $groupId", - "CommandName": "Get-PnPAzureADGroup", - "Id": 370 + "Id": 370, + "CommandName": "Get-PnPAzureADGroup" }, { "Rank": 3, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "CommandName": "Get-PnPAzureADGroup", - "Id": 371 + "Id": 371, + "CommandName": "Get-PnPAzureADGroup" }, { "Rank": 4, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPAzureADGroup", - "Id": 372 + "Id": 372, + "CommandName": "Get-PnPAzureADGroup" }, { "Rank": 5, "Command": "Get-PnPAzureADGroup -Identity $group", - "CommandName": "Get-PnPAzureADGroup", - "Id": 373 + "Id": 373, + "CommandName": "Get-PnPAzureADGroup" }, { "Rank": 1, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupMember", - "Id": 374 + "Id": 374, + "CommandName": "Get-PnPAzureADGroupMember" }, { "Rank": 2, "Command": "Get-PnPAzureADGroupMember -Identity $group", - "CommandName": "Get-PnPAzureADGroupMember", - "Id": 375 + "Id": 375, + "CommandName": "Get-PnPAzureADGroupMember" }, { "Rank": 1, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 376 + "Id": 376, + "CommandName": "Get-PnPAzureADGroupOwner" }, { "Rank": 2, "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "CommandName": "Get-PnPAzureADGroupOwner", - "Id": 377 + "Id": 377, + "CommandName": "Get-PnPAzureADGroupOwner" }, { "Rank": 1, "Command": "Get-PnPAzureADServicePrincipal", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 378 + "Id": 378, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Rank": 2, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 379 + "Id": 379, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Rank": 3, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 380 + "Id": 380, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Rank": 4, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 381 + "Id": 381, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Rank": 5, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPAzureADServicePrincipal", - "Id": 382 + "Id": 382, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 383 + "Id": 383, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 384 + "Id": 384, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 385 + "Id": 385, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Id": 386 + "Id": 386, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { "Rank": 1, "Command": "Get-PnPAzureADUser", - "CommandName": "Get-PnPAzureADUser", - "Id": 387 + "Id": 387, + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 2, "Command": "Get-PnPAzureADUser -EndIndex 50", - "CommandName": "Get-PnPAzureADUser", - "Id": 388 + "Id": 388, + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 3, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPAzureADUser", - "Id": 389 + "Id": 389, + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 4, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "CommandName": "Get-PnPAzureADUser", - "Id": 390 + "Id": 390, + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 5, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "CommandName": "Get-PnPAzureADUser", - "Id": 391 + "Id": 391, + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 6, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "CommandName": "Get-PnPAzureADUser", - "Id": 392 + "Id": 392, + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 7, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "CommandName": "Get-PnPAzureADUser", - "Id": 393 + "Id": 393, + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 8, "Command": "Get-PnPAzureADUser -Delta", - "CommandName": "Get-PnPAzureADUser", - "Id": 394 + "Id": 394, + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 9, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "CommandName": "Get-PnPAzureADUser", - "Id": 395 + "Id": 395, + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 10, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "CommandName": "Get-PnPAzureADUser", - "Id": 396 + "Id": 396, + "CommandName": "Get-PnPAzureADUser" }, { "Rank": 1, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "CommandName": "Get-PnPAzureCertificate", - "Id": 397 + "Id": 397, + "CommandName": "Get-PnPAzureCertificate" }, { "Rank": 2, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "CommandName": "Get-PnPAzureCertificate", - "Id": 398 + "Id": 398, + "CommandName": "Get-PnPAzureCertificate" }, { "Rank": 3, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "CommandName": "Get-PnPAzureCertificate", - "Id": 399 + "Id": 399, + "CommandName": "Get-PnPAzureCertificate" }, { "Rank": 1, "Command": "Get-PnPBrowserIdleSignout", - "CommandName": "Get-PnPBrowserIdleSignout", - "Id": 400 + "Id": 400, + "CommandName": "Get-PnPBrowserIdleSignout" }, { "Rank": 1, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 401 + "Id": 401, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { "Rank": 2, "Command": "Get-PnPBuiltInDesignPackageVisibility", - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 402 + "Id": 402, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { "Rank": 1, "Command": "Get-PnPBuiltInSiteTemplateSettings", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 403 + "Id": 403, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Rank": 2, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 404 + "Id": 404, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Rank": 3, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 405 + "Id": 405, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Rank": 4, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 406 + "Id": 406, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Rank": 5, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 407 + "Id": 407, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { "Rank": 1, "Command": "Get-PnPChangeLog", - "CommandName": "Get-PnPChangeLog", - "Id": 408 + "Id": 408, + "CommandName": "Get-PnPChangeLog" }, { "Rank": 2, "Command": "Get-PnPChangeLog -Nightly", - "CommandName": "Get-PnPChangeLog", - "Id": 409 + "Id": 409, + "CommandName": "Get-PnPChangeLog" }, { "Rank": 1, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Id": 410 + "Id": 410, + "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": 411 + "Id": 411, + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { "Rank": 1, "Command": "Get-PnPContentType", - "CommandName": "Get-PnPContentType", - "Id": 412 + "Id": 412, + "CommandName": "Get-PnPContentType" }, { "Rank": 2, "Command": "Get-PnPContentType -InSiteHierarchy", - "CommandName": "Get-PnPContentType", - "Id": 413 + "Id": 413, + "CommandName": "Get-PnPContentType" }, { "Rank": 3, "Command": "Get-PnPContentType -Identity \"Project Document\"", - "CommandName": "Get-PnPContentType", - "Id": 414 + "Id": 414, + "CommandName": "Get-PnPContentType" }, { "Rank": 4, "Command": "Get-PnPContentType -List \"Documents\"", - "CommandName": "Get-PnPContentType", - "Id": 415 + "Id": 415, + "CommandName": "Get-PnPContentType" }, { "Rank": 1, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "CommandName": "Get-PnPContentTypePublishingStatus", - "Id": 416 + "Id": 416, + "CommandName": "Get-PnPContentTypePublishingStatus" }, { "Rank": 1, "Command": "Get-PnPCustomAction", - "CommandName": "Get-PnPCustomAction", - "Id": 417 + "Id": 417, + "CommandName": "Get-PnPCustomAction" }, { "Rank": 2, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Get-PnPCustomAction", - "Id": 418 + "Id": 418, + "CommandName": "Get-PnPCustomAction" }, { "Rank": 3, "Command": "Get-PnPCustomAction -Scope web", - "CommandName": "Get-PnPCustomAction", - "Id": 419 + "Id": 419, + "CommandName": "Get-PnPCustomAction" }, { "Rank": 1, "Command": "Get-PnPDeletedMicrosoft365Group", - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 420 + "Id": 420, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { "Rank": 2, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Id": 421 + "Id": 421, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { "Rank": 1, "Command": "Get-PnPDeletedTeam", - "CommandName": "Get-PnPDeletedTeam", - "Id": 422 + "Id": 422, + "CommandName": "Get-PnPDeletedTeam" }, { "Rank": 1, "Command": "Get-PnPDiagnostics", - "CommandName": "Get-PnPDiagnostics", - "Id": 423 + "Id": 423, + "CommandName": "Get-PnPDiagnostics" }, { "Rank": 1, "Command": "Get-PnPDisableSpacesActivation", - "CommandName": "Get-PnPDisableSpacesActivation", - "Id": 424 + "Id": 424, + "CommandName": "Get-PnPDisableSpacesActivation" }, { "Rank": 1, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 425 + "Id": 425, + "CommandName": "Get-PnPDocumentSetTemplate" }, { "Rank": 2, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "CommandName": "Get-PnPDocumentSetTemplate", - "Id": 426 + "Id": 426, + "CommandName": "Get-PnPDocumentSetTemplate" }, { "Rank": 1, "Command": "Get-PnPEventReceiver", - "CommandName": "Get-PnPEventReceiver", - "Id": 427 + "Id": 427, + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 2, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver", - "Id": 428 + "Id": 428, + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 3, "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver", - "Id": 429 + "Id": 429, + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 4, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "CommandName": "Get-PnPEventReceiver", - "Id": 430 + "Id": 430, + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 5, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPEventReceiver", - "Id": 431 + "Id": 431, + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 6, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "CommandName": "Get-PnPEventReceiver", - "Id": 432 + "Id": 432, + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 7, "Command": "Get-PnPEventReceiver -Scope Site", - "CommandName": "Get-PnPEventReceiver", - "Id": 433 + "Id": 433, + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 8, "Command": "Get-PnPEventReceiver -Scope Web", - "CommandName": "Get-PnPEventReceiver", - "Id": 434 + "Id": 434, + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 9, "Command": "Get-PnPEventReceiver -Scope All", - "CommandName": "Get-PnPEventReceiver", - "Id": 435 + "Id": 435, + "CommandName": "Get-PnPEventReceiver" }, { "Rank": 1, "Command": "Get-PnPException", - "CommandName": "Get-PnPException", - "Id": 436 + "Id": 436, + "CommandName": "Get-PnPException" }, { "Rank": 2, "Command": "Get-PnPException -All", - "CommandName": "Get-PnPException", - "Id": 437 + "Id": 437, + "CommandName": "Get-PnPException" }, { "Rank": 1, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "CommandName": "Get-PnPExternalUser", - "Id": 438 + "Id": 438, + "CommandName": "Get-PnPExternalUser" }, { "Rank": 2, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "CommandName": "Get-PnPExternalUser", - "Id": 439 + "Id": 439, + "CommandName": "Get-PnPExternalUser" }, { "Rank": 1, "Command": "Get-PnPFeature", - "CommandName": "Get-PnPFeature", - "Id": 440 + "Id": 440, + "CommandName": "Get-PnPFeature" }, { "Rank": 2, "Command": "Get-PnPFeature -Scope Site", - "CommandName": "Get-PnPFeature", - "Id": 441 + "Id": 441, + "CommandName": "Get-PnPFeature" }, { "Rank": 3, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Get-PnPFeature", - "Id": 442 + "Id": 442, + "CommandName": "Get-PnPFeature" }, { "Rank": 4, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "CommandName": "Get-PnPFeature", - "Id": 443 + "Id": 443, + "CommandName": "Get-PnPFeature" }, { "Rank": 1, "Command": "Get-PnPField", - "CommandName": "Get-PnPField", - "Id": 444 + "Id": 444, + "CommandName": "Get-PnPField" }, { "Rank": 2, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Get-PnPField", - "Id": 445 + "Id": 445, + "CommandName": "Get-PnPField" }, { "Rank": 3, "Command": "Get-PnPField -Group \"Custom Columns\"", - "CommandName": "Get-PnPField", - "Id": 446 + "Id": 446, + "CommandName": "Get-PnPField" }, { "Rank": 1, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "CommandName": "Get-PnPFile", - "Id": 447 + "Id": 447, + "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": 448 + "Id": 448, + "CommandName": "Get-PnPFile" }, { "Rank": 3, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "CommandName": "Get-PnPFile", - "Id": 449 + "Id": 449, + "CommandName": "Get-PnPFile" }, { "Rank": 4, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "CommandName": "Get-PnPFile", - "Id": 450 + "Id": 450, + "CommandName": "Get-PnPFile" }, { "Rank": 5, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "CommandName": "Get-PnPFile", - "Id": 451 + "Id": 451, + "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": 452 + "Id": 452, + "CommandName": "Get-PnPFile" }, { "Rank": 7, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "CommandName": "Get-PnPFile", - "Id": 453 + "Id": 453, + "CommandName": "Get-PnPFile" }, { "Rank": 1, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Get-PnPFileSharingLink", - "Id": 454 + "Id": 454, + "CommandName": "Get-PnPFileSharingLink" }, { "Rank": 1, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "CommandName": "Get-PnPFileVersion", - "Id": 455 + "Id": 455, + "CommandName": "Get-PnPFileVersion" }, { "Rank": 2, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "CommandName": "Get-PnPFileVersion", - "Id": 456 + "Id": 456, + "CommandName": "Get-PnPFileVersion" }, { "Rank": 1, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "CommandName": "Get-PnPFlow", - "Id": 457 + "Id": 457, + "CommandName": "Get-PnPFlow" }, { "Rank": 1, "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "CommandName": "Get-PnPFolder", - "Id": 458 + "Id": 458, + "CommandName": "Get-PnPFolder" }, { "Rank": 2, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "CommandName": "Get-PnPFolder", - "Id": 459 + "Id": 459, + "CommandName": "Get-PnPFolder" }, { "Rank": 3, "Command": "Get-PnPFolder -List \"Shared Documents\"", - "CommandName": "Get-PnPFolder", - "Id": 460 + "Id": 460, + "CommandName": "Get-PnPFolder" }, { "Rank": 1, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\"", - "CommandName": "Get-PnPFolderItem", - "Id": 461 + "Id": 461, + "CommandName": "Get-PnPFolderItem" }, { "Rank": 2, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "CommandName": "Get-PnPFolderItem", - "Id": 462 + "Id": 462, + "CommandName": "Get-PnPFolderItem" }, { "Rank": 3, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "CommandName": "Get-PnPFolderItem", - "Id": 463 + "Id": 463, + "CommandName": "Get-PnPFolderItem" }, { "Rank": 4, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType File", - "CommandName": "Get-PnPFolderItem", - "Id": 464 + "Id": 464, + "CommandName": "Get-PnPFolderItem" }, { "Rank": 5, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "CommandName": "Get-PnPFolderItem", - "Id": 465 + "Id": 465, + "CommandName": "Get-PnPFolderItem" }, { "Rank": 1, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Get-PnPFolderSharingLink", - "Id": 466 + "Id": 466, + "CommandName": "Get-PnPFolderSharingLink" }, { "Rank": 1, "Command": "Get-PnPFolderStorageMetric", - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 467 + "Id": 467, + "CommandName": "Get-PnPFolderStorageMetric" }, { "Rank": 2, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 468 + "Id": 468, + "CommandName": "Get-PnPFolderStorageMetric" }, { "Rank": 3, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "CommandName": "Get-PnPFolderStorageMetric", - "Id": 469 + "Id": 469, + "CommandName": "Get-PnPFolderStorageMetric" }, { "Rank": 1, "Command": "Get-PnPFooter", - "CommandName": "Get-PnPFooter", - "Id": 470 + "Id": 470, + "CommandName": "Get-PnPFooter" }, { "Rank": 1, "Command": "Get-PnPGraphAccessToken", - "CommandName": "Get-PnPGraphAccessToken", - "Id": 471 + "Id": 471, + "CommandName": "Get-PnPGraphAccessToken" }, { "Rank": 2, "Command": "Get-PnPGraphAccessToken -Decoded", - "CommandName": "Get-PnPGraphAccessToken", - "Id": 472 + "Id": 472, + "CommandName": "Get-PnPGraphAccessToken" }, { "Rank": 1, "Command": "Get-PnPGraphSubscription", - "CommandName": "Get-PnPGraphSubscription", - "Id": 473 + "Id": 473, + "CommandName": "Get-PnPGraphSubscription" }, { "Rank": 2, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "CommandName": "Get-PnPGraphSubscription", - "Id": 474 + "Id": 474, + "CommandName": "Get-PnPGraphSubscription" }, { "Rank": 1, "Command": "Get-PnPGroup", - "CommandName": "Get-PnPGroup", - "Id": 475 + "Id": 475, + "CommandName": "Get-PnPGroup" }, { "Rank": 2, "Command": "Get-PnPGroup -Identity 'My Site Users'", - "CommandName": "Get-PnPGroup", - "Id": 476 + "Id": 476, + "CommandName": "Get-PnPGroup" }, { "Rank": 3, "Command": "Get-PnPGroup -AssociatedMemberGroup", - "CommandName": "Get-PnPGroup", - "Id": 477 + "Id": 477, + "CommandName": "Get-PnPGroup" }, { "Rank": 1, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "CommandName": "Get-PnPGroupMember", - "Id": 478 + "Id": 478, + "CommandName": "Get-PnPGroupMember" }, { "Rank": 2, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "CommandName": "Get-PnPGroupMember", - "Id": 479 + "Id": 479, + "CommandName": "Get-PnPGroupMember" }, { "Rank": 1, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "CommandName": "Get-PnPGroupPermissions", - "Id": 480 + "Id": 480, + "CommandName": "Get-PnPGroupPermissions" }, { "Rank": 1, "Command": "Get-PnPHideDefaultThemes", - "CommandName": "Get-PnPHideDefaultThemes", - "Id": 481 + "Id": 481, + "CommandName": "Get-PnPHideDefaultThemes" }, { "Rank": 1, "Command": "Get-PnPHomePage", - "CommandName": "Get-PnPHomePage", - "Id": 482 + "Id": 482, + "CommandName": "Get-PnPHomePage" }, { "Rank": 1, "Command": "Get-PnPHomeSite", - "CommandName": "Get-PnPHomeSite", - "Id": 483 + "Id": 483, + "CommandName": "Get-PnPHomeSite" }, { "Rank": 2, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "CommandName": "Get-PnPHomeSite", - "Id": 484 + "Id": 484, + "CommandName": "Get-PnPHomeSite" }, { "Rank": 3, "Command": "Get-PnPHomeSite -Detailed", - "CommandName": "Get-PnPHomeSite", - "Id": 485 + "Id": 485, + "CommandName": "Get-PnPHomeSite" }, { "Rank": 1, "Command": "Get-PnPHubSite", - "CommandName": "Get-PnPHubSite", - "Id": 486 + "Id": 486, + "CommandName": "Get-PnPHubSite" }, { "Rank": 2, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSite", - "Id": 487 + "Id": 487, + "CommandName": "Get-PnPHubSite" }, { "Rank": 3, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "CommandName": "Get-PnPHubSite", - "Id": 488 + "Id": 488, + "CommandName": "Get-PnPHubSite" }, { "Rank": 1, "Command": "Get-PnPHubSiteChild", - "CommandName": "Get-PnPHubSiteChild", - "Id": 489 + "Id": 489, + "CommandName": "Get-PnPHubSiteChild" }, { "Rank": 2, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "CommandName": "Get-PnPHubSiteChild", - "Id": 490 + "Id": 490, + "CommandName": "Get-PnPHubSiteChild" }, { "Rank": 1, "Command": "Get-PnPInPlaceRecordsManagement", - "CommandName": "Get-PnPInPlaceRecordsManagement", - "Id": 491 + "Id": 491, + "CommandName": "Get-PnPInPlaceRecordsManagement" }, { "Rank": 1, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "CommandName": "Get-PnPIsSiteAliasAvailable", - "Id": 492 + "Id": 492, + "CommandName": "Get-PnPIsSiteAliasAvailable" }, { "Rank": 1, "Command": "Get-PnPJavaScriptLink", - "CommandName": "Get-PnPJavaScriptLink", - "Id": 493 + "Id": 493, + "CommandName": "Get-PnPJavaScriptLink" }, { "Rank": 2, "Command": "Get-PnPJavaScriptLink -Scope All", - "CommandName": "Get-PnPJavaScriptLink", - "Id": 494 + "Id": 494, + "CommandName": "Get-PnPJavaScriptLink" }, { "Rank": 3, "Command": "Get-PnPJavaScriptLink -Scope Web", - "CommandName": "Get-PnPJavaScriptLink", - "Id": 495 + "Id": 495, + "CommandName": "Get-PnPJavaScriptLink" }, { "Rank": 4, "Command": "Get-PnPJavaScriptLink -Scope Site", - "CommandName": "Get-PnPJavaScriptLink", - "Id": 496 + "Id": 496, + "CommandName": "Get-PnPJavaScriptLink" }, { "Rank": 5, "Command": "Get-PnPJavaScriptLink -Name Test", - "CommandName": "Get-PnPJavaScriptLink", - "Id": 497 + "Id": 497, + "CommandName": "Get-PnPJavaScriptLink" }, { "Rank": 1, "Command": "Get-PnPKnowledgeHubSite", - "CommandName": "Get-PnPKnowledgeHubSite", - "Id": 498 + "Id": 498, + "CommandName": "Get-PnPKnowledgeHubSite" }, { "Rank": 1, "Command": "Get-PnPLabel", - "CommandName": "Get-PnPLabel", - "Id": 499 + "Id": 499, + "CommandName": "Get-PnPLabel" }, { "Rank": 2, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "CommandName": "Get-PnPLabel", - "Id": 500 + "Id": 500, + "CommandName": "Get-PnPLabel" }, { "Rank": 1, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "CommandName": "Get-PnPLargeListOperationStatus", - "Id": 501 + "Id": 501, + "CommandName": "Get-PnPLargeListOperationStatus" }, { "Rank": 1, "Command": "Get-PnPList", - "CommandName": "Get-PnPList", - "Id": 502 + "Id": 502, + "CommandName": "Get-PnPList" }, { "Rank": 2, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Get-PnPList", - "Id": 503 + "Id": 503, + "CommandName": "Get-PnPList" }, { "Rank": 3, "Command": "Get-PnPList -Identity Lists/Announcements", - "CommandName": "Get-PnPList", - "Id": 504 + "Id": 504, + "CommandName": "Get-PnPList" }, { "Rank": 4, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "CommandName": "Get-PnPList", - "Id": 505 + "Id": 505, + "CommandName": "Get-PnPList" }, { "Rank": 5, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "CommandName": "Get-PnPList", - "Id": 506 + "Id": 506, + "CommandName": "Get-PnPList" }, { "Rank": 1, "Command": "Get-PnPListDesign", - "CommandName": "Get-PnPListDesign", - "Id": 507 + "Id": 507, + "CommandName": "Get-PnPListDesign" }, { "Rank": 2, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPListDesign", - "Id": 508 + "Id": 508, + "CommandName": "Get-PnPListDesign" }, { "Rank": 3, "Command": "Get-PnPListDesign -Identity ListEvent", - "CommandName": "Get-PnPListDesign", - "Id": 509 + "Id": 509, + "CommandName": "Get-PnPListDesign" }, { "Rank": 1, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "CommandName": "Get-PnPListInformationRightsManagement", - "Id": 510 + "Id": 510, + "CommandName": "Get-PnPListInformationRightsManagement" }, { "Rank": 1, "Command": "Get-PnPListItem -List Tasks", - "CommandName": "Get-PnPListItem", - "Id": 511 + "Id": 511, + "CommandName": "Get-PnPListItem" }, { "Rank": 2, "Command": "Get-PnPListItem -List Tasks -Id 1", - "CommandName": "Get-PnPListItem", - "Id": 512 + "Id": 512, + "CommandName": "Get-PnPListItem" }, { "Rank": 3, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "CommandName": "Get-PnPListItem", - "Id": 513 + "Id": 513, + "CommandName": "Get-PnPListItem" }, { "Rank": 4, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "CommandName": "Get-PnPListItem", - "Id": 514 + "Id": 514, + "CommandName": "Get-PnPListItem" }, { "Rank": 5, "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "CommandName": "Get-PnPListItem", - "Id": 515 + "Id": 515, + "CommandName": "Get-PnPListItem" }, { "Rank": 6, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "CommandName": "Get-PnPListItem", - "Id": 516 + "Id": 516, + "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": 517 + "Id": 517, + "CommandName": "Get-PnPListItem" }, { "Rank": 8, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "CommandName": "Get-PnPListItem", - "Id": 518 + "Id": 518, + "CommandName": "Get-PnPListItem" }, { "Rank": 9, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "CommandName": "Get-PnPListItem", - "Id": 519 + "Id": 519, + "CommandName": "Get-PnPListItem" }, { "Rank": 1, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "CommandName": "Get-PnPListItemComment", - "Id": 520 + "Id": 520, + "CommandName": "Get-PnPListItemComment" }, { "Rank": 1, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "CommandName": "Get-PnPListItemPermission", - "Id": 521 + "Id": 521, + "CommandName": "Get-PnPListItemPermission" }, { "Rank": 1, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "CommandName": "Get-PnPListItemVersion", - "Id": 522 + "Id": 522, + "CommandName": "Get-PnPListItemVersion" }, { "Rank": 1, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "CommandName": "Get-PnPListPermissions", - "Id": 523 + "Id": 523, + "CommandName": "Get-PnPListPermissions" }, { "Rank": 2, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "CommandName": "Get-PnPListPermissions", - "Id": 524 + "Id": 524, + "CommandName": "Get-PnPListPermissions" }, { "Rank": 1, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "CommandName": "Get-PnPListRecordDeclaration", - "Id": 525 + "Id": 525, + "CommandName": "Get-PnPListRecordDeclaration" }, { "Rank": 1, "Command": "Get-PnPMasterPage", - "CommandName": "Get-PnPMasterPage", - "Id": 526 + "Id": 526, + "CommandName": "Get-PnPMasterPage" }, { "Rank": 1, "Command": "Get-PnPMessageCenterAnnouncement", - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 527 + "Id": 527, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { "Rank": 2, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Id": 528 + "Id": 528, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { "Rank": 1, "Command": "Get-PnPMicrosoft365ExpiringGroup", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 529 + "Id": 529, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { "Rank": 2, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 530 + "Id": 530, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { "Rank": 1, "Command": "Get-PnPMicrosoft365Group", - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 531 + "Id": 531, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Rank": 2, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 532 + "Id": 532, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Rank": 3, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 533 + "Id": 533, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Rank": 4, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 534 + "Id": 534, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Rank": 5, "Command": "Get-PnPMicrosoft365Group -Identity $group", - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 535 + "Id": 535, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Rank": 6, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "CommandName": "Get-PnPMicrosoft365Group", - "Id": 536 + "Id": 536, + "CommandName": "Get-PnPMicrosoft365Group" }, { "Rank": 1, "Command": "Get-PnPMicrosoft365GroupEndpoint", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 537 + "Id": 537, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Rank": 2, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 538 + "Id": 538, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Rank": 3, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 539 + "Id": 539, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { "Rank": 1, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 540 + "Id": 540, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Rank": 2, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 541 + "Id": 541, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Rank": 3, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Id": 542 + "Id": 542, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { "Rank": 1, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 543 + "Id": 543, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { "Rank": 2, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Id": 544 + "Id": 544, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettings", - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 545 + "Id": 545, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Id": 546 + "Id": 546, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 547 + "Id": 547, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 548 + "Id": 548, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { "Rank": 1, "Command": "Get-PnPMicrosoft365GroupTeam", - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 549 + "Id": 549, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Rank": 2, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 550 + "Id": 550, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Rank": 3, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Id": 551 + "Id": 551, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { "Rank": 1, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 552 + "Id": 552, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Rank": 2, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 553 + "Id": 553, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Rank": 3, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 554 + "Id": 554, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Rank": 1, "Command": "Get-PnPNavigationNode", - "CommandName": "Get-PnPNavigationNode", - "Id": 555 + "Id": 555, + "CommandName": "Get-PnPNavigationNode" }, { "Rank": 2, "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "CommandName": "Get-PnPNavigationNode", - "Id": 556 + "Id": 556, + "CommandName": "Get-PnPNavigationNode" }, { "Rank": 3, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "CommandName": "Get-PnPNavigationNode", - "Id": 557 + "Id": 557, + "CommandName": "Get-PnPNavigationNode" }, { "Rank": 1, "Command": "Get-PnPOrgAssetsLibrary", - "CommandName": "Get-PnPOrgAssetsLibrary", - "Id": 558 + "Id": 558, + "CommandName": "Get-PnPOrgAssetsLibrary" }, { "Rank": 1, "Command": "Get-PnPOrgNewsSite", - "CommandName": "Get-PnPOrgNewsSite", - "Id": 559 + "Id": 559, + "CommandName": "Get-PnPOrgNewsSite" }, { "Rank": 1, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "CommandName": "Get-PnPPage", - "Id": 560 + "Id": 560, + "CommandName": "Get-PnPPage" }, { "Rank": 2, "Command": "Get-PnPPage \"MyPage\"", - "CommandName": "Get-PnPPage", - "Id": 561 + "Id": 561, + "CommandName": "Get-PnPPage" }, { "Rank": 3, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "CommandName": "Get-PnPPage", - "Id": 562 + "Id": 562, + "CommandName": "Get-PnPPage" }, { "Rank": 4, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "CommandName": "Get-PnPPage", - "Id": 563 + "Id": 563, + "CommandName": "Get-PnPPage" }, { "Rank": 1, "Command": "Get-PnPPageComponent -Page Home", - "CommandName": "Get-PnPPageComponent", - "Id": 564 + "Id": 564, + "CommandName": "Get-PnPPageComponent" }, { "Rank": 2, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPPageComponent", - "Id": 565 + "Id": 565, + "CommandName": "Get-PnPPageComponent" }, { "Rank": 3, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "CommandName": "Get-PnPPageComponent", - "Id": 566 + "Id": 566, + "CommandName": "Get-PnPPageComponent" }, { "Rank": 1, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerBucket", - "Id": 567 + "Id": 567, + "CommandName": "Get-PnPPlannerBucket" }, { "Rank": 1, "Command": "Get-PnPPlannerConfiguration", - "CommandName": "Get-PnPPlannerConfiguration", - "Id": 568 + "Id": 568, + "CommandName": "Get-PnPPlannerConfiguration" }, { "Rank": 1, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "CommandName": "Get-PnPPlannerPlan", - "Id": 569 + "Id": 569, + "CommandName": "Get-PnPPlannerPlan" }, { "Rank": 2, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "CommandName": "Get-PnPPlannerPlan", - "Id": 570 + "Id": 570, + "CommandName": "Get-PnPPlannerPlan" }, { "Rank": 3, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "CommandName": "Get-PnPPlannerPlan", - "Id": 571 + "Id": 571, + "CommandName": "Get-PnPPlannerPlan" }, { "Rank": 1, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Get-PnPPlannerRosterMember", - "Id": 572 + "Id": 572, + "CommandName": "Get-PnPPlannerRosterMember" }, { "Rank": 1, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 573 + "Id": 573, + "CommandName": "Get-PnPPlannerRosterPlan" }, { "Rank": 2, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerRosterPlan", - "Id": 574 + "Id": 574, + "CommandName": "Get-PnPPlannerRosterPlan" }, { "Rank": 1, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "CommandName": "Get-PnPPlannerTask", - "Id": 575 + "Id": 575, + "CommandName": "Get-PnPPlannerTask" }, { "Rank": 2, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask", - "Id": 576 + "Id": 576, + "CommandName": "Get-PnPPlannerTask" }, { "Rank": 3, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "CommandName": "Get-PnPPlannerTask", - "Id": 577 + "Id": 577, + "CommandName": "Get-PnPPlannerTask" }, { "Rank": 1, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Get-PnPPlannerUserPolicy", - "Id": 578 + "Id": 578, + "CommandName": "Get-PnPPlannerUserPolicy" }, { "Rank": 1, "Command": "Get-PnPPowerPlatformEnvironment", - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 579 + "Id": 579, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Rank": 2, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 580 + "Id": 580, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Rank": 3, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Id": 581 + "Id": 581, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { "Rank": 1, "Command": "Get-PnPPowerShellTelemetryEnabled", - "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Id": 582 + "Id": 582, + "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { "Rank": 1, "Command": "Get-PnPPropertyBag", - "CommandName": "Get-PnPPropertyBag", - "Id": 583 + "Id": 583, + "CommandName": "Get-PnPPropertyBag" }, { "Rank": 2, "Command": "Get-PnPPropertyBag -Key MyKey", - "CommandName": "Get-PnPPropertyBag", - "Id": 584 + "Id": 584, + "CommandName": "Get-PnPPropertyBag" }, { "Rank": 3, "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "CommandName": "Get-PnPPropertyBag", - "Id": 585 + "Id": 585, + "CommandName": "Get-PnPPropertyBag" }, { "Rank": 4, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag", - "Id": 586 + "Id": 586, + "CommandName": "Get-PnPPropertyBag" }, { "Rank": 5, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "CommandName": "Get-PnPPropertyBag", - "Id": 587 + "Id": 587, + "CommandName": "Get-PnPPropertyBag" }, { "Rank": 1, "Command": "Get-PnPPublishingImageRendition", - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 588 + "Id": 588, + "CommandName": "Get-PnPPublishingImageRendition" }, { "Rank": 2, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 589 + "Id": 589, + "CommandName": "Get-PnPPublishingImageRendition" }, { "Rank": 3, "Command": "Get-PnPPublishingImageRendition -Identity 2", - "CommandName": "Get-PnPPublishingImageRendition", - "Id": 590 + "Id": 590, + "CommandName": "Get-PnPPublishingImageRendition" }, { "Rank": 1, "Command": "Get-PnPRecycleBinItem", - "CommandName": "Get-PnPRecycleBinItem", - "Id": 591 + "Id": 591, + "CommandName": "Get-PnPRecycleBinItem" }, { "Rank": 2, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "CommandName": "Get-PnPRecycleBinItem", - "Id": 592 + "Id": 592, + "CommandName": "Get-PnPRecycleBinItem" }, { "Rank": 3, "Command": "Get-PnPRecycleBinItem -FirstStage", - "CommandName": "Get-PnPRecycleBinItem", - "Id": 593 + "Id": 593, + "CommandName": "Get-PnPRecycleBinItem" }, { "Rank": 4, "Command": "Get-PnPRecycleBinItem -SecondStage", - "CommandName": "Get-PnPRecycleBinItem", - "Id": 594 + "Id": 594, + "CommandName": "Get-PnPRecycleBinItem" }, { "Rank": 5, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "CommandName": "Get-PnPRecycleBinItem", - "Id": 595 + "Id": 595, + "CommandName": "Get-PnPRecycleBinItem" }, { "Rank": 1, "Command": "Get-PnPRequestAccessEmails", - "CommandName": "Get-PnPRequestAccessEmails", - "Id": 596 + "Id": 596, + "CommandName": "Get-PnPRequestAccessEmails" }, { "Rank": 1, "Command": "Get-PnPRoleDefinition", - "CommandName": "Get-PnPRoleDefinition", - "Id": 597 + "Id": 597, + "CommandName": "Get-PnPRoleDefinition" }, { "Rank": 2, "Command": "Get-PnPRoleDefinition -Identity Read", - "CommandName": "Get-PnPRoleDefinition", - "Id": 598 + "Id": 598, + "CommandName": "Get-PnPRoleDefinition" }, { "Rank": 3, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "CommandName": "Get-PnPRoleDefinition", - "Id": 599 + "Id": 599, + "CommandName": "Get-PnPRoleDefinition" }, { "Rank": 1, "Command": "Get-PnPSearchConfiguration", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 600 + "Id": 600, + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 2, "Command": "Get-PnPSearchConfiguration -Scope Site", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 601 + "Id": 601, + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 3, "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 602 + "Id": 602, + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 4, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 603 + "Id": 603, + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 5, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 604 + "Id": 604, + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 6, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 605 + "Id": 605, + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 7, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 606 + "Id": 606, + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 8, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "CommandName": "Get-PnPSearchConfiguration", - "Id": 607 + "Id": 607, + "CommandName": "Get-PnPSearchConfiguration" }, { "Rank": 1, "Command": "Get-PnPSearchCrawlLog", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 608 + "Id": 608, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 2, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 609 + "Id": 609, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 3, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 610 + "Id": 610, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 4, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 611 + "Id": 611, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 5, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 612 + "Id": 612, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 6, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 613 + "Id": 613, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 7, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "CommandName": "Get-PnPSearchCrawlLog", - "Id": 614 + "Id": 614, + "CommandName": "Get-PnPSearchCrawlLog" }, { "Rank": 1, "Command": "Get-PnPSearchSettings", - "CommandName": "Get-PnPSearchSettings", - "Id": 615 + "Id": 615, + "CommandName": "Get-PnPSearchSettings" }, { "Rank": 1, "Command": "Get-PnPServiceCurrentHealth", - "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 616 + "Id": 616, + "CommandName": "Get-PnPServiceCurrentHealth" }, { "Rank": 2, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "CommandName": "Get-PnPServiceCurrentHealth", - "Id": 617 + "Id": 617, + "CommandName": "Get-PnPServiceCurrentHealth" }, { "Rank": 1, "Command": "Get-PnPServiceHealthIssue", - "CommandName": "Get-PnPServiceHealthIssue", - "Id": 618 + "Id": 618, + "CommandName": "Get-PnPServiceHealthIssue" }, { "Rank": 2, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "CommandName": "Get-PnPServiceHealthIssue", - "Id": 619 + "Id": 619, + "CommandName": "Get-PnPServiceHealthIssue" }, { "Rank": 1, "Command": "Get-PnPSharePointAddIn", - "CommandName": "Get-PnPSharePointAddIn", - "Id": 620 + "Id": 620, + "CommandName": "Get-PnPSharePointAddIn" }, { "Rank": 2, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "CommandName": "Get-PnPSharePointAddIn", - "Id": 621 + "Id": 621, + "CommandName": "Get-PnPSharePointAddIn" }, { "Rank": 1, "Command": "Get-PnPSharingForNonOwnersOfSite", - "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Id": 622 + "Id": 622, + "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { "Rank": 1, "Command": "Get-PnPSite", - "CommandName": "Get-PnPSite", - "Id": 623 + "Id": 623, + "CommandName": "Get-PnPSite" }, { "Rank": 2, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "CommandName": "Get-PnPSite", - "Id": 624 + "Id": 624, + "CommandName": "Get-PnPSite" }, { "Rank": 1, "Command": "Get-PnPSiteClosure", - "CommandName": "Get-PnPSiteClosure", - "Id": 625 + "Id": 625, + "CommandName": "Get-PnPSiteClosure" }, { "Rank": 1, "Command": "Get-PnPSiteCollectionAdmin", - "CommandName": "Get-PnPSiteCollectionAdmin", - "Id": 626 + "Id": 626, + "CommandName": "Get-PnPSiteCollectionAdmin" }, { "Rank": 1, "Command": "Get-PnPSiteCollectionAppCatalog", - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 627 + "Id": 627, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Rank": 2, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 628 + "Id": 628, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Rank": 3, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Id": 629 + "Id": 629, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { "Rank": 1, "Command": "Get-PnPSiteCollectionTermStore", - "CommandName": "Get-PnPSiteCollectionTermStore", - "Id": 630 + "Id": 630, + "CommandName": "Get-PnPSiteCollectionTermStore" }, { "Rank": 1, "Command": "Get-PnPSiteDesign", - "CommandName": "Get-PnPSiteDesign", - "Id": 631 + "Id": 631, + "CommandName": "Get-PnPSiteDesign" }, { "Rank": 2, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesign", - "Id": 632 + "Id": 632, + "CommandName": "Get-PnPSiteDesign" }, { "Rank": 1, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteDesignRights", - "Id": 633 + "Id": 633, + "CommandName": "Get-PnPSiteDesignRights" }, { "Rank": 1, "Command": "Get-PnPSiteDesignRun", - "CommandName": "Get-PnPSiteDesignRun", - "Id": 634 + "Id": 634, + "CommandName": "Get-PnPSiteDesignRun" }, { "Rank": 2, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignRun", - "Id": 635 + "Id": 635, + "CommandName": "Get-PnPSiteDesignRun" }, { "Rank": 1, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "CommandName": "Get-PnPSiteDesignTask", - "Id": 636 + "Id": 636, + "CommandName": "Get-PnPSiteDesignTask" }, { "Rank": 2, "Command": "Get-PnPSiteDesignTask", - "CommandName": "Get-PnPSiteDesignTask", - "Id": 637 + "Id": 637, + "CommandName": "Get-PnPSiteDesignTask" }, { "Rank": 3, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "CommandName": "Get-PnPSiteDesignTask", - "Id": 638 + "Id": 638, + "CommandName": "Get-PnPSiteDesignTask" }, { "Rank": 1, "Command": "Get-PnPSiteGroup", - "CommandName": "Get-PnPSiteGroup", - "Id": 639 + "Id": 639, + "CommandName": "Get-PnPSiteGroup" }, { "Rank": 2, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup", - "Id": 640 + "Id": 640, + "CommandName": "Get-PnPSiteGroup" }, { "Rank": 3, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "CommandName": "Get-PnPSiteGroup", - "Id": 641 + "Id": 641, + "CommandName": "Get-PnPSiteGroup" }, { "Rank": 4, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "CommandName": "Get-PnPSiteGroup", - "Id": 642 + "Id": 642, + "CommandName": "Get-PnPSiteGroup" }, { "Rank": 1, "Command": "Get-PnPSitePolicy", - "CommandName": "Get-PnPSitePolicy", - "Id": 643 + "Id": 643, + "CommandName": "Get-PnPSitePolicy" }, { "Rank": 2, "Command": "Get-PnPSitePolicy -AllAvailable", - "CommandName": "Get-PnPSitePolicy", - "Id": 644 + "Id": 644, + "CommandName": "Get-PnPSitePolicy" }, { "Rank": 3, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Get-PnPSitePolicy", - "Id": 645 + "Id": 645, + "CommandName": "Get-PnPSitePolicy" }, { "Rank": 1, "Command": "Get-PnPSiteScript", - "CommandName": "Get-PnPSiteScript", - "Id": 646 + "Id": 646, + "CommandName": "Get-PnPSiteScript" }, { "Rank": 2, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Get-PnPSiteScript", - "Id": 647 + "Id": 647, + "CommandName": "Get-PnPSiteScript" }, { "Rank": 1, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 648 + "Id": 648, + "CommandName": "Get-PnPSiteScriptFromList" }, { "Rank": 2, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 649 + "Id": 649, + "CommandName": "Get-PnPSiteScriptFromList" }, { "Rank": 3, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "CommandName": "Get-PnPSiteScriptFromList", - "Id": 650 + "Id": 650, + "CommandName": "Get-PnPSiteScriptFromList" }, { "Rank": 1, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 651 + "Id": 651, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Rank": 2, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 652 + "Id": 652, + "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": 653 + "Id": 653, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Rank": 4, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 654 + "Id": 654, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Rank": 5, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "CommandName": "Get-PnPSiteScriptFromWeb", - "Id": 655 + "Id": 655, + "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": 656 + "Id": 656, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { "Rank": 1, "Command": "Get-PnPSiteSearchQueryResults", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 657 + "Id": 657, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Rank": 2, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 658 + "Id": 658, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Rank": 3, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 659 + "Id": 659, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Rank": 4, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 660 + "Id": 660, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Rank": 5, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 661 + "Id": 661, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Rank": 6, "Command": "Get-PnPSiteSearchQueryResults -All", - "CommandName": "Get-PnPSiteSearchQueryResults", - "Id": 662 + "Id": 662, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { "Rank": 1, "Command": "Get-PnPSiteSensitivityLabel", - "CommandName": "Get-PnPSiteSensitivityLabel", - "Id": 663 + "Id": 663, + "CommandName": "Get-PnPSiteSensitivityLabel" }, { "Rank": 1, "Command": "Get-PnPSiteTemplate -Out template.pnp", - "CommandName": "Get-PnPSiteTemplate", - "Id": 664 + "Id": 664, + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 2, "Command": "Get-PnPSiteTemplate -Out template.xml", - "CommandName": "Get-PnPSiteTemplate", - "Id": 665 + "Id": 665, + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 3, "Command": "Get-PnPSiteTemplate -Out template.md", - "CommandName": "Get-PnPSiteTemplate", - "Id": 666 + "Id": 666, + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 4, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "CommandName": "Get-PnPSiteTemplate", - "Id": 667 + "Id": 667, + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 5, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "CommandName": "Get-PnPSiteTemplate", - "Id": 668 + "Id": 668, + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 6, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "CommandName": "Get-PnPSiteTemplate", - "Id": 669 + "Id": 669, + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 7, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "CommandName": "Get-PnPSiteTemplate", - "Id": 670 + "Id": 670, + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 8, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "CommandName": "Get-PnPSiteTemplate", - "Id": 671 + "Id": 671, + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 9, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate", - "Id": 672 + "Id": 672, + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 10, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "CommandName": "Get-PnPSiteTemplate", - "Id": 673 + "Id": 673, + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 11, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "CommandName": "Get-PnPSiteTemplate", - "Id": 674 + "Id": 674, + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 12, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "CommandName": "Get-PnPSiteTemplate", - "Id": 675 + "Id": 675, + "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": 676 + "Id": 676, + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 14, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "CommandName": "Get-PnPSiteTemplate", - "Id": 677 + "Id": 677, + "CommandName": "Get-PnPSiteTemplate" }, { "Rank": 1, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Get-PnPSiteUserInvitations", - "Id": 678 + "Id": 678, + "CommandName": "Get-PnPSiteUserInvitations" }, { "Rank": 1, "Command": "Get-PnPStorageEntity", - "CommandName": "Get-PnPStorageEntity", - "Id": 679 + "Id": 679, + "CommandName": "Get-PnPStorageEntity" }, { "Rank": 2, "Command": "Get-PnPStorageEntity -Key MyKey", - "CommandName": "Get-PnPStorageEntity", - "Id": 680 + "Id": 680, + "CommandName": "Get-PnPStorageEntity" }, { "Rank": 3, "Command": "Get-PnPStorageEntity -Scope Site", - "CommandName": "Get-PnPStorageEntity", - "Id": 681 + "Id": 681, + "CommandName": "Get-PnPStorageEntity" }, { "Rank": 4, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Get-PnPStorageEntity", - "Id": 682 + "Id": 682, + "CommandName": "Get-PnPStorageEntity" }, { "Rank": 1, "Command": "Get-PnPStoredCredential -Name O365", - "CommandName": "Get-PnPStoredCredential", - "Id": 683 + "Id": 683, + "CommandName": "Get-PnPStoredCredential" }, { "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Id": 684 + "Id": 684, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Id": 685 + "Id": 685, + "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { "Rank": 1, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Id": 686 + "Id": 686, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { "Rank": 1, "Command": "Get-PnPSubWeb", - "CommandName": "Get-PnPSubWeb", - "Id": 687 + "Id": 687, + "CommandName": "Get-PnPSubWeb" }, { "Rank": 2, "Command": "Get-PnPSubWeb -Recurse", - "CommandName": "Get-PnPSubWeb", - "Id": 688 + "Id": 688, + "CommandName": "Get-PnPSubWeb" }, { "Rank": 3, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "CommandName": "Get-PnPSubWeb", - "Id": 689 + "Id": 689, + "CommandName": "Get-PnPSubWeb" }, { "Rank": 4, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "CommandName": "Get-PnPSubWeb", - "Id": 690 + "Id": 690, + "CommandName": "Get-PnPSubWeb" }, { "Rank": 5, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "CommandName": "Get-PnPSubWeb", - "Id": 691 + "Id": 691, + "CommandName": "Get-PnPSubWeb" }, { "Rank": 1, "Command": "Get-PnPSyntexModel", - "CommandName": "Get-PnPSyntexModel", - "Id": 692 + "Id": 692, + "CommandName": "Get-PnPSyntexModel" }, { "Rank": 2, "Command": "Get-PnPSyntexModel -Identity 1", - "CommandName": "Get-PnPSyntexModel", - "Id": 693 + "Id": 693, + "CommandName": "Get-PnPSyntexModel" }, { "Rank": 3, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModel", - "Id": 694 + "Id": 694, + "CommandName": "Get-PnPSyntexModel" }, { "Rank": 1, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "CommandName": "Get-PnPSyntexModelPublication", - "Id": 695 + "Id": 695, + "CommandName": "Get-PnPSyntexModelPublication" }, { "Rank": 1, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "CommandName": "Get-PnPTaxonomyItem", - "Id": 696 + "Id": 696, + "CommandName": "Get-PnPTaxonomyItem" }, { "Rank": 1, "Command": "Get-PnPTeamsApp", - "CommandName": "Get-PnPTeamsApp", - "Id": 697 + "Id": 697, + "CommandName": "Get-PnPTeamsApp" }, { "Rank": 2, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "CommandName": "Get-PnPTeamsApp", - "Id": 698 + "Id": 698, + "CommandName": "Get-PnPTeamsApp" }, { "Rank": 3, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "CommandName": "Get-PnPTeamsApp", - "Id": 699 + "Id": 699, + "CommandName": "Get-PnPTeamsApp" }, { "Rank": 1, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "CommandName": "Get-PnPTeamsChannel", - "Id": 700 + "Id": 700, + "CommandName": "Get-PnPTeamsChannel" }, { "Rank": 2, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannel", - "Id": 701 + "Id": 701, + "CommandName": "Get-PnPTeamsChannel" }, { "Rank": 3, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannel", - "Id": 702 + "Id": 702, + "CommandName": "Get-PnPTeamsChannel" }, { "Rank": 1, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 703 + "Id": 703, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { "Rank": 2, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Id": 704 + "Id": 704, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { "Rank": 1, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 705 + "Id": 705, + "CommandName": "Get-PnPTeamsChannelMessage" }, { "Rank": 2, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "CommandName": "Get-PnPTeamsChannelMessage", - "Id": 706 + "Id": 706, + "CommandName": "Get-PnPTeamsChannelMessage" }, { "Rank": 1, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 707 + "Id": 707, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { "Rank": 2, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Id": 708 + "Id": 708, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { "Rank": 1, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 709 + "Id": 709, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Rank": 2, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 710 + "Id": 710, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Rank": 3, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 711 + "Id": 711, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Rank": 4, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Get-PnPTeamsChannelUser", - "Id": 712 + "Id": 712, + "CommandName": "Get-PnPTeamsChannelUser" }, { "Rank": 1, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 713 + "Id": 713, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { "Rank": 2, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Id": 714 + "Id": 714, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { "Rank": 1, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "CommandName": "Get-PnPTeamsTab", - "Id": 715 + "Id": 715, + "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": 716 + "Id": 716, + "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": 717 + "Id": 717, + "CommandName": "Get-PnPTeamsTab" }, { "Rank": 4, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "CommandName": "Get-PnPTeamsTab", - "Id": 718 + "Id": 718, + "CommandName": "Get-PnPTeamsTab" }, { "Rank": 5, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "CommandName": "Get-PnPTeamsTab", - "Id": 719 + "Id": 719, + "CommandName": "Get-PnPTeamsTab" }, { "Rank": 1, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Get-PnPTeamsTag", - "Id": 720 + "Id": 720, + "CommandName": "Get-PnPTeamsTag" }, { "Rank": 2, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Get-PnPTeamsTag", - "Id": 721 + "Id": 721, + "CommandName": "Get-PnPTeamsTag" }, { "Rank": 1, "Command": "Get-PnPTeamsTeam", - "CommandName": "Get-PnPTeamsTeam", - "Id": 722 + "Id": 722, + "CommandName": "Get-PnPTeamsTeam" }, { "Rank": 2, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "CommandName": "Get-PnPTeamsTeam", - "Id": 723 + "Id": 723, + "CommandName": "Get-PnPTeamsTeam" }, { "Rank": 3, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "CommandName": "Get-PnPTeamsTeam", - "Id": 724 + "Id": 724, + "CommandName": "Get-PnPTeamsTeam" }, { "Rank": 4, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam", - "Id": 725 + "Id": 725, + "CommandName": "Get-PnPTeamsTeam" }, { "Rank": 5, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "CommandName": "Get-PnPTeamsTeam", - "Id": 726 + "Id": 726, + "CommandName": "Get-PnPTeamsTeam" }, { "Rank": 1, "Command": "Get-PnPTeamsUser -Team MyTeam", - "CommandName": "Get-PnPTeamsUser", - "Id": 727 + "Id": 727, + "CommandName": "Get-PnPTeamsUser" }, { "Rank": 2, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "CommandName": "Get-PnPTeamsUser", - "Id": 728 + "Id": 728, + "CommandName": "Get-PnPTeamsUser" }, { "Rank": 3, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "CommandName": "Get-PnPTeamsUser", - "Id": 729 + "Id": 729, + "CommandName": "Get-PnPTeamsUser" }, { "Rank": 4, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "CommandName": "Get-PnPTeamsUser", - "Id": 730 + "Id": 730, + "CommandName": "Get-PnPTeamsUser" }, { "Rank": 1, "Command": "Get-PnPTemporarilyDisableAppBar", - "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Id": 731 + "Id": 731, + "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { "Rank": 1, "Command": "Get-PnPTenant", - "CommandName": "Get-PnPTenant", - "Id": 732 + "Id": 732, + "CommandName": "Get-PnPTenant" }, { "Rank": 1, "Command": "Get-PnPTenantAppCatalogUrl", - "CommandName": "Get-PnPTenantAppCatalogUrl", - "Id": 733 + "Id": 733, + "CommandName": "Get-PnPTenantAppCatalogUrl" }, { "Rank": 1, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "CommandName": "Get-PnPTenantCdnEnabled", - "Id": 734 + "Id": 734, + "CommandName": "Get-PnPTenantCdnEnabled" }, { "Rank": 1, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "CommandName": "Get-PnPTenantCdnOrigin", - "Id": 735 + "Id": 735, + "CommandName": "Get-PnPTenantCdnOrigin" }, { "Rank": 1, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "CommandName": "Get-PnPTenantCdnPolicies", - "Id": 736 + "Id": 736, + "CommandName": "Get-PnPTenantCdnPolicies" }, { "Rank": 1, "Command": "Get-PnPTenantDeletedSite", - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 737 + "Id": 737, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Rank": 2, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 738 + "Id": 738, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Rank": 3, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 739 + "Id": 739, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Rank": 4, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "CommandName": "Get-PnPTenantDeletedSite", - "Id": 740 + "Id": 740, + "CommandName": "Get-PnPTenantDeletedSite" }, { "Rank": 1, "Command": "Get-PnPTenantId", - "CommandName": "Get-PnPTenantId", - "Id": 741 + "Id": 741, + "CommandName": "Get-PnPTenantId" }, { "Rank": 2, "Command": "Get-PnPTenantId contoso", - "CommandName": "Get-PnPTenantId", - "Id": 742 + "Id": 742, + "CommandName": "Get-PnPTenantId" }, { "Rank": 3, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "CommandName": "Get-PnPTenantId", - "Id": 743 + "Id": 743, + "CommandName": "Get-PnPTenantId" }, { "Rank": 4, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "CommandName": "Get-PnPTenantId", - "Id": 744 + "Id": 744, + "CommandName": "Get-PnPTenantId" }, { "Rank": 1, "Command": "Get-PnPTenantInstance", - "CommandName": "Get-PnPTenantInstance", - "Id": 745 + "Id": 745, + "CommandName": "Get-PnPTenantInstance" }, { "Rank": 1, "Command": "Get-PnPTenantRecycleBinItem", - "CommandName": "Get-PnPTenantRecycleBinItem", - "Id": 746 + "Id": 746, + "CommandName": "Get-PnPTenantRecycleBinItem" }, { "Rank": 1, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "CommandName": "Get-PnPTenantSequence", - "Id": 747 + "Id": 747, + "CommandName": "Get-PnPTenantSequence" }, { "Rank": 2, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "CommandName": "Get-PnPTenantSequence", - "Id": 748 + "Id": 748, + "CommandName": "Get-PnPTenantSequence" }, { "Rank": 1, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "CommandName": "Get-PnPTenantSequenceSite", - "Id": 749 + "Id": 749, + "CommandName": "Get-PnPTenantSequenceSite" }, { "Rank": 2, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "CommandName": "Get-PnPTenantSequenceSite", - "Id": 750 + "Id": 750, + "CommandName": "Get-PnPTenantSequenceSite" }, { "Rank": 1, "Command": "Get-PnPTenantSite", - "CommandName": "Get-PnPTenantSite", - "Id": 751 + "Id": 751, + "CommandName": "Get-PnPTenantSite" }, { "Rank": 2, "Command": "Get-PnPTenantSite -Detailed", - "CommandName": "Get-PnPTenantSite", - "Id": 752 + "Id": 752, + "CommandName": "Get-PnPTenantSite" }, { "Rank": 3, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "CommandName": "Get-PnPTenantSite", - "Id": 753 + "Id": 753, + "CommandName": "Get-PnPTenantSite" }, { "Rank": 4, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "CommandName": "Get-PnPTenantSite", - "Id": 754 + "Id": 754, + "CommandName": "Get-PnPTenantSite" }, { "Rank": 5, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "CommandName": "Get-PnPTenantSite", - "Id": 755 + "Id": 755, + "CommandName": "Get-PnPTenantSite" }, { "Rank": 6, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "CommandName": "Get-PnPTenantSite", - "Id": 756 + "Id": 756, + "CommandName": "Get-PnPTenantSite" }, { "Rank": 7, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "CommandName": "Get-PnPTenantSite", - "Id": 757 + "Id": 757, + "CommandName": "Get-PnPTenantSite" }, { "Rank": 8, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "CommandName": "Get-PnPTenantSite", - "Id": 758 + "Id": 758, + "CommandName": "Get-PnPTenantSite" }, { "Rank": 9, "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "CommandName": "Get-PnPTenantSite", - "Id": 759 + "Id": 759, + "CommandName": "Get-PnPTenantSite" }, { "Rank": 1, "Command": "Get-PnPTenantSyncClientRestriction", - "CommandName": "Get-PnPTenantSyncClientRestriction", - "Id": 760 + "Id": 760, + "CommandName": "Get-PnPTenantSyncClientRestriction" }, { "Rank": 1, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "CommandName": "Get-PnPTenantTemplate", - "Id": 761 + "Id": 761, + "CommandName": "Get-PnPTenantTemplate" }, { "Rank": 2, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "CommandName": "Get-PnPTenantTemplate", - "Id": 762 + "Id": 762, + "CommandName": "Get-PnPTenantTemplate" }, { "Rank": 3, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "CommandName": "Get-PnPTenantTemplate", - "Id": 763 + "Id": 763, + "CommandName": "Get-PnPTenantTemplate" }, { "Rank": 1, "Command": "Get-PnPTenantTheme", - "CommandName": "Get-PnPTenantTheme", - "Id": 764 + "Id": 764, + "CommandName": "Get-PnPTenantTheme" }, { "Rank": 2, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Get-PnPTenantTheme", - "Id": 765 + "Id": 765, + "CommandName": "Get-PnPTenantTheme" }, { "Rank": 3, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "CommandName": "Get-PnPTenantTheme", - "Id": 766 + "Id": 766, + "CommandName": "Get-PnPTenantTheme" }, { "Rank": 1, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", - "Id": 767 + "Id": 767, + "CommandName": "Get-PnPTerm" }, { "Rank": 2, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", - "Id": 768 + "Id": 768, + "CommandName": "Get-PnPTerm" }, { "Rank": 3, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTerm", - "Id": 769 + "Id": 769, + "CommandName": "Get-PnPTerm" }, { "Rank": 4, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "CommandName": "Get-PnPTerm", - "Id": 770 + "Id": 770, + "CommandName": "Get-PnPTerm" }, { "Rank": 5, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "CommandName": "Get-PnPTerm", - "Id": 771 + "Id": 771, + "CommandName": "Get-PnPTerm" }, { "Rank": 1, "Command": "Get-PnPTermGroup", - "CommandName": "Get-PnPTermGroup", - "Id": 772 + "Id": 772, + "CommandName": "Get-PnPTermGroup" }, { "Rank": 2, "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "CommandName": "Get-PnPTermGroup", - "Id": 773 + "Id": 773, + "CommandName": "Get-PnPTermGroup" }, { "Rank": 3, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "CommandName": "Get-PnPTermGroup", - "Id": 774 + "Id": 774, + "CommandName": "Get-PnPTermGroup" }, { "Rank": 1, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "CommandName": "Get-PnPTermLabel", - "Id": 775 + "Id": 775, + "CommandName": "Get-PnPTermLabel" }, { "Rank": 2, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "CommandName": "Get-PnPTermLabel", - "Id": 776 + "Id": 776, + "CommandName": "Get-PnPTermLabel" }, { "Rank": 3, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermLabel", - "Id": 777 + "Id": 777, + "CommandName": "Get-PnPTermLabel" }, { "Rank": 1, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet", - "Id": 778 + "Id": 778, + "CommandName": "Get-PnPTermSet" }, { "Rank": 2, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Get-PnPTermSet", - "Id": 779 + "Id": 779, + "CommandName": "Get-PnPTermSet" }, { "Rank": 3, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "CommandName": "Get-PnPTermSet", - "Id": 780 + "Id": 780, + "CommandName": "Get-PnPTermSet" }, { "Rank": 1, "Command": "Get-PnPTheme", - "CommandName": "Get-PnPTheme", - "Id": 781 + "Id": 781, + "CommandName": "Get-PnPTheme" }, { "Rank": 2, "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "CommandName": "Get-PnPTheme", - "Id": 782 + "Id": 782, + "CommandName": "Get-PnPTheme" }, { "Rank": 1, "Command": "Get-PnPTimeZoneId", - "CommandName": "Get-PnPTimeZoneId", - "Id": 783 + "Id": 783, + "CommandName": "Get-PnPTimeZoneId" }, { "Rank": 2, "Command": "Get-PnPTimeZoneId -Match Stockholm", - "CommandName": "Get-PnPTimeZoneId", - "Id": 784 + "Id": 784, + "CommandName": "Get-PnPTimeZoneId" }, { "Rank": 1, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "CommandName": "Get-PnPUnfurlLink", - "Id": 785 + "Id": 785, + "CommandName": "Get-PnPUnfurlLink" }, { "Rank": 1, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "CommandName": "Get-PnPUnifiedAuditLog", - "Id": 786 + "Id": 786, + "CommandName": "Get-PnPUnifiedAuditLog" }, { "Rank": 1, "Command": "Get-PnPUPABulkImportStatus", - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 787 + "Id": 787, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Rank": 2, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 788 + "Id": 788, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Rank": 3, "Command": "Get-PnPUPABulkImportStatus -JobId ", - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 789 + "Id": 789, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Rank": 4, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "CommandName": "Get-PnPUPABulkImportStatus", - "Id": 790 + "Id": 790, + "CommandName": "Get-PnPUPABulkImportStatus" }, { "Rank": 1, "Command": "Get-PnPUser", - "CommandName": "Get-PnPUser", - "Id": 791 + "Id": 791, + "CommandName": "Get-PnPUser" }, { "Rank": 2, "Command": "Get-PnPUser -Identity 23", - "CommandName": "Get-PnPUser", - "Id": 792 + "Id": 792, + "CommandName": "Get-PnPUser" }, { "Rank": 3, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser", - "Id": 793 + "Id": 793, + "CommandName": "Get-PnPUser" }, { "Rank": 4, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "CommandName": "Get-PnPUser", - "Id": 794 + "Id": 794, + "CommandName": "Get-PnPUser" }, { "Rank": 5, "Command": "Get-PnPUser -WithRightsAssigned", - "CommandName": "Get-PnPUser", - "Id": 795 + "Id": 795, + "CommandName": "Get-PnPUser" }, { "Rank": 6, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "CommandName": "Get-PnPUser", - "Id": 796 + "Id": 796, + "CommandName": "Get-PnPUser" }, { "Rank": 7, "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "CommandName": "Get-PnPUser", - "Id": 797 + "Id": 797, + "CommandName": "Get-PnPUser" }, { "Rank": 1, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "CommandName": "Get-PnPUserOneDriveQuota", - "Id": 798 + "Id": 798, + "CommandName": "Get-PnPUserOneDriveQuota" }, { "Rank": 1, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "CommandName": "Get-PnPUserProfileProperty", - "Id": 799 + "Id": 799, + "CommandName": "Get-PnPUserProfileProperty" }, { "Rank": 2, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "CommandName": "Get-PnPUserProfileProperty", - "Id": 800 + "Id": 800, + "CommandName": "Get-PnPUserProfileProperty" }, { "Rank": 3, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "CommandName": "Get-PnPUserProfileProperty", - "Id": 801 + "Id": 801, + "CommandName": "Get-PnPUserProfileProperty" }, { "Rank": 1, "Command": "Get-PnPView -List \"Demo List\"", - "CommandName": "Get-PnPView", - "Id": 802 + "Id": 802, + "CommandName": "Get-PnPView" }, { "Rank": 2, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "CommandName": "Get-PnPView", - "Id": 803 + "Id": 803, + "CommandName": "Get-PnPView" }, { "Rank": 3, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "CommandName": "Get-PnPView", - "Id": 804 + "Id": 804, + "CommandName": "Get-PnPView" }, { "Rank": 1, "Command": "Get-PnPVivaConnectionsDashboardACE", - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 805 + "Id": 805, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { "Rank": 2, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Id": 806 + "Id": 806, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { "Rank": 1, "Command": "Get-PnPWeb", - "CommandName": "Get-PnPWeb", - "Id": 807 + "Id": 807, + "CommandName": "Get-PnPWeb" }, { "Rank": 1, "Command": "Get-PnPWebHeader", - "CommandName": "Get-PnPWebHeader", - "Id": 808 + "Id": 808, + "CommandName": "Get-PnPWebHeader" }, { "Rank": 1, "Command": "Get-PnPWebhookSubscriptions -List MyList", - "CommandName": "Get-PnPWebhookSubscriptions", - "Id": 809 + "Id": 809, + "CommandName": "Get-PnPWebhookSubscriptions" }, { "Rank": 1, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "CommandName": "Get-PnPWebPart", - "Id": 810 + "Id": 810, + "CommandName": "Get-PnPWebPart" }, { "Rank": 2, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPart", - "Id": 811 + "Id": 811, + "CommandName": "Get-PnPWebPart" }, { "Rank": 1, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "CommandName": "Get-PnPWebPartProperty", - "Id": 812 + "Id": 812, + "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": 813 + "Id": 813, + "CommandName": "Get-PnPWebPartProperty" }, { "Rank": 1, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Get-PnPWebPartXml", - "Id": 814 + "Id": 814, + "CommandName": "Get-PnPWebPartXml" }, { "Rank": 1, "Command": "Get-PnPWebTemplates", - "CommandName": "Get-PnPWebTemplates", - "Id": 815 + "Id": 815, + "CommandName": "Get-PnPWebTemplates" }, { "Rank": 2, "Command": "Get-PnPWebTemplates -LCID 1033", - "CommandName": "Get-PnPWebTemplates", - "Id": 816 + "Id": 816, + "CommandName": "Get-PnPWebTemplates" }, { "Rank": 3, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "CommandName": "Get-PnPWebTemplates", - "Id": 817 + "Id": 817, + "CommandName": "Get-PnPWebTemplates" }, { "Rank": 1, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "CommandName": "Get-PnPWikiPageContent", - "Id": 818 + "Id": 818, + "CommandName": "Get-PnPWikiPageContent" }, { "Rank": 1, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Id": 819 + "Id": 819, + "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": 820 + "Id": 820, + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { "Rank": 1, "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPHubSiteRights", - "Id": 821 + "Id": 821, + "CommandName": "Grant-PnPHubSiteRights" }, { "Rank": 1, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Grant-PnPSiteDesignRights", - "Id": 822 + "Id": 822, + "CommandName": "Grant-PnPSiteDesignRights" }, { "Rank": 1, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Id": 823 + "Id": 823, + "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { "Rank": 1, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "CommandName": "Import-PnPTaxonomy", - "Id": 824 + "Id": 824, + "CommandName": "Import-PnPTaxonomy" }, { "Rank": 2, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "CommandName": "Import-PnPTaxonomy", - "Id": 825 + "Id": 825, + "CommandName": "Import-PnPTaxonomy" }, { "Rank": 3, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "CommandName": "Import-PnPTaxonomy", - "Id": 826 + "Id": 826, + "CommandName": "Import-PnPTaxonomy" }, { "Rank": 1, "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "CommandName": "Import-PnPTermGroupFromXml", - "Id": 827 + "Id": 827, + "CommandName": "Import-PnPTermGroupFromXml" }, { "Rank": 2, "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "CommandName": "Import-PnPTermGroupFromXml", - "Id": 828 + "Id": 828, + "CommandName": "Import-PnPTermGroupFromXml" }, { "Rank": 1, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "CommandName": "Import-PnPTermSet", - "Id": 829 + "Id": 829, + "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": 830 + "Id": 830, + "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": 831 + "Id": 831, + "CommandName": "Import-PnPTermSet" }, { "Rank": 1, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Install-PnPApp", - "Id": 832 + "Id": 832, + "CommandName": "Install-PnPApp" }, { "Rank": 2, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Install-PnPApp", - "Id": 833 + "Id": 833, + "CommandName": "Install-PnPApp" }, { "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": 834 + "Id": 834, + "CommandName": "Invoke-PnPGraphMethod" }, { "Rank": 2, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "CommandName": "Invoke-PnPGraphMethod", - "Id": 835 + "Id": 835, + "CommandName": "Invoke-PnPGraphMethod" }, { "Rank": 3, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "CommandName": "Invoke-PnPGraphMethod", - "Id": 836 + "Id": 836, + "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": 837 + "Id": 837, + "CommandName": "Invoke-PnPGraphMethod" }, { "Rank": 5, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "CommandName": "Invoke-PnPGraphMethod", - "Id": 838 + "Id": 838, + "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": 839 + "Id": 839, + "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": 840 + "Id": 840, + "CommandName": "Invoke-PnPGraphMethod" }, { "Rank": 1, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPListDesign", - "Id": 841 + "Id": 841, + "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": 842 + "Id": 842, + "CommandName": "Invoke-PnPListDesign" }, { "Rank": 1, "Command": "Invoke-PnPQuery -RetryCount 5", - "CommandName": "Invoke-PnPQuery", - "Id": 843 + "Id": 843, + "CommandName": "Invoke-PnPQuery" }, { "Rank": 1, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Invoke-PnPSiteDesign", - "Id": 844 + "Id": 844, + "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": 845 + "Id": 845, + "CommandName": "Invoke-PnPSiteDesign" }, { "Rank": 1, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "CommandName": "Invoke-PnPSiteScript", - "Id": 846 + "Id": 846, + "CommandName": "Invoke-PnPSiteScript" }, { "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": 847 + "Id": 847, + "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": 848 + "Id": 848, + "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": 849 + "Id": 849, + "CommandName": "Invoke-PnPSiteSwap" }, { "Rank": 1, "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 850 + "Id": 850, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 2, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 851 + "Id": 851, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 3, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 852 + "Id": 852, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 4, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 853 + "Id": 853, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 5, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 854 + "Id": 854, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 6, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 855 + "Id": 855, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 7, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 856 + "Id": 856, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 8, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "CommandName": "Invoke-PnPSiteTemplate", - "Id": 857 + "Id": 857, + "CommandName": "Invoke-PnPSiteTemplate" }, { "Rank": 1, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "CommandName": "Invoke-PnPSPRestMethod", - "Id": 858 + "Id": 858, + "CommandName": "Invoke-PnPSPRestMethod" }, { "Rank": 1, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 859 + "Id": 859, + "CommandName": "Invoke-PnPTenantTemplate" }, { "Rank": 2, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 860 + "Id": 860, + "CommandName": "Invoke-PnPTenantTemplate" }, { "Rank": 3, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "CommandName": "Invoke-PnPTenantTemplate", - "Id": 861 + "Id": 861, + "CommandName": "Invoke-PnPTenantTemplate" }, { "Rank": 1, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction", - "Id": 862 + "Id": 862, + "CommandName": "Invoke-PnPWebAction" }, { "Rank": 2, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "CommandName": "Invoke-PnPWebAction", - "Id": 863 + "Id": 863, + "CommandName": "Invoke-PnPWebAction" }, { "Rank": 1, "Command": "Measure-PnPList \"Documents\"", - "CommandName": "Measure-PnPList", - "Id": 864 + "Id": 864, + "CommandName": "Measure-PnPList" }, { "Rank": 2, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "CommandName": "Measure-PnPList", - "Id": 865 + "Id": 865, + "CommandName": "Measure-PnPList" }, { "Rank": 1, "Command": "Measure-PnPWeb", - "CommandName": "Measure-PnPWeb", - "Id": 866 + "Id": 866, + "CommandName": "Measure-PnPWeb" }, { "Rank": 2, "Command": "Measure-PnPWeb $web -Recursive", - "CommandName": "Measure-PnPWeb", - "Id": 867 + "Id": 867, + "CommandName": "Measure-PnPWeb" }, { "Rank": 1, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "CommandName": "Move-PnPFile", - "Id": 868 + "Id": 868, + "CommandName": "Move-PnPFile" }, { "Rank": 2, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "CommandName": "Move-PnPFile", - "Id": 869 + "Id": 869, + "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": 870 + "Id": 870, + "CommandName": "Move-PnPFile" }, { "Rank": 4, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "CommandName": "Move-PnPFile", - "Id": 871 + "Id": 871, + "CommandName": "Move-PnPFile" }, { "Rank": 1, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "CommandName": "Move-PnPFolder", - "Id": 872 + "Id": 872, + "CommandName": "Move-PnPFolder" }, { "Rank": 2, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "CommandName": "Move-PnPFolder", - "Id": 873 + "Id": 873, + "CommandName": "Move-PnPFolder" }, { "Rank": 1, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Move-PnPListItemToRecycleBin", - "Id": 874 + "Id": 874, + "CommandName": "Move-PnPListItemToRecycleBin" }, { "Rank": 1, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "CommandName": "Move-PnPPageComponent", - "Id": 875 + "Id": 875, + "CommandName": "Move-PnPPageComponent" }, { "Rank": 2, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "CommandName": "Move-PnPPageComponent", - "Id": 876 + "Id": 876, + "CommandName": "Move-PnPPageComponent" }, { "Rank": 3, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "CommandName": "Move-PnPPageComponent", - "Id": 877 + "Id": 877, + "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": 878 + "Id": 878, + "CommandName": "Move-PnPPageComponent" }, { "Rank": 1, "Command": "Move-PnPRecycleBinItem", - "CommandName": "Move-PnpRecycleBinItem", - "Id": 879 + "Id": 879, + "CommandName": "Move-PnpRecycleBinItem" }, { "Rank": 2, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "CommandName": "Move-PnpRecycleBinItem", - "Id": 880 + "Id": 880, + "CommandName": "Move-PnpRecycleBinItem" }, { "Rank": 3, "Command": "Move-PnPRecycleBinItem -Force", - "CommandName": "Move-PnpRecycleBinItem", - "Id": 881 + "Id": 881, + "CommandName": "Move-PnpRecycleBinItem" }, { "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": 882 + "Id": 882, + "CommandName": "Move-PnPTerm" }, { "Rank": 2, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "CommandName": "Move-PnPTerm", - "Id": 883 + "Id": 883, + "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": 884 + "Id": 884, + "CommandName": "Move-PnPTerm" }, { "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": 885 + "Id": 885, + "CommandName": "Move-PnPTermSet" }, { "Rank": 2, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "CommandName": "Move-PnPTermSet", - "Id": 886 + "Id": 886, + "CommandName": "Move-PnPTermSet" }, { "Rank": 1, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPAzureADGroup", - "Id": 887 + "Id": 887, + "CommandName": "New-PnPAzureADGroup" }, { "Rank": 2, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "CommandName": "New-PnPAzureADGroup", - "Id": 888 + "Id": 888, + "CommandName": "New-PnPAzureADGroup" }, { "Rank": 3, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "CommandName": "New-PnPAzureADGroup", - "Id": 889 + "Id": 889, + "CommandName": "New-PnPAzureADGroup" }, { "Rank": 1, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 890 + "Id": 890, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Rank": 2, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Id": 891 + "Id": 891, + "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": 892 + "Id": 892, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { "Rank": 1, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "CommandName": "New-PnPAzureCertificate", - "Id": 893 + "Id": 893, + "CommandName": "New-PnPAzureCertificate" }, { "Rank": 2, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "CommandName": "New-PnPAzureCertificate", - "Id": 894 + "Id": 894, + "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": 895 + "Id": 895, + "CommandName": "New-PnPAzureCertificate" }, { "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": 896 + "Id": 896, + "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": 897 + "Id": 897, + "CommandName": "New-PnPGraphSubscription" }, { "Rank": 1, "Command": "New-PnPGroup -Title \"My Site Users\"", - "CommandName": "New-PnPGroup", - "Id": 898 + "Id": 898, + "CommandName": "New-PnPGroup" }, { "Rank": 1, "Command": "New-PnPList -Title Announcements -Template Announcements", - "CommandName": "New-PnPList", - "Id": 899 + "Id": 899, + "CommandName": "New-PnPList" }, { "Rank": 2, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "CommandName": "New-PnPList", - "Id": 900 + "Id": 900, + "CommandName": "New-PnPList" }, { "Rank": 3, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "CommandName": "New-PnPList", - "Id": 901 + "Id": 901, + "CommandName": "New-PnPList" }, { "Rank": 1, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "CommandName": "New-PnPMicrosoft365Group", - "Id": 902 + "Id": 902, + "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": 903 + "Id": 903, + "CommandName": "New-PnPMicrosoft365Group" }, { "Rank": 3, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group", - "Id": 904 + "Id": 904, + "CommandName": "New-PnPMicrosoft365Group" }, { "Rank": 4, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "CommandName": "New-PnPMicrosoft365Group", - "Id": 905 + "Id": 905, + "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": 906 + "Id": 906, + "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": 907 + "Id": 907, + "CommandName": "New-PnPMicrosoft365Group" }, { "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": 908 + "Id": 908, + "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": 909 + "Id": 909, + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { "Rank": 1, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "CommandName": "New-PnPPersonalSite", - "Id": 910 + "Id": 910, + "CommandName": "New-PnPPersonalSite" }, { "Rank": 1, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "CommandName": "New-PnPPlannerPlan", - "Id": 911 + "Id": 911, + "CommandName": "New-PnPPlannerPlan" }, { "Rank": 1, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "CommandName": "New-PnPSdnProvider", - "Id": 912 + "Id": 912, + "CommandName": "New-PnPSdnProvider" }, { "Rank": 1, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite", - "Id": 913 + "Id": 913, + "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": 914 + "Id": 914, + "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": 915 + "Id": 915, + "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": 916 + "Id": 916, + "CommandName": "New-PnPSite" }, { "Rank": 5, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite", - "Id": 917 + "Id": 917, + "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": 918 + "Id": 918, + "CommandName": "New-PnPSite" }, { "Rank": 7, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "CommandName": "New-PnPSite", - "Id": 919 + "Id": 919, + "CommandName": "New-PnPSite" }, { "Rank": 8, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "CommandName": "New-PnPSite", - "Id": 920 + "Id": 920, + "CommandName": "New-PnPSite" }, { "Rank": 9, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "CommandName": "New-PnPSite", - "Id": 921 + "Id": 921, + "CommandName": "New-PnPSite" }, { "Rank": 10, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "CommandName": "New-PnPSite", - "Id": 922 + "Id": 922, + "CommandName": "New-PnPSite" }, { "Rank": 11, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "CommandName": "New-PnPSite", - "Id": 923 + "Id": 923, + "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": 924 + "Id": 924, + "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": 925 + "Id": 925, + "CommandName": "New-PnPSite" }, { "Rank": 14, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "CommandName": "New-PnPSite", - "Id": 926 + "Id": 926, + "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": 927 + "Id": 927, + "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": 928 + "Id": 928, + "CommandName": "New-PnPSite" }, { "Rank": 1, "Command": "New-PnPSiteCollectionTermStore", - "CommandName": "New-PnPSiteCollectionTermStore", - "Id": 929 + "Id": 929, + "CommandName": "New-PnPSiteCollectionTermStore" }, { "Rank": 1, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "CommandName": "New-PnPSiteGroup", - "Id": 930 + "Id": 930, + "CommandName": "New-PnPSiteGroup" }, { "Rank": 2, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "CommandName": "New-PnPSiteGroup", - "Id": 931 + "Id": 931, + "CommandName": "New-PnPSiteGroup" }, { "Rank": 1, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 932 + "Id": 932, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 2, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 933 + "Id": 933, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 3, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 934 + "Id": 934, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 4, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 935 + "Id": 935, + "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": 936 + "Id": 936, + "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": 937 + "Id": 937, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 7, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 938 + "Id": 938, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 8, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "CommandName": "New-PnPSiteTemplateFromFolder", - "Id": 939 + "Id": 939, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { "Rank": 1, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "CommandName": "New-PnPTeamsApp", - "Id": 940 + "Id": 940, + "CommandName": "New-PnPTeamsApp" }, { "Rank": 1, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "CommandName": "New-PnPTeamsTeam", - "Id": 941 + "Id": 941, + "CommandName": "New-PnPTeamsTeam" }, { "Rank": 2, "Command": "New-PnPTeamsTeam -GroupId $groupId", - "CommandName": "New-PnPTeamsTeam", - "Id": 942 + "Id": 942, + "CommandName": "New-PnPTeamsTeam" }, { "Rank": 3, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "CommandName": "New-PnPTeamsTeam", - "Id": 943 + "Id": 943, + "CommandName": "New-PnPTeamsTeam" }, { "Rank": 4, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "CommandName": "New-PnPTeamsTeam", - "Id": 944 + "Id": 944, + "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": 945 + "Id": 945, + "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": 946 + "Id": 946, + "CommandName": "New-PnPTeamsTeam" }, { "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": 947 + "Id": 947, + "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": 948 + "Id": 948, + "CommandName": "New-PnPTenantSite" }, { "Rank": 1, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "CommandName": "New-PnPTerm", - "Id": 949 + "Id": 949, + "CommandName": "New-PnPTerm" }, { "Rank": 2, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "New-PnPTerm", - "Id": 950 + "Id": 950, + "CommandName": "New-PnPTerm" }, { "Rank": 1, "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "CommandName": "New-PnPTermGroup", - "Id": 951 + "Id": 951, + "CommandName": "New-PnPTermGroup" }, { "Rank": 1, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "CommandName": "New-PnPTermLabel", - "Id": 952 + "Id": 952, + "CommandName": "New-PnPTermLabel" }, { "Rank": 1, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "CommandName": "New-PnPTermSet", - "Id": 953 + "Id": 953, + "CommandName": "New-PnPTermSet" }, { "Rank": 1, "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "CommandName": "New-PnPUPABulkImportJob", - "Id": 954 + "Id": 954, + "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": 955 + "Id": 955, + "CommandName": "New-PnPUPABulkImportJob" }, { "Rank": 1, "Command": "New-PnPUser -LoginName user@company.com", - "CommandName": "New-PnPUser", - "Id": 956 + "Id": 956, + "CommandName": "New-PnPUser" }, { "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": 957 + "Id": 957, + "CommandName": "New-PnPWeb" }, { "Rank": 1, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "CommandName": "Publish-PnPApp", - "Id": 958 + "Id": 958, + "CommandName": "Publish-PnPApp" }, { "Rank": 2, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "CommandName": "Publish-PnPApp", - "Id": 959 + "Id": 959, + "CommandName": "Publish-PnPApp" }, { "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": 960 + "Id": 960, + "CommandName": "Publish-PnPCompanyApp" }, { "Rank": 1, "Command": "Publish-PnPContentType -ContentType 0x0101", - "CommandName": "Publish-PnPContentType", - "Id": 961 + "Id": 961, + "CommandName": "Publish-PnPContentType" }, { "Rank": 1, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Publish-PnPSyntexModel", - "Id": 962 + "Id": 962, + "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": 963 + "Id": 963, + "CommandName": "Publish-PnPSyntexModel" }, { "Rank": 1, "Command": "Read-PnPSiteTemplate -Path template.pnp", - "CommandName": "Read-PnPSiteTemplate", - "Id": 964 + "Id": 964, + "CommandName": "Read-PnPSiteTemplate" }, { "Rank": 2, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "CommandName": "Read-PnPSiteTemplate", - "Id": 965 + "Id": 965, + "CommandName": "Read-PnPSiteTemplate" }, { "Rank": 3, "Command": "Read-PnPSiteTemplate -Xml $xml", - "CommandName": "Read-PnPSiteTemplate", - "Id": 966 + "Id": 966, + "CommandName": "Read-PnPSiteTemplate" }, { "Rank": 1, "Command": "Read-PnPTenantTemplate -Path template.pnp", - "CommandName": "Read-PnPTenantTemplate", - "Id": 967 + "Id": 967, + "CommandName": "Read-PnPTenantTemplate" }, { "Rank": 1, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "CommandName": "Register-PnPAppCatalogSite", - "Id": 968 + "Id": 968, + "CommandName": "Register-PnPAppCatalogSite" }, { "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": 969 + "Id": 969, + "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": 970 + "Id": 970, + "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": 971 + "Id": 971, + "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": 972 + "Id": 972, + "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": 973 + "Id": 973, + "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": 974 + "Id": 974, + "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": 975 + "Id": 975, + "CommandName": "Register-PnPAzureADApp" }, { "Rank": 1, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Register-PnPHubSite", - "Id": 976 + "Id": 976, + "CommandName": "Register-PnPHubSite" }, { "Rank": 2, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "CommandName": "Register-PnPHubSite", - "Id": 977 + "Id": 977, + "CommandName": "Register-PnPHubSite" }, { "Rank": 1, "Command": "Register-PnPManagementShellAccess", - "CommandName": "Register-PnPManagementShellAccess", - "Id": 978 + "Id": 978, + "CommandName": "Register-PnPManagementShellAccess" }, { "Rank": 2, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "CommandName": "Register-PnPManagementShellAccess", - "Id": 979 + "Id": 979, + "CommandName": "Register-PnPManagementShellAccess" }, { "Rank": 3, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "CommandName": "Register-PnPManagementShellAccess", - "Id": 980 + "Id": 980, + "CommandName": "Register-PnPManagementShellAccess" }, { "Rank": 1, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 981 + "Id": 981, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { "Rank": 2, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Id": 982 + "Id": 982, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { "Rank": 1, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "CommandName": "Remove-PnPAlert", - "Id": 983 + "Id": 983, + "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": 984 + "Id": 984, + "CommandName": "Remove-PnPAlert" }, { "Rank": 1, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Remove-PnPApp", - "Id": 985 + "Id": 985, + "CommandName": "Remove-PnPApp" }, { "Rank": 2, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Remove-PnPApp", - "Id": 986 + "Id": 986, + "CommandName": "Remove-PnPApp" }, { "Rank": 1, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 987 + "Id": 987, + "CommandName": "Remove-PnPApplicationCustomizer" }, { "Rank": 2, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPApplicationCustomizer", - "Id": 988 + "Id": 988, + "CommandName": "Remove-PnPApplicationCustomizer" }, { "Rank": 1, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 989 + "Id": 989, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { "Rank": 2, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Remove-PnPAvailableSiteClassification", - "Id": 990 + "Id": 990, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { "Rank": 1, "Command": "Remove-PnPAzureADApp -Identity MyApp", - "CommandName": "Remove-PnPAzureADApp", - "Id": 991 + "Id": 991, + "CommandName": "Remove-PnPAzureADApp" }, { "Rank": 2, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "CommandName": "Remove-PnPAzureADApp", - "Id": 992 + "Id": 992, + "CommandName": "Remove-PnPAzureADApp" }, { "Rank": 1, "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "CommandName": "Remove-PnPAzureADGroup", - "Id": 993 + "Id": 993, + "CommandName": "Remove-PnPAzureADGroup" }, { "Rank": 2, "Command": "Remove-PnPAzureADGroup -Identity $group", - "CommandName": "Remove-PnPAzureADGroup", - "Id": 994 + "Id": 994, + "CommandName": "Remove-PnPAzureADGroup" }, { "Rank": 1, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupMember", - "Id": 995 + "Id": 995, + "CommandName": "Remove-PnPAzureADGroupMember" }, { "Rank": 1, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPAzureADGroupOwner", - "Id": 996 + "Id": 996, + "CommandName": "Remove-PnPAzureADGroupOwner" }, { "Rank": 1, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 997 + "Id": 997, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Rank": 2, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 998 + "Id": 998, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Rank": 3, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 999 + "Id": 999, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Rank": 4, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Id": 1000 + "Id": 1000, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { "Rank": 1, "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "CommandName": "Remove-PnPContentType", - "Id": 1001 + "Id": 1001, + "CommandName": "Remove-PnPContentType" }, { "Rank": 2, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "CommandName": "Remove-PnPContentType", - "Id": 1002 + "Id": 1002, + "CommandName": "Remove-PnPContentType" }, { "Rank": 1, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1003 + "Id": 1003, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { "Rank": 2, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Id": 1004 + "Id": 1004, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { "Rank": 1, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPContentTypeFromList", - "Id": 1005 + "Id": 1005, + "CommandName": "Remove-PnPContentTypeFromList" }, { "Rank": 1, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Remove-PnPCustomAction", - "Id": 1006 + "Id": 1006, + "CommandName": "Remove-PnPCustomAction" }, { "Rank": 2, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "CommandName": "Remove-PnPCustomAction", - "Id": 1007 + "Id": 1007, + "CommandName": "Remove-PnPCustomAction" }, { "Rank": 3, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "CommandName": "Remove-PnPCustomAction", - "Id": 1008 + "Id": 1008, + "CommandName": "Remove-PnPCustomAction" }, { "Rank": 1, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Id": 1009 + "Id": 1009, + "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { "Rank": 1, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1010 + "Id": 1010, + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 2, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1011 + "Id": 1011, + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 3, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1012 + "Id": 1012, + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 4, "Command": "Remove-PnPEventReceiver -List ProjectList", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1013 + "Id": 1013, + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 5, "Command": "Remove-PnPEventReceiver", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1014 + "Id": 1014, + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 6, "Command": "Remove-PnPEventReceiver -Scope Site", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1015 + "Id": 1015, + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 7, "Command": "Remove-PnPEventReceiver -Scope Web", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1016 + "Id": 1016, + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 8, "Command": "Remove-PnPEventReceiver -Scope All", - "CommandName": "Remove-PnPEventReceiver", - "Id": 1017 + "Id": 1017, + "CommandName": "Remove-PnPEventReceiver" }, { "Rank": 1, "Command": "Remove-PnPField -Identity \"Speakers\"", - "CommandName": "Remove-PnPField", - "Id": 1018 + "Id": 1018, + "CommandName": "Remove-PnPField" }, { "Rank": 2, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "CommandName": "Remove-PnPField", - "Id": 1019 + "Id": 1019, + "CommandName": "Remove-PnPField" }, { "Rank": 1, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1020 + "Id": 1020, + "CommandName": "Remove-PnPFieldFromContentType" }, { "Rank": 2, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "CommandName": "Remove-PnPFieldFromContentType", - "Id": 1021 + "Id": 1021, + "CommandName": "Remove-PnPFieldFromContentType" }, { "Rank": 1, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile", - "Id": 1022 + "Id": 1022, + "CommandName": "Remove-PnPFile" }, { "Rank": 2, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "CommandName": "Remove-PnPFile", - "Id": 1023 + "Id": 1023, + "CommandName": "Remove-PnPFile" }, { "Rank": 3, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "CommandName": "Remove-PnPFile", - "Id": 1024 + "Id": 1024, + "CommandName": "Remove-PnPFile" }, { "Rank": 1, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "CommandName": "Remove-PnPFileFromSiteTemplate", - "Id": 1025 + "Id": 1025, + "CommandName": "Remove-PnPFileFromSiteTemplate" }, { "Rank": 1, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "CommandName": "Remove-PnPFileSharingLink", - "Id": 1026 + "Id": 1026, + "CommandName": "Remove-PnPFileSharingLink" }, { "Rank": 2, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "CommandName": "Remove-PnPFileSharingLink", - "Id": 1027 + "Id": 1027, + "CommandName": "Remove-PnPFileSharingLink" }, { "Rank": 1, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Remove-PnPFileVersion", - "Id": 1028 + "Id": 1028, + "CommandName": "Remove-PnPFileVersion" }, { "Rank": 2, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Remove-PnPFileVersion", - "Id": 1029 + "Id": 1029, + "CommandName": "Remove-PnPFileVersion" }, { "Rank": 3, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "CommandName": "Remove-PnPFileVersion", - "Id": 1030 + "Id": 1030, + "CommandName": "Remove-PnPFileVersion" }, { "Rank": 1, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "CommandName": "Remove-PnPFolder", - "Id": 1031 + "Id": 1031, + "CommandName": "Remove-PnPFolder" }, { "Rank": 2, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "CommandName": "Remove-PnPFolder", - "Id": 1032 + "Id": 1032, + "CommandName": "Remove-PnPFolder" }, { "Rank": 1, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1033 + "Id": 1033, + "CommandName": "Remove-PnPFolderSharingLink" }, { "Rank": 2, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "CommandName": "Remove-PnPFolderSharingLink", - "Id": 1034 + "Id": 1034, + "CommandName": "Remove-PnPFolderSharingLink" }, { "Rank": 1, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "CommandName": "Remove-PnPGraphSubscription", - "Id": 1035 + "Id": 1035, + "CommandName": "Remove-PnPGraphSubscription" }, { "Rank": 1, "Command": "Remove-PnPGroup -Identity \"My Users\"", - "CommandName": "Remove-PnPGroup", - "Id": 1036 + "Id": 1036, + "CommandName": "Remove-PnPGroup" }, { "Rank": 1, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "CommandName": "Remove-PnPGroupMember", - "Id": 1037 + "Id": 1037, + "CommandName": "Remove-PnPGroupMember" }, { "Rank": 1, "Command": "Remove-PnPHomeSite", - "CommandName": "Remove-PnPHomeSite", - "Id": 1038 + "Id": 1038, + "CommandName": "Remove-PnPHomeSite" }, { "Rank": 1, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPHubSiteAssociation", - "Id": 1039 + "Id": 1039, + "CommandName": "Remove-PnPHubSiteAssociation" }, { "Rank": 1, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1040 + "Id": 1040, + "CommandName": "Remove-PnPHubToHubAssociation" }, { "Rank": 2, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "CommandName": "Remove-PnPHubToHubAssociation", - "Id": 1041 + "Id": 1041, + "CommandName": "Remove-PnPHubToHubAssociation" }, { "Rank": 1, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "CommandName": "Remove-PnPIndexedProperty", - "Id": 1042 + "Id": 1042, + "CommandName": "Remove-PnPIndexedProperty" }, { "Rank": 1, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1043 + "Id": 1043, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Rank": 2, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1044 + "Id": 1044, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Rank": 3, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1045 + "Id": 1045, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Rank": 4, "Command": "Remove-PnPJavaScriptLink -Scope Site", - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1046 + "Id": 1046, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Rank": 5, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "CommandName": "Remove-PnPJavaScriptLink", - "Id": 1047 + "Id": 1047, + "CommandName": "Remove-PnPJavaScriptLink" }, { "Rank": 1, "Command": "Remove-PnPKnowledgeHubSite", - "CommandName": "Remove-PnPKnowledgeHubSite", - "Id": 1048 + "Id": 1048, + "CommandName": "Remove-PnPKnowledgeHubSite" }, { "Rank": 1, "Command": "Remove-PnPList -Identity Announcements", - "CommandName": "Remove-PnPList", - "Id": 1049 + "Id": 1049, + "CommandName": "Remove-PnPList" }, { "Rank": 2, "Command": "Remove-PnPList -Identity Announcements -Force", - "CommandName": "Remove-PnPList", - "Id": 1050 + "Id": 1050, + "CommandName": "Remove-PnPList" }, { "Rank": 3, "Command": "Remove-PnPList -Identity Announcements -Recycle", - "CommandName": "Remove-PnPList", - "Id": 1051 + "Id": 1051, + "CommandName": "Remove-PnPList" }, { "Rank": 4, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "CommandName": "Remove-PnPList", - "Id": 1052 + "Id": 1052, + "CommandName": "Remove-PnPList" }, { "Rank": 1, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPListDesign", - "Id": 1053 + "Id": 1053, + "CommandName": "Remove-PnPListDesign" }, { "Rank": 1, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "CommandName": "Remove-PnPListItem", - "Id": 1054 + "Id": 1054, + "CommandName": "Remove-PnPListItem" }, { "Rank": 2, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "CommandName": "Remove-PnPListItem", - "Id": 1055 + "Id": 1055, + "CommandName": "Remove-PnPListItem" }, { "Rank": 3, "Command": "Remove-PnPListItem -List \"Demo List\"", - "CommandName": "Remove-PnPListItem", - "Id": 1056 + "Id": 1056, + "CommandName": "Remove-PnPListItem" }, { "Rank": 1, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1057 + "Id": 1057, + "CommandName": "Remove-PnPListItemAttachment" }, { "Rank": 2, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1058 + "Id": 1058, + "CommandName": "Remove-PnPListItemAttachment" }, { "Rank": 3, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1059 + "Id": 1059, + "CommandName": "Remove-PnPListItemAttachment" }, { "Rank": 4, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1060 + "Id": 1060, + "CommandName": "Remove-PnPListItemAttachment" }, { "Rank": 5, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "CommandName": "Remove-PnPListItemAttachment", - "Id": 1061 + "Id": 1061, + "CommandName": "Remove-PnPListItemAttachment" }, { "Rank": 1, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Remove-PnPListItemVersion", - "Id": 1062 + "Id": 1062, + "CommandName": "Remove-PnPListItemVersion" }, { "Rank": 2, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Remove-PnPListItemVersion", - "Id": 1063 + "Id": 1063, + "CommandName": "Remove-PnPListItemVersion" }, { "Rank": 1, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1064 + "Id": 1064, + "CommandName": "Remove-PnPMicrosoft365Group" }, { "Rank": 2, "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "CommandName": "Remove-PnPMicrosoft365Group", - "Id": 1065 + "Id": 1065, + "CommandName": "Remove-PnPMicrosoft365Group" }, { "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Id": 1066 + "Id": 1066, + "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Id": 1067 + "Id": 1067, + "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1068 + "Id": 1068, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { "Rank": 2, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Id": 1069 + "Id": 1069, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { "Rank": 1, "Command": "Remove-PnPNavigationNode -Identity 1032", - "CommandName": "Remove-PnPNavigationNode", - "Id": 1070 + "Id": 1070, + "CommandName": "Remove-PnPNavigationNode" }, { "Rank": 2, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "CommandName": "Remove-PnPNavigationNode", - "Id": 1071 + "Id": 1071, + "CommandName": "Remove-PnPNavigationNode" }, { "Rank": 3, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "CommandName": "Remove-PnPNavigationNode", - "Id": 1072 + "Id": 1072, + "CommandName": "Remove-PnPNavigationNode" }, { "Rank": 1, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1073 + "Id": 1073, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Rank": 2, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1074 + "Id": 1074, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Rank": 3, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Id": 1075 + "Id": 1075, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { "Rank": 1, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "CommandName": "Remove-PnPOrgNewsSite", - "Id": 1076 + "Id": 1076, + "CommandName": "Remove-PnPOrgNewsSite" }, { "Rank": 1, "Command": "Remove-PnPPage -Identity \"MyPage\"", - "CommandName": "Remove-PnPPage", - "Id": 1077 + "Id": 1077, + "CommandName": "Remove-PnPPage" }, { "Rank": 2, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "CommandName": "Remove-PnPPage", - "Id": 1078 + "Id": 1078, + "CommandName": "Remove-PnPPage" }, { "Rank": 3, "Command": "Remove-PnPPage $page", - "CommandName": "Remove-PnPPage", - "Id": 1079 + "Id": 1079, + "CommandName": "Remove-PnPPage" }, { "Rank": 4, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "CommandName": "Remove-PnPPage", - "Id": 1080 + "Id": 1080, + "CommandName": "Remove-PnPPage" }, { "Rank": 1, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPPageComponent", - "Id": 1081 + "Id": 1081, + "CommandName": "Remove-PnPPageComponent" }, { "Rank": 1, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "CommandName": "Remove-PnPPlannerBucket", - "Id": 1082 + "Id": 1082, + "CommandName": "Remove-PnPPlannerBucket" }, { "Rank": 1, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "CommandName": "Remove-PnPPlannerPlan", - "Id": 1083 + "Id": 1083, + "CommandName": "Remove-PnPPlannerPlan" }, { "Rank": 1, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "CommandName": "Remove-PnPPlannerRoster", - "Id": 1084 + "Id": 1084, + "CommandName": "Remove-PnPPlannerRoster" }, { "Rank": 1, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPPlannerRosterMember", - "Id": 1085 + "Id": 1085, + "CommandName": "Remove-PnPPlannerRosterMember" }, { "Rank": 1, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "CommandName": "Remove-PnPPlannerTask", - "Id": 1086 + "Id": 1086, + "CommandName": "Remove-PnPPlannerTask" }, { "Rank": 1, "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1087 + "Id": 1087, + "CommandName": "Remove-PnPPropertyBagValue" }, { "Rank": 2, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1088 + "Id": 1088, + "CommandName": "Remove-PnPPropertyBagValue" }, { "Rank": 3, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "CommandName": "Remove-PnPPropertyBagValue", - "Id": 1089 + "Id": 1089, + "CommandName": "Remove-PnPPropertyBagValue" }, { "Rank": 1, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "CommandName": "Remove-PnPPublishingImageRendition", - "Id": 1090 + "Id": 1090, + "CommandName": "Remove-PnPPublishingImageRendition" }, { "Rank": 1, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "CommandName": "Remove-PnPRoleDefinition", - "Id": 1091 + "Id": 1091, + "CommandName": "Remove-PnPRoleDefinition" }, { "Rank": 1, "Command": "Remove-PnPSdnProvider -Confirm:false", - "CommandName": "Remove-PnPSdnProvider", - "Id": 1092 + "Id": 1092, + "CommandName": "Remove-PnPSdnProvider" }, { "Rank": 1, "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1093 + "Id": 1093, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Rank": 2, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1094 + "Id": 1094, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Rank": 3, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1095 + "Id": 1095, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Rank": 4, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Remove-PnPSearchConfiguration", - "Id": 1096 + "Id": 1096, + "CommandName": "Remove-PnPSearchConfiguration" }, { "Rank": 1, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1097 + "Id": 1097, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { "Rank": 2, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Id": 1098 + "Id": 1098, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { "Rank": 1, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Id": 1099 + "Id": 1099, + "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { "Rank": 1, "Command": "Remove-PnPSiteCollectionTermStore", - "CommandName": "Remove-PnPSiteCollectionTermStore", - "Id": 1100 + "Id": 1100, + "CommandName": "Remove-PnPSiteCollectionTermStore" }, { "Rank": 1, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesign", - "Id": 1101 + "Id": 1101, + "CommandName": "Remove-PnPSiteDesign" }, { "Rank": 1, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteDesignTask", - "Id": 1102 + "Id": 1102, + "CommandName": "Remove-PnPSiteDesignTask" }, { "Rank": 1, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Remove-PnPSiteGroup", - "Id": 1103 + "Id": 1103, + "CommandName": "Remove-PnPSiteGroup" }, { "Rank": 2, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "CommandName": "Remove-PnPSiteGroup", - "Id": 1104 + "Id": 1104, + "CommandName": "Remove-PnPSiteGroup" }, { "Rank": 1, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "CommandName": "Remove-PnPSiteScript", - "Id": 1105 + "Id": 1105, + "CommandName": "Remove-PnPSiteScript" }, { "Rank": 1, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "CommandName": "Remove-PnPSiteUserInvitations", - "Id": 1106 + "Id": 1106, + "CommandName": "Remove-PnPSiteUserInvitations" }, { "Rank": 1, "Command": "Remove-PnPStorageEntity -Key MyKey", - "CommandName": "Remove-PnPStorageEntity", - "Id": 1107 + "Id": 1107, + "CommandName": "Remove-PnPStorageEntity" }, { "Rank": 2, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "CommandName": "Remove-PnPStorageEntity", - "Id": 1108 + "Id": 1108, + "CommandName": "Remove-PnPStorageEntity" }, { "Rank": 1, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "CommandName": "Remove-PnPStoredCredential", - "Id": 1109 + "Id": 1109, + "CommandName": "Remove-PnPStoredCredential" }, { "Rank": 1, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1110 + "Id": 1110, + "CommandName": "Remove-PnPTaxonomyItem" }, { "Rank": 2, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "CommandName": "Remove-PnPTaxonomyItem", - "Id": 1111 + "Id": 1111, + "CommandName": "Remove-PnPTaxonomyItem" }, { "Rank": 1, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "CommandName": "Remove-PnPTeamsApp", - "Id": 1112 + "Id": 1112, + "CommandName": "Remove-PnPTeamsApp" }, { "Rank": 2, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "CommandName": "Remove-PnPTeamsApp", - "Id": 1113 + "Id": 1113, + "CommandName": "Remove-PnPTeamsApp" }, { "Rank": 1, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "CommandName": "Remove-PnPTeamsChannel", - "Id": 1114 + "Id": 1114, + "CommandName": "Remove-PnPTeamsChannel" }, { "Rank": 1, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1115 + "Id": 1115, + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Rank": 2, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1116 + "Id": 1116, + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Rank": 3, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "CommandName": "Remove-PnPTeamsChannelUser", - "Id": 1117 + "Id": 1117, + "CommandName": "Remove-PnPTeamsChannelUser" }, { "Rank": 1, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "CommandName": "Remove-PnPTeamsTab", - "Id": 1118 + "Id": 1118, + "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": 1119 + "Id": 1119, + "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": 1120 + "Id": 1120, + "CommandName": "Remove-PnPTeamsTab" }, { "Rank": 1, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "CommandName": "Remove-PnPTeamsTag", - "Id": 1121 + "Id": 1121, + "CommandName": "Remove-PnPTeamsTag" }, { "Rank": 1, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "CommandName": "Remove-PnPTeamsTeam", - "Id": 1122 + "Id": 1122, + "CommandName": "Remove-PnPTeamsTeam" }, { "Rank": 2, "Command": "Remove-PnPTeamsTeam -Identity testteam", - "CommandName": "Remove-PnPTeamsTeam", - "Id": 1123 + "Id": 1123, + "CommandName": "Remove-PnPTeamsTeam" }, { "Rank": 1, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "CommandName": "Remove-PnPTeamsUser", - "Id": 1124 + "Id": 1124, + "CommandName": "Remove-PnPTeamsUser" }, { "Rank": 2, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Remove-PnPTeamsUser", - "Id": 1125 + "Id": 1125, + "CommandName": "Remove-PnPTeamsUser" }, { "Rank": 1, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "CommandName": "Remove-PnPTenantCdnOrigin", - "Id": 1126 + "Id": 1126, + "CommandName": "Remove-PnPTenantCdnOrigin" }, { "Rank": 1, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1127 + "Id": 1127, + "CommandName": "Remove-PnPTenantDeletedSite" }, { "Rank": 2, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Remove-PnPTenantDeletedSite", - "Id": 1128 + "Id": 1128, + "CommandName": "Remove-PnPTenantDeletedSite" }, { "Rank": 1, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Remove-PnPTenantSite", - "Id": 1129 + "Id": 1129, + "CommandName": "Remove-PnPTenantSite" }, { "Rank": 2, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "CommandName": "Remove-PnPTenantSite", - "Id": 1130 + "Id": 1130, + "CommandName": "Remove-PnPTenantSite" }, { "Rank": 3, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "CommandName": "Remove-PnPTenantSite", - "Id": 1131 + "Id": 1131, + "CommandName": "Remove-PnPTenantSite" }, { "Rank": 1, "Command": "Remove-PnPTenantSyncClientRestriction", - "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Id": 1132 + "Id": 1132, + "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { "Rank": 1, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "CommandName": "Remove-PnPTenantTheme", - "Id": 1133 + "Id": 1133, + "CommandName": "Remove-PnPTenantTheme" }, { "Rank": 1, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTerm", - "Id": 1134 + "Id": 1134, + "CommandName": "Remove-PnPTerm" }, { "Rank": 2, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTerm", - "Id": 1135 + "Id": 1135, + "CommandName": "Remove-PnPTerm" }, { "Rank": 1, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "CommandName": "Remove-PnPTermGroup", - "Id": 1136 + "Id": 1136, + "CommandName": "Remove-PnPTermGroup" }, { "Rank": 2, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "CommandName": "Remove-PnPTermGroup", - "Id": 1137 + "Id": 1137, + "CommandName": "Remove-PnPTermGroup" }, { "Rank": 3, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "CommandName": "Remove-PnPTermGroup", - "Id": 1138 + "Id": 1138, + "CommandName": "Remove-PnPTermGroup" }, { "Rank": 1, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "CommandName": "Remove-PnPTermLabel", - "Id": 1139 + "Id": 1139, + "CommandName": "Remove-PnPTermLabel" }, { "Rank": 2, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "CommandName": "Remove-PnPTermLabel", - "Id": 1140 + "Id": 1140, + "CommandName": "Remove-PnPTermLabel" }, { "Rank": 1, "Command": "Remove-PnPUser -Identity 23", - "CommandName": "Remove-PnPUser", - "Id": 1141 + "Id": 1141, + "CommandName": "Remove-PnPUser" }, { "Rank": 2, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "CommandName": "Remove-PnPUser", - "Id": 1142 + "Id": 1142, + "CommandName": "Remove-PnPUser" }, { "Rank": 3, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "CommandName": "Remove-PnPUser", - "Id": 1143 + "Id": 1143, + "CommandName": "Remove-PnPUser" }, { "Rank": 1, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "CommandName": "Remove-PnPUserInfo", - "Id": 1144 + "Id": 1144, + "CommandName": "Remove-PnPUserInfo" }, { "Rank": 1, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "CommandName": "Remove-PnPUserProfile", - "Id": 1145 + "Id": 1145, + "CommandName": "Remove-PnPUserProfile" }, { "Rank": 1, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "CommandName": "Remove-PnPView", - "Id": 1146 + "Id": 1146, + "CommandName": "Remove-PnPView" }, { "Rank": 1, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Id": 1147 + "Id": 1147, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { "Rank": 1, "Command": "Remove-PnPWeb -Identity projectA", - "CommandName": "Remove-PnPWeb", - "Id": 1148 + "Id": 1148, + "CommandName": "Remove-PnPWeb" }, { "Rank": 2, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "CommandName": "Remove-PnPWeb", - "Id": 1149 + "Id": 1149, + "CommandName": "Remove-PnPWeb" }, { "Rank": 1, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "CommandName": "Remove-PnPWebhookSubscription", - "Id": 1150 + "Id": 1150, + "CommandName": "Remove-PnPWebhookSubscription" }, { "Rank": 1, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "CommandName": "Remove-PnPWebPart", - "Id": 1151 + "Id": 1151, + "CommandName": "Remove-PnPWebPart" }, { "Rank": 2, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "CommandName": "Remove-PnPWebPart", - "Id": 1152 + "Id": 1152, + "CommandName": "Remove-PnPWebPart" }, { "Rank": 1, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "CommandName": "Remove-PnPWikiPage", - "Id": 1153 + "Id": 1153, + "CommandName": "Remove-PnPWikiPage" }, { "Rank": 1, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile", - "Id": 1154 + "Id": 1154, + "CommandName": "Rename-PnPFile" }, { "Rank": 2, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "CommandName": "Rename-PnPFile", - "Id": 1155 + "Id": 1155, + "CommandName": "Rename-PnPFile" }, { "Rank": 3, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "CommandName": "Rename-PnPFile", - "Id": 1156 + "Id": 1156, + "CommandName": "Rename-PnPFile" }, { "Rank": 1, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "CommandName": "Rename-PnPFolder", - "Id": 1157 + "Id": 1157, + "CommandName": "Rename-PnPFolder" }, { "Rank": 1, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Repair-PnPSite", - "Id": 1158 + "Id": 1158, + "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": 1159 + "Id": 1159, + "CommandName": "Repair-PnPSite" }, { "Rank": 1, "Command": "Request-PnPAccessToken", - "CommandName": "Request-PnPAccessToken", - "Id": 1160 + "Id": 1160, + "CommandName": "Request-PnPAccessToken" }, { "Rank": 2, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "CommandName": "Request-PnPAccessToken", - "Id": 1161 + "Id": 1161, + "CommandName": "Request-PnPAccessToken" }, { "Rank": 3, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "CommandName": "Request-PnPAccessToken", - "Id": 1162 + "Id": 1162, + "CommandName": "Request-PnPAccessToken" }, { "Rank": 4, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "CommandName": "Request-PnPAccessToken", - "Id": 1163 + "Id": 1163, + "CommandName": "Request-PnPAccessToken" }, { "Rank": 1, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "CommandName": "Request-PnPPersonalSite", - "Id": 1164 + "Id": 1164, + "CommandName": "Request-PnPPersonalSite" }, { "Rank": 2, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "CommandName": "Request-PnPPersonalSite", - "Id": 1165 + "Id": 1165, + "CommandName": "Request-PnPPersonalSite" }, { "Rank": 1, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "CommandName": "Request-PnPReIndexList", - "Id": 1166 + "Id": 1166, + "CommandName": "Request-PnPReIndexList" }, { "Rank": 1, "Command": "Request-PnPReIndexWeb", - "CommandName": "Request-PnPReIndexWeb", - "Id": 1167 + "Id": 1167, + "CommandName": "Request-PnPReIndexWeb" }, { "Rank": 1, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1168 + "Id": 1168, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Rank": 2, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1169 + "Id": 1169, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Rank": 3, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Id": 1170 + "Id": 1170, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { "Rank": 1, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "CommandName": "Reset-PnPFileVersion", - "Id": 1171 + "Id": 1171, + "CommandName": "Reset-PnPFileVersion" }, { "Rank": 2, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "CommandName": "Reset-PnPFileVersion", - "Id": 1172 + "Id": 1172, + "CommandName": "Reset-PnPFileVersion" }, { "Rank": 1, "Command": "Reset-PnPLabel -List \"Demo List\"", - "CommandName": "Reset-PnPLabel", - "Id": 1173 + "Id": 1173, + "CommandName": "Reset-PnPLabel" }, { "Rank": 2, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "CommandName": "Reset-PnPLabel", - "Id": 1174 + "Id": 1174, + "CommandName": "Reset-PnPLabel" }, { "Rank": 1, "Command": "Reset-PnPMicrosoft365GroupExpiration", - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1175 + "Id": 1175, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { "Rank": 1, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Id": 1176 + "Id": 1176, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { "Rank": 1, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "CommandName": "Resolve-PnPFolder", - "Id": 1177 + "Id": 1177, + "CommandName": "Resolve-PnPFolder" }, { "Rank": 1, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Id": 1178 + "Id": 1178, + "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { "Rank": 1, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion", - "Id": 1179 + "Id": 1179, + "CommandName": "Restore-PnPFileVersion" }, { "Rank": 2, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "CommandName": "Restore-PnPFileVersion", - "Id": 1180 + "Id": 1180, + "CommandName": "Restore-PnPFileVersion" }, { "Rank": 3, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "CommandName": "Restore-PnPFileVersion", - "Id": 1181 + "Id": 1181, + "CommandName": "Restore-PnPFileVersion" }, { "Rank": 1, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "CommandName": "Restore-PnPListItemVersion", - "Id": 1182 + "Id": 1182, + "CommandName": "Restore-PnPListItemVersion" }, { "Rank": 2, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "CommandName": "Restore-PnPListItemVersion", - "Id": 1183 + "Id": 1183, + "CommandName": "Restore-PnPListItemVersion" }, { "Rank": 1, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "CommandName": "Restore-PnPRecycleBinItem", - "Id": 1184 + "Id": 1184, + "CommandName": "Restore-PnPRecycleBinItem" }, { "Rank": 1, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1185 + "Id": 1185, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { "Rank": 2, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Id": 1186 + "Id": 1186, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { "Rank": 1, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "CommandName": "Restore-PnPTenantSite", - "Id": 1187 + "Id": 1187, + "CommandName": "Restore-PnPTenantSite" }, { "Rank": 2, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "CommandName": "Restore-PnPTenantSite", - "Id": 1188 + "Id": 1188, + "CommandName": "Restore-PnPTenantSite" }, { "Rank": 3, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "CommandName": "Restore-PnPTenantSite", - "Id": 1189 + "Id": 1189, + "CommandName": "Restore-PnPTenantSite" }, { "Rank": 1, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Id": 1190 + "Id": 1190, + "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { "Rank": 1, "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPHubSiteRights", - "Id": 1191 + "Id": 1191, + "CommandName": "Revoke-PnPHubSiteRights" }, { "Rank": 1, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "CommandName": "Revoke-PnPSiteDesignRights", - "Id": 1192 + "Id": 1192, + "CommandName": "Revoke-PnPSiteDesignRights" }, { "Rank": 1, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Id": 1193 + "Id": 1193, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { "Rank": 1, "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "CommandName": "Revoke-PnPUserSession", - "Id": 1194 + "Id": 1194, + "CommandName": "Revoke-PnPUserSession" }, { "Rank": 1, "Command": "Save-PnPPageConversionLog", - "CommandName": "Save-PnPPageConversionLog", - "Id": 1195 + "Id": 1195, + "CommandName": "Save-PnPPageConversionLog" }, { "Rank": 1, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "CommandName": "Save-PnPSiteTemplate", - "Id": 1196 + "Id": 1196, + "CommandName": "Save-PnPSiteTemplate" }, { "Rank": 1, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "CommandName": "Save-PnPTenantTemplate", - "Id": 1197 + "Id": 1197, + "CommandName": "Save-PnPTenantTemplate" }, { "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": 1198 + "Id": 1198, + "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": 1199 + "Id": 1199, + "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": 1200 + "Id": 1200, + "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": 1201 + "Id": 1201, + "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": 1202 + "Id": 1202, + "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": 1203 + "Id": 1203, + "CommandName": "Send-PnPMail" }, { "Rank": 1, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "CommandName": "Set-PnPAdaptiveScopeProperty", - "Id": 1204 + "Id": 1204, + "CommandName": "Set-PnPAdaptiveScopeProperty" }, { "Rank": 1, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "CommandName": "Set-PnPApplicationCustomizer", - "Id": 1205 + "Id": 1205, + "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": 1206 + "Id": 1206, + "CommandName": "Set-PnPApplicationCustomizer" }, { "Rank": 1, "Command": "Set-PnPAppSideLoading -On", - "CommandName": "Set-PnPAppSideLoading", - "Id": 1207 + "Id": 1207, + "CommandName": "Set-PnPAppSideLoading" }, { "Rank": 2, "Command": "Set-PnPAppSideLoading -Off", - "CommandName": "Set-PnPAppSideLoading", - "Id": 1208 + "Id": 1208, + "CommandName": "Set-PnPAppSideLoading" }, { "Rank": 1, "Command": "Set-PnPAuditing -EnableAll", - "CommandName": "Set-PnPAuditing", - "Id": 1209 + "Id": 1209, + "CommandName": "Set-PnPAuditing" }, { "Rank": 2, "Command": "Set-PnPAuditing -DisableAll", - "CommandName": "Set-PnPAuditing", - "Id": 1210 + "Id": 1210, + "CommandName": "Set-PnPAuditing" }, { "Rank": 3, "Command": "Set-PnPAuditing -RetentionTime 7", - "CommandName": "Set-PnPAuditing", - "Id": 1211 + "Id": 1211, + "CommandName": "Set-PnPAuditing" }, { "Rank": 4, "Command": "Set-PnPAuditing -TrimAuditLog", - "CommandName": "Set-PnPAuditing", - "Id": 1212 + "Id": 1212, + "CommandName": "Set-PnPAuditing" }, { "Rank": 5, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "CommandName": "Set-PnPAuditing", - "Id": 1213 + "Id": 1213, + "CommandName": "Set-PnPAuditing" }, { "Rank": 1, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "CommandName": "Set-PnPAvailablePageLayouts", - "Id": 1214 + "Id": 1214, + "CommandName": "Set-PnPAvailablePageLayouts" }, { "Rank": 1, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1215 + "Id": 1215, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { "Rank": 2, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "CommandName": "Set-PnPAzureADAppSitePermission", - "Id": 1216 + "Id": 1216, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { "Rank": 1, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup", - "Id": 1217 + "Id": 1217, + "CommandName": "Set-PnPAzureADGroup" }, { "Rank": 2, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPAzureADGroup", - "Id": 1218 + "Id": 1218, + "CommandName": "Set-PnPAzureADGroup" }, { "Rank": 3, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPAzureADGroup", - "Id": 1219 + "Id": 1219, + "CommandName": "Set-PnPAzureADGroup" }, { "Rank": 1, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1220 + "Id": 1220, + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Rank": 2, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1221 + "Id": 1221, + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Rank": 3, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "CommandName": "Set-PnPBrowserIdleSignout", - "Id": 1222 + "Id": 1222, + "CommandName": "Set-PnPBrowserIdleSignout" }, { "Rank": 1, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1223 + "Id": 1223, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { "Rank": 2, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Id": 1224 + "Id": 1224, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { "Rank": 1, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1225 + "Id": 1225, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Rank": 2, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1226 + "Id": 1226, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Rank": 3, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1227 + "Id": 1227, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Rank": 4, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Id": 1228 + "Id": 1228, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { "Rank": 1, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType", - "Id": 1229 + "Id": 1229, + "CommandName": "Set-PnPContentType" }, { "Rank": 2, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "CommandName": "Set-PnPContentType", - "Id": 1230 + "Id": 1230, + "CommandName": "Set-PnPContentType" }, { "Rank": 3, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "CommandName": "Set-PnPContentType", - "Id": 1231 + "Id": 1231, + "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": 1232 + "Id": 1232, + "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": 1233 + "Id": 1233, + "CommandName": "Set-PnPContentType" }, { "Rank": 1, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1234 + "Id": 1234, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Rank": 2, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1235 + "Id": 1235, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Rank": 3, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1236 + "Id": 1236, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Rank": 4, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "CommandName": "Set-PnPDefaultColumnValues", - "Id": 1237 + "Id": 1237, + "CommandName": "Set-PnPDefaultColumnValues" }, { "Rank": 1, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "CommandName": "Set-PnPDefaultContentTypeToList", - "Id": 1238 + "Id": 1238, + "CommandName": "Set-PnPDefaultContentTypeToList" }, { "Rank": 1, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1239 + "Id": 1239, + "CommandName": "Set-PnPDefaultPageLayout" }, { "Rank": 2, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1240 + "Id": 1240, + "CommandName": "Set-PnPDefaultPageLayout" }, { "Rank": 3, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "CommandName": "Set-PnPDefaultPageLayout", - "Id": 1241 + "Id": 1241, + "CommandName": "Set-PnPDefaultPageLayout" }, { "Rank": 1, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1242 + "Id": 1242, + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Rank": 2, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1243 + "Id": 1243, + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Rank": 3, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "CommandName": "Set-PnPDisableSpacesActivation", - "Id": 1244 + "Id": 1244, + "CommandName": "Set-PnPDisableSpacesActivation" }, { "Rank": 1, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "CommandName": "Set-PnPDocumentSetField", - "Id": 1245 + "Id": 1245, + "CommandName": "Set-PnPDocumentSetField" }, { "Rank": 2, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "CommandName": "Set-PnPDocumentSetField", - "Id": 1246 + "Id": 1246, + "CommandName": "Set-PnPDocumentSetField" }, { "Rank": 1, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "CommandName": "Set-PnPField", - "Id": 1247 + "Id": 1247, + "CommandName": "Set-PnPField" }, { "Rank": 2, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "CommandName": "Set-PnPField", - "Id": 1248 + "Id": 1248, + "CommandName": "Set-PnPField" }, { "Rank": 3, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "CommandName": "Set-PnPField", - "Id": 1249 + "Id": 1249, + "CommandName": "Set-PnPField" }, { "Rank": 1, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedIn", - "Id": 1250 + "Id": 1250, + "CommandName": "Set-PnPFileCheckedIn" }, { "Rank": 2, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "CommandName": "Set-PnPFileCheckedIn", - "Id": 1251 + "Id": 1251, + "CommandName": "Set-PnPFileCheckedIn" }, { "Rank": 1, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "CommandName": "Set-PnPFileCheckedOut", - "Id": 1252 + "Id": 1252, + "CommandName": "Set-PnPFileCheckedOut" }, { "Rank": 1, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission", - "Id": 1253 + "Id": 1253, + "CommandName": "Set-PnPFolderPermission" }, { "Rank": 2, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPFolderPermission", - "Id": 1254 + "Id": 1254, + "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": 1255 + "Id": 1255, + "CommandName": "Set-PnPFolderPermission" }, { "Rank": 1, "Command": "Set-PnPFooter -Enabled:$true", - "CommandName": "Set-PnPFooter", - "Id": 1256 + "Id": 1256, + "CommandName": "Set-PnPFooter" }, { "Rank": 2, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "CommandName": "Set-PnPFooter", - "Id": 1257 + "Id": 1257, + "CommandName": "Set-PnPFooter" }, { "Rank": 3, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "CommandName": "Set-PnPFooter", - "Id": 1258 + "Id": 1258, + "CommandName": "Set-PnPFooter" }, { "Rank": 4, "Command": "Set-PnPFooter -LogoUrl \"\"", - "CommandName": "Set-PnPFooter", - "Id": 1259 + "Id": 1259, + "CommandName": "Set-PnPFooter" }, { "Rank": 1, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "CommandName": "Set-PnPGraphSubscription", - "Id": 1260 + "Id": 1260, + "CommandName": "Set-PnPGraphSubscription" }, { "Rank": 1, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "CommandName": "Set-PnPGroup", - "Id": 1261 + "Id": 1261, + "CommandName": "Set-PnPGroup" }, { "Rank": 2, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "CommandName": "Set-PnPGroup", - "Id": 1262 + "Id": 1262, + "CommandName": "Set-PnPGroup" }, { "Rank": 1, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "CommandName": "Set-PnPGroupPermissions", - "Id": 1263 + "Id": 1263, + "CommandName": "Set-PnPGroupPermissions" }, { "Rank": 2, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "CommandName": "Set-PnPGroupPermissions", - "Id": 1264 + "Id": 1264, + "CommandName": "Set-PnPGroupPermissions" }, { "Rank": 3, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions", - "Id": 1265 + "Id": 1265, + "CommandName": "Set-PnPGroupPermissions" }, { "Rank": 4, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "CommandName": "Set-PnPGroupPermissions", - "Id": 1266 + "Id": 1266, + "CommandName": "Set-PnPGroupPermissions" }, { "Rank": 5, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "CommandName": "Set-PnPGroupPermissions", - "Id": 1267 + "Id": 1267, + "CommandName": "Set-PnPGroupPermissions" }, { "Rank": 1, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1268 + "Id": 1268, + "CommandName": "Set-PnPHideDefaultThemes" }, { "Rank": 2, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "CommandName": "Set-PnPHideDefaultThemes", - "Id": 1269 + "Id": 1269, + "CommandName": "Set-PnPHideDefaultThemes" }, { "Rank": 1, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "CommandName": "Set-PnPHomePage", - "Id": 1270 + "Id": 1270, + "CommandName": "Set-PnPHomePage" }, { "Rank": 2, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "CommandName": "Set-PnPHomePage", - "Id": 1271 + "Id": 1271, + "CommandName": "Set-PnPHomePage" }, { "Rank": 1, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "CommandName": "Set-PnPHomeSite", - "Id": 1272 + "Id": 1272, + "CommandName": "Set-PnPHomeSite" }, { "Rank": 2, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "CommandName": "Set-PnPHomeSite", - "Id": 1273 + "Id": 1273, + "CommandName": "Set-PnPHomeSite" }, { "Rank": 1, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "CommandName": "Set-PnPHubSite", - "Id": 1274 + "Id": 1274, + "CommandName": "Set-PnPHubSite" }, { "Rank": 2, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "CommandName": "Set-PnPHubSite", - "Id": 1275 + "Id": 1275, + "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": 1276 + "Id": 1276, + "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": 1277 + "Id": 1277, + "CommandName": "Set-PnPHubSite" }, { "Rank": 5, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "CommandName": "Set-PnPHubSite", - "Id": 1278 + "Id": 1278, + "CommandName": "Set-PnPHubSite" }, { "Rank": 6, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "CommandName": "Set-PnPHubSite", - "Id": 1279 + "Id": 1279, + "CommandName": "Set-PnPHubSite" }, { "Rank": 1, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "CommandName": "Set-PnPImageListItemColumn", - "Id": 1280 + "Id": 1280, + "CommandName": "Set-PnPImageListItemColumn" }, { "Rank": 2, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "CommandName": "Set-PnPImageListItemColumn", - "Id": 1281 + "Id": 1281, + "CommandName": "Set-PnPImageListItemColumn" }, { "Rank": 1, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "CommandName": "Set-PnPIndexedProperties", - "Id": 1282 + "Id": 1282, + "CommandName": "Set-PnPIndexedProperties" }, { "Rank": 1, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1283 + "Id": 1283, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { "Rank": 2, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Id": 1284 + "Id": 1284, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { "Rank": 1, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "CommandName": "Set-PnPKnowledgeHubSite", - "Id": 1285 + "Id": 1285, + "CommandName": "Set-PnPKnowledgeHubSite" }, { "Rank": 1, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "CommandName": "Set-PnPLabel", - "Id": 1286 + "Id": 1286, + "CommandName": "Set-PnPLabel" }, { "Rank": 2, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "CommandName": "Set-PnPLabel", - "Id": 1287 + "Id": 1287, + "CommandName": "Set-PnPLabel" }, { "Rank": 1, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "CommandName": "Set-PnPList", - "Id": 1288 + "Id": 1288, + "CommandName": "Set-PnPList" }, { "Rank": 2, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "CommandName": "Set-PnPList", - "Id": 1289 + "Id": 1289, + "CommandName": "Set-PnPList" }, { "Rank": 3, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "CommandName": "Set-PnPList", - "Id": 1290 + "Id": 1290, + "CommandName": "Set-PnPList" }, { "Rank": 4, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "CommandName": "Set-PnPList", - "Id": 1291 + "Id": 1291, + "CommandName": "Set-PnPList" }, { "Rank": 5, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "CommandName": "Set-PnPList", - "Id": 1292 + "Id": 1292, + "CommandName": "Set-PnPList" }, { "Rank": 6, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "CommandName": "Set-PnPList", - "Id": 1293 + "Id": 1293, + "CommandName": "Set-PnPList" }, { "Rank": 7, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "CommandName": "Set-PnPList", - "Id": 1294 + "Id": 1294, + "CommandName": "Set-PnPList" }, { "Rank": 8, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "CommandName": "Set-PnPList", - "Id": 1295 + "Id": 1295, + "CommandName": "Set-PnPList" }, { "Rank": 9, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "CommandName": "Set-PnPList", - "Id": 1296 + "Id": 1296, + "CommandName": "Set-PnPList" }, { "Rank": 10, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "CommandName": "Set-PnPList", - "Id": 1297 + "Id": 1297, + "CommandName": "Set-PnPList" }, { "Rank": 11, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "CommandName": "Set-PnPList", - "Id": 1298 + "Id": 1298, + "CommandName": "Set-PnPList" }, { "Rank": 1, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1299 + "Id": 1299, + "CommandName": "Set-PnPListInformationRightsManagement" }, { "Rank": 2, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "CommandName": "Set-PnPListInformationRightsManagement", - "Id": 1300 + "Id": 1300, + "CommandName": "Set-PnPListInformationRightsManagement" }, { "Rank": 1, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", - "Id": 1301 + "Id": 1301, + "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": 1302 + "Id": 1302, + "CommandName": "Set-PnPListItem" }, { "Rank": 3, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "CommandName": "Set-PnPListItem", - "Id": 1303 + "Id": 1303, + "CommandName": "Set-PnPListItem" }, { "Rank": 4, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "CommandName": "Set-PnPListItem", - "Id": 1304 + "Id": 1304, + "CommandName": "Set-PnPListItem" }, { "Rank": 5, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "CommandName": "Set-PnPListItem", - "Id": 1305 + "Id": 1305, + "CommandName": "Set-PnPListItem" }, { "Rank": 1, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "CommandName": "Set-PnPListItemAsRecord", - "Id": 1306 + "Id": 1306, + "CommandName": "Set-PnPListItemAsRecord" }, { "Rank": 2, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "CommandName": "Set-PnPListItemAsRecord", - "Id": 1307 + "Id": 1307, + "CommandName": "Set-PnPListItemAsRecord" }, { "Rank": 1, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission", - "Id": 1308 + "Id": 1308, + "CommandName": "Set-PnPListItemPermission" }, { "Rank": 2, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListItemPermission", - "Id": 1309 + "Id": 1309, + "CommandName": "Set-PnPListItemPermission" }, { "Rank": 3, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "CommandName": "Set-PnPListItemPermission", - "Id": 1310 + "Id": 1310, + "CommandName": "Set-PnPListItemPermission" }, { "Rank": 4, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "CommandName": "Set-PnPListItemPermission", - "Id": 1311 + "Id": 1311, + "CommandName": "Set-PnPListItemPermission" }, { "Rank": 5, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "CommandName": "Set-PnPListItemPermission", - "Id": 1312 + "Id": 1312, + "CommandName": "Set-PnPListItemPermission" }, { "Rank": 1, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "CommandName": "Set-PnPListPermission", - "Id": 1313 + "Id": 1313, + "CommandName": "Set-PnPListPermission" }, { "Rank": 2, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "CommandName": "Set-PnPListPermission", - "Id": 1314 + "Id": 1314, + "CommandName": "Set-PnPListPermission" }, { "Rank": 1, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1315 + "Id": 1315, + "CommandName": "Set-PnPListRecordDeclaration" }, { "Rank": 2, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "CommandName": "Set-PnPListRecordDeclaration", - "Id": 1316 + "Id": 1316, + "CommandName": "Set-PnPListRecordDeclaration" }, { "Rank": 1, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", - "Id": 1317 + "Id": 1317, + "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": 1318 + "Id": 1318, + "CommandName": "Set-PnPMasterPage" }, { "Rank": 3, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", - "Id": 1319 + "Id": 1319, + "CommandName": "Set-PnPMasterPage" }, { "Rank": 4, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "CommandName": "Set-PnPMasterPage", - "Id": 1320 + "Id": 1320, + "CommandName": "Set-PnPMasterPage" }, { "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1321 + "Id": 1321, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1322 + "Id": 1322, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1323 + "Id": 1323, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1324 + "Id": 1324, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1325 + "Id": 1325, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1326 + "Id": 1326, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1327 + "Id": 1327, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1328 + "Id": 1328, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1329 + "Id": 1329, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1330 + "Id": 1330, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1331 + "Id": 1331, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1332 + "Id": 1332, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1333 + "Id": 1333, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1334 + "Id": 1334, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1335 + "Id": 1335, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1336 + "Id": 1336, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1337 + "Id": 1337, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1338 + "Id": 1338, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Rank": 1, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1339 + "Id": 1339, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Rank": 2, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1340 + "Id": 1340, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Rank": 3, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1341 + "Id": 1341, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Rank": 4, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1342 + "Id": 1342, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Rank": 5, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1343 + "Id": 1343, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Rank": 6, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "CommandName": "Set-PnPMicrosoft365Group", - "Id": 1344 + "Id": 1344, + "CommandName": "Set-PnPMicrosoft365Group" }, { "Rank": 1, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1345 + "Id": 1345, + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { "Rank": 2, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Id": 1346 + "Id": 1346, + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { "Rank": 1, "Command": "Set-PnPMinimalDownloadStrategy -Off", - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1347 + "Id": 1347, + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { "Rank": 2, "Command": "Set-PnPMinimalDownloadStrategy -On", - "CommandName": "Set-PnPMinimalDownloadStrategy", - "Id": 1348 + "Id": 1348, + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { "Rank": 1, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "CommandName": "Set-PnPPage", - "Id": 1349 + "Id": 1349, + "CommandName": "Set-PnPPage" }, { "Rank": 2, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "CommandName": "Set-PnPPage", - "Id": 1350 + "Id": 1350, + "CommandName": "Set-PnPPage" }, { "Rank": 3, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "CommandName": "Set-PnPPage", - "Id": 1351 + "Id": 1351, + "CommandName": "Set-PnPPage" }, { "Rank": 4, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "CommandName": "Set-PnPPage", - "Id": 1352 + "Id": 1352, + "CommandName": "Set-PnPPage" }, { "Rank": 5, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "CommandName": "Set-PnPPage", - "Id": 1353 + "Id": 1353, + "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": 1354 + "Id": 1354, + "CommandName": "Set-PnPPage" }, { "Rank": 7, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "CommandName": "Set-PnPPage", - "Id": 1355 + "Id": 1355, + "CommandName": "Set-PnPPage" }, { "Rank": 8, "Command": "Set-PnPPage -Name \"NewPage\" -Translate", - "CommandName": "Set-PnPPage", - "Id": 1356 + "Id": 1356, + "CommandName": "Set-PnPPage" }, { "Rank": 9, "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "CommandName": "Set-PnPPage", - "Id": 1357 + "Id": 1357, + "CommandName": "Set-PnPPage" }, { "Rank": 10, "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "CommandName": "Set-PnPPage", - "Id": 1358 + "Id": 1358, + "CommandName": "Set-PnPPage" }, { "Rank": 1, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "CommandName": "Set-PnPPageTextPart", - "Id": 1359 + "Id": 1359, + "CommandName": "Set-PnPPageTextPart" }, { "Rank": 1, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "CommandName": "Set-PnPPageWebPart", - "Id": 1360 + "Id": 1360, + "CommandName": "Set-PnPPageWebPart" }, { "Rank": 2, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "CommandName": "Set-PnPPageWebPart", - "Id": 1361 + "Id": 1361, + "CommandName": "Set-PnPPageWebPart" }, { "Rank": 1, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "CommandName": "Set-PnPPlannerBucket", - "Id": 1362 + "Id": 1362, + "CommandName": "Set-PnPPlannerBucket" }, { "Rank": 1, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1363 + "Id": 1363, + "CommandName": "Set-PnPPlannerConfiguration" }, { "Rank": 2, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "CommandName": "Set-PnPPlannerConfiguration", - "Id": 1364 + "Id": 1364, + "CommandName": "Set-PnPPlannerConfiguration" }, { "Rank": 1, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "CommandName": "Set-PnPPlannerPlan", - "Id": 1365 + "Id": 1365, + "CommandName": "Set-PnPPlannerPlan" }, { "Rank": 1, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "CommandName": "Set-PnPPlannerTask", - "Id": 1366 + "Id": 1366, + "CommandName": "Set-PnPPlannerTask" }, { "Rank": 2, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "CommandName": "Set-PnPPlannerTask", - "Id": 1367 + "Id": 1367, + "CommandName": "Set-PnPPlannerTask" }, { "Rank": 3, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "CommandName": "Set-PnPPlannerTask", - "Id": 1368 + "Id": 1368, + "CommandName": "Set-PnPPlannerTask" }, { "Rank": 1, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPPlannerUserPolicy", - "Id": 1369 + "Id": 1369, + "CommandName": "Set-PnPPlannerUserPolicy" }, { "Rank": 1, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1370 + "Id": 1370, + "CommandName": "Set-PnPPropertyBagValue" }, { "Rank": 2, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1371 + "Id": 1371, + "CommandName": "Set-PnPPropertyBagValue" }, { "Rank": 3, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "CommandName": "Set-PnPPropertyBagValue", - "Id": 1372 + "Id": 1372, + "CommandName": "Set-PnPPropertyBagValue" }, { "Rank": 1, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1373 + "Id": 1373, + "CommandName": "Set-PnPRequestAccessEmails" }, { "Rank": 2, "Command": "Set-PnPRequestAccessEmails -Disabled", - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1374 + "Id": 1374, + "CommandName": "Set-PnPRequestAccessEmails" }, { "Rank": 3, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "CommandName": "Set-PnPRequestAccessEmails", - "Id": 1375 + "Id": 1375, + "CommandName": "Set-PnPRequestAccessEmails" }, { "Rank": 1, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "CommandName": "Set-PnPRoleDefinition", - "Id": 1376 + "Id": 1376, + "CommandName": "Set-PnPRoleDefinition" }, { "Rank": 2, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "CommandName": "Set-PnPRoleDefinition", - "Id": 1377 + "Id": 1377, + "CommandName": "Set-PnPRoleDefinition" }, { "Rank": 3, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "CommandName": "Set-PnPRoleDefinition", - "Id": 1378 + "Id": 1378, + "CommandName": "Set-PnPRoleDefinition" }, { "Rank": 4, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "CommandName": "Set-PnPRoleDefinition", - "Id": 1379 + "Id": 1379, + "CommandName": "Set-PnPRoleDefinition" }, { "Rank": 1, "Command": "Set-PnPSearchConfiguration -Configuration $config", - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1380 + "Id": 1380, + "CommandName": "Set-PnPSearchConfiguration" }, { "Rank": 2, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1381 + "Id": 1381, + "CommandName": "Set-PnPSearchConfiguration" }, { "Rank": 3, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1382 + "Id": 1382, + "CommandName": "Set-PnPSearchConfiguration" }, { "Rank": 4, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "CommandName": "Set-PnPSearchConfiguration", - "Id": 1383 + "Id": 1383, + "CommandName": "Set-PnPSearchConfiguration" }, { "Rank": 1, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "CommandName": "Set-PnPSearchSettings", - "Id": 1384 + "Id": 1384, + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 2, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "CommandName": "Set-PnPSearchSettings", - "Id": 1385 + "Id": 1385, + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 3, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "CommandName": "Set-PnPSearchSettings", - "Id": 1386 + "Id": 1386, + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 4, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "CommandName": "Set-PnPSearchSettings", - "Id": 1387 + "Id": 1387, + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 5, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "CommandName": "Set-PnPSearchSettings", - "Id": 1388 + "Id": 1388, + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 6, "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "CommandName": "Set-PnPSearchSettings", - "Id": 1389 + "Id": 1389, + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 7, "Command": "Set-PnPSearchSettings -SearchScope Hub", - "CommandName": "Set-PnPSearchSettings", - "Id": 1390 + "Id": 1390, + "CommandName": "Set-PnPSearchSettings" }, { "Rank": 1, "Command": "Set-PnPSite -Classification \"HBI\"", - "CommandName": "Set-PnPSite", - "Id": 1391 + "Id": 1391, + "CommandName": "Set-PnPSite" }, { "Rank": 2, "Command": "Set-PnPSite -Classification $null", - "CommandName": "Set-PnPSite", - "Id": 1392 + "Id": 1392, + "CommandName": "Set-PnPSite" }, { "Rank": 3, "Command": "Set-PnPSite -DisableFlows", - "CommandName": "Set-PnPSite", - "Id": 1393 + "Id": 1393, + "CommandName": "Set-PnPSite" }, { "Rank": 4, "Command": "Set-PnPSite -DisableFlows:$false", - "CommandName": "Set-PnPSite", - "Id": 1394 + "Id": 1394, + "CommandName": "Set-PnPSite" }, { "Rank": 5, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "CommandName": "Set-PnPSite", - "Id": 1395 + "Id": 1395, + "CommandName": "Set-PnPSite" }, { "Rank": 6, "Command": "Set-PnPSite -NoScriptSite $false", - "CommandName": "Set-PnPSite", - "Id": 1396 + "Id": 1396, + "CommandName": "Set-PnPSite" }, { "Rank": 1, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "CommandName": "Set-PnPSiteClassification", - "Id": 1397 + "Id": 1397, + "CommandName": "Set-PnPSiteClassification" }, { "Rank": 1, "Command": "Set-PnPSiteClosure -State Open", - "CommandName": "Set-PnPSiteClosure", - "Id": 1398 + "Id": 1398, + "CommandName": "Set-PnPSiteClosure" }, { "Rank": 2, "Command": "Set-PnPSiteClosure -State Closed", - "CommandName": "Set-PnPSiteClosure", - "Id": 1399 + "Id": 1399, + "CommandName": "Set-PnPSiteClosure" }, { "Rank": 1, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "CommandName": "Set-PnPSiteDesign", - "Id": 1400 + "Id": 1400, + "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": 1401 + "Id": 1401, + "CommandName": "Set-PnPSiteDesign" }, { "Rank": 1, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "CommandName": "Set-PnPSiteGroup", - "Id": 1402 + "Id": 1402, + "CommandName": "Set-PnPSiteGroup" }, { "Rank": 2, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "CommandName": "Set-PnPSiteGroup", - "Id": 1403 + "Id": 1403, + "CommandName": "Set-PnPSiteGroup" }, { "Rank": 1, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "CommandName": "Set-PnPSitePolicy", - "Id": 1404 + "Id": 1404, + "CommandName": "Set-PnPSitePolicy" }, { "Rank": 1, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScript", - "Id": 1405 + "Id": 1405, + "CommandName": "Set-PnPSiteScript" }, { "Rank": 1, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "CommandName": "Set-PnPSiteScriptPackage", - "Id": 1406 + "Id": 1406, + "CommandName": "Set-PnPSiteScriptPackage" }, { "Rank": 1, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1407 + "Id": 1407, + "CommandName": "Set-PnPSiteSensitivityLabel" }, { "Rank": 2, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "CommandName": "Set-PnPSiteSensitivityLabel", - "Id": 1408 + "Id": 1408, + "CommandName": "Set-PnPSiteSensitivityLabel" }, { "Rank": 1, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1409 + "Id": 1409, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Rank": 2, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1410 + "Id": 1410, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Rank": 3, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1411 + "Id": 1411, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Rank": 4, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1412 + "Id": 1412, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Rank": 5, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1413 + "Id": 1413, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Rank": 6, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "CommandName": "Set-PnPSiteTemplateMetadata", - "Id": 1414 + "Id": 1414, + "CommandName": "Set-PnPSiteTemplateMetadata" }, { "Rank": 1, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity", - "Id": 1415 + "Id": 1415, + "CommandName": "Set-PnPStorageEntity" }, { "Rank": 2, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "CommandName": "Set-PnPStorageEntity", - "Id": 1416 + "Id": 1416, + "CommandName": "Set-PnPStorageEntity" }, { "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1417 + "Id": 1417, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Id": 1418 + "Id": 1418, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1419 + "Id": 1419, + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Id": 1420 + "Id": 1420, + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { "Rank": 1, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1421 + "Id": 1421, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { "Rank": 2, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Id": 1422 + "Id": 1422, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { "Rank": 1, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1423 + "Id": 1423, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Rank": 2, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1424 + "Id": 1424, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Rank": 3, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "CommandName": "Set-PnPTaxonomyFieldValue", - "Id": 1425 + "Id": 1425, + "CommandName": "Set-PnPTaxonomyFieldValue" }, { "Rank": 1, "Command": "Set-PnPTeamifyPromptHidden", - "CommandName": "Set-PnPTeamifyPromptHidden", - "Id": 1426 + "Id": 1426, + "CommandName": "Set-PnPTeamifyPromptHidden" }, { "Rank": 1, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "CommandName": "Set-PnPTeamsChannel", - "Id": 1427 + "Id": 1427, + "CommandName": "Set-PnPTeamsChannel" }, { "Rank": 2, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "CommandName": "Set-PnPTeamsChannel", - "Id": 1428 + "Id": 1428, + "CommandName": "Set-PnPTeamsChannel" }, { "Rank": 1, "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "CommandName": "Set-PnpTeamsChannelUser", - "Id": 1429 + "Id": 1429, + "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": 1430 + "Id": 1430, + "CommandName": "Set-PnpTeamsChannelUser" }, { "Rank": 1, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "CommandName": "Set-PnPTeamsTab", - "Id": 1431 + "Id": 1431, + "CommandName": "Set-PnPTeamsTab" }, { "Rank": 1, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "CommandName": "Set-PnPTeamsTag", - "Id": 1432 + "Id": 1432, + "CommandName": "Set-PnPTeamsTag" }, { "Rank": 1, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "CommandName": "Set-PnPTeamsTeam", - "Id": 1433 + "Id": 1433, + "CommandName": "Set-PnPTeamsTeam" }, { "Rank": 2, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "CommandName": "Set-PnPTeamsTeam", - "Id": 1434 + "Id": 1434, + "CommandName": "Set-PnPTeamsTeam" }, { "Rank": 3, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "CommandName": "Set-PnPTeamsTeam", - "Id": 1435 + "Id": 1435, + "CommandName": "Set-PnPTeamsTeam" }, { "Rank": 4, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "CommandName": "Set-PnPTeamsTeam", - "Id": 1436 + "Id": 1436, + "CommandName": "Set-PnPTeamsTeam" }, { "Rank": 1, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1437 + "Id": 1437, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Rank": 2, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1438 + "Id": 1438, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Rank": 3, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "CommandName": "Set-PnPTeamsTeamArchivedState", - "Id": 1439 + "Id": 1439, + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { "Rank": 1, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "CommandName": "Set-PnPTeamsTeamPicture", - "Id": 1440 + "Id": 1440, + "CommandName": "Set-PnPTeamsTeamPicture" }, { "Rank": 1, "Command": "Set-PnPTemporarilyDisableAppBar $true", - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1441 + "Id": 1441, + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { "Rank": 2, "Command": "Set-PnPTemporarilyDisableAppBar $false", - "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Id": 1442 + "Id": 1442, + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { "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": 1443 + "Id": 1443, + "CommandName": "Set-PnPTenant" }, { "Rank": 2, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "CommandName": "Set-PnPTenant", - "Id": 1444 + "Id": 1444, + "CommandName": "Set-PnPTenant" }, { "Rank": 3, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "CommandName": "Set-PnPTenant", - "Id": 1445 + "Id": 1445, + "CommandName": "Set-PnPTenant" }, { "Rank": 4, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "CommandName": "Set-PnPTenant", - "Id": 1446 + "Id": 1446, + "CommandName": "Set-PnPTenant" }, { "Rank": 1, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "CommandName": "Set-PnPTenantAppCatalogUrl", - "Id": 1447 + "Id": 1447, + "CommandName": "Set-PnPTenantAppCatalogUrl" }, { "Rank": 1, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1448 + "Id": 1448, + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Rank": 2, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1449 + "Id": 1449, + "CommandName": "Set-PnPTenantCdnEnabled" }, { "Rank": 3, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "CommandName": "Set-PnPTenantCdnEnabled", - "Id": 1450 + "Id": 1450, + "CommandName": "Set-PnPTenantCdnEnabled" }, { "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": 1451 + "Id": 1451, + "CommandName": "Set-PnPTenantCdnPolicy" }, { "Rank": 2, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "CommandName": "Set-PnPTenantCdnPolicy", - "Id": 1452 + "Id": 1452, + "CommandName": "Set-PnPTenantCdnPolicy" }, { "Rank": 1, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "CommandName": "Set-PnPTenantSite", - "Id": 1453 + "Id": 1453, + "CommandName": "Set-PnPTenantSite" }, { "Rank": 2, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "CommandName": "Set-PnPTenantSite", - "Id": 1454 + "Id": 1454, + "CommandName": "Set-PnPTenantSite" }, { "Rank": 3, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "CommandName": "Set-PnPTenantSite", - "Id": 1455 + "Id": 1455, + "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": 1456 + "Id": 1456, + "CommandName": "Set-PnPTenantSite" }, { "Rank": 5, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "CommandName": "Set-PnPTenantSite", - "Id": 1457 + "Id": 1457, + "CommandName": "Set-PnPTenantSite" }, { "Rank": 1, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1458 + "Id": 1458, + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { "Rank": 2, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "CommandName": "Set-PnPTenantSyncClientRestriction", - "Id": 1459 + "Id": 1459, + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { "Rank": 1, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "CommandName": "Set-PnPTerm", - "Id": 1460 + "Id": 1460, + "CommandName": "Set-PnPTerm" }, { "Rank": 2, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm", - "Id": 1461 + "Id": 1461, + "CommandName": "Set-PnPTerm" }, { "Rank": 3, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "CommandName": "Set-PnPTerm", - "Id": 1462 + "Id": 1462, + "CommandName": "Set-PnPTerm" }, { "Rank": 1, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "CommandName": "Set-PnPTermGroup", - "Id": 1463 + "Id": 1463, + "CommandName": "Set-PnPTermGroup" }, { "Rank": 1, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "CommandName": "Set-PnPTermSet", - "Id": 1464 + "Id": 1464, + "CommandName": "Set-PnPTermSet" }, { "Rank": 2, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "CommandName": "Set-PnPTermSet", - "Id": 1465 + "Id": 1465, + "CommandName": "Set-PnPTermSet" }, { "Rank": 3, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "CommandName": "Set-PnPTermSet", - "Id": 1466 + "Id": 1466, + "CommandName": "Set-PnPTermSet" }, { "Rank": 1, "Command": "Set-PnPTheme", - "CommandName": "Set-PnPTheme", - "Id": 1467 + "Id": 1467, + "CommandName": "Set-PnPTheme" }, { "Rank": 2, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "CommandName": "Set-PnPTheme", - "Id": 1468 + "Id": 1468, + "CommandName": "Set-PnPTheme" }, { "Rank": 3, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "CommandName": "Set-PnPTheme", - "Id": 1469 + "Id": 1469, + "CommandName": "Set-PnPTheme" }, { "Rank": 4, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "CommandName": "Set-PnPTheme", - "Id": 1470 + "Id": 1470, + "CommandName": "Set-PnPTheme" }, { "Rank": 1, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "CommandName": "Set-PnPTraceLog", - "Id": 1471 + "Id": 1471, + "CommandName": "Set-PnPTraceLog" }, { "Rank": 2, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "CommandName": "Set-PnPTraceLog", - "Id": 1472 + "Id": 1472, + "CommandName": "Set-PnPTraceLog" }, { "Rank": 3, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "CommandName": "Set-PnPTraceLog", - "Id": 1473 + "Id": 1473, + "CommandName": "Set-PnPTraceLog" }, { "Rank": 4, "Command": "Set-PnPTraceLog -Off", - "CommandName": "Set-PnPTraceLog", - "Id": 1474 + "Id": 1474, + "CommandName": "Set-PnPTraceLog" }, { "Rank": 1, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "CommandName": "Set-PnPUserOneDriveQuota", - "Id": 1475 + "Id": 1475, + "CommandName": "Set-PnPUserOneDriveQuota" }, { "Rank": 1, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "CommandName": "Set-PnPUserProfileProperty", - "Id": 1476 + "Id": 1476, + "CommandName": "Set-PnPUserProfileProperty" }, { "Rank": 2, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "CommandName": "Set-PnPUserProfileProperty", - "Id": 1477 + "Id": 1477, + "CommandName": "Set-PnPUserProfileProperty" }, { "Rank": 1, "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "CommandName": "Set-PnPView", - "Id": 1478 + "Id": 1478, + "CommandName": "Set-PnPView" }, { "Rank": 2, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "CommandName": "Set-PnPView", - "Id": 1479 + "Id": 1479, + "CommandName": "Set-PnPView" }, { "Rank": 3, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "CommandName": "Set-PnPView", - "Id": 1480 + "Id": 1480, + "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": 1481 + "Id": 1481, + "CommandName": "Set-PnPView" }, { "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": 1482 + "Id": 1482, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Rank": 2, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1483 + "Id": 1483, + "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": 1484 + "Id": 1484, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Rank": 4, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Id": 1485 + "Id": 1485, + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { "Rank": 1, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "CommandName": "Set-PnPWeb", - "Id": 1486 + "Id": 1486, + "CommandName": "Set-PnPWeb" }, { "Rank": 2, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "CommandName": "Set-PnPWeb", - "Id": 1487 + "Id": 1487, + "CommandName": "Set-PnPWeb" }, { "Rank": 3, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "CommandName": "Set-PnPWeb", - "Id": 1488 + "Id": 1488, + "CommandName": "Set-PnPWeb" }, { "Rank": 4, "Command": "Set-PnPWeb -NoCrawl:$true", - "CommandName": "Set-PnPWeb", - "Id": 1489 + "Id": 1489, + "CommandName": "Set-PnPWeb" }, { "Rank": 1, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "CommandName": "Set-PnPWebHeader", - "Id": 1490 + "Id": 1490, + "CommandName": "Set-PnPWebHeader" }, { "Rank": 2, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "CommandName": "Set-PnPWebHeader", - "Id": 1491 + "Id": 1491, + "CommandName": "Set-PnPWebHeader" }, { "Rank": 3, "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "CommandName": "Set-PnPWebHeader", - "Id": 1492 + "Id": 1492, + "CommandName": "Set-PnPWebHeader" }, { "Rank": 1, "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "CommandName": "Set-PnPWebhookSubscription", - "Id": 1493 + "Id": 1493, + "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": 1494 + "Id": 1494, + "CommandName": "Set-PnPWebhookSubscription" }, { "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": 1495 + "Id": 1495, + "CommandName": "Set-PnPWebPartProperty" }, { "Rank": 1, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", - "Id": 1496 + "Id": 1496, + "CommandName": "Set-PnPWebPermission" }, { "Rank": 2, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", - "Id": 1497 + "Id": 1497, + "CommandName": "Set-PnPWebPermission" }, { "Rank": 3, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "CommandName": "Set-PnPWebPermission", - "Id": 1498 + "Id": 1498, + "CommandName": "Set-PnPWebPermission" }, { "Rank": 4, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "CommandName": "Set-PnPWebPermission", - "Id": 1499 + "Id": 1499, + "CommandName": "Set-PnPWebPermission" }, { "Rank": 1, "Command": "Set-PnPWebTheme -Theme MyTheme", - "CommandName": "Set-PnPWebTheme", - "Id": 1500 + "Id": 1500, + "CommandName": "Set-PnPWebTheme" }, { "Rank": 2, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "CommandName": "Set-PnPWebTheme", - "Id": 1501 + "Id": 1501, + "CommandName": "Set-PnPWebTheme" }, { "Rank": 1, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "CommandName": "Set-PnPWikiPageContent", - "Id": 1502 + "Id": 1502, + "CommandName": "Set-PnPWikiPageContent" }, { "Rank": 1, "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "CommandName": "Submit-PnPSearchQuery", - "Id": 1503 + "Id": 1503, + "CommandName": "Submit-PnPSearchQuery" }, { "Rank": 2, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "CommandName": "Submit-PnPSearchQuery", - "Id": 1504 + "Id": 1504, + "CommandName": "Submit-PnPSearchQuery" }, { "Rank": 3, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "CommandName": "Submit-PnPSearchQuery", - "Id": 1505 + "Id": 1505, + "CommandName": "Submit-PnPSearchQuery" }, { "Rank": 4, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "CommandName": "Submit-PnPSearchQuery", - "Id": 1506 + "Id": 1506, + "CommandName": "Submit-PnPSearchQuery" }, { "Rank": 5, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "CommandName": "Submit-PnPSearchQuery", - "Id": 1507 + "Id": 1507, + "CommandName": "Submit-PnPSearchQuery" }, { "Rank": 1, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1508 + "Id": 1508, + "CommandName": "Submit-PnPTeamsChannelMessage" }, { "Rank": 2, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "CommandName": "Submit-PnPTeamsChannelMessage", - "Id": 1509 + "Id": 1509, + "CommandName": "Submit-PnPTeamsChannelMessage" }, { "Rank": 1, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Sync-PnPAppToTeams", - "Id": 1510 + "Id": 1510, + "CommandName": "Sync-PnPAppToTeams" }, { "Rank": 1, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1511 + "Id": 1511, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Rank": 2, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1512 + "Id": 1512, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Rank": 3, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Id": 1513 + "Id": 1513, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { "Rank": 1, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "CommandName": "Test-PnPListItemIsRecord", - "Id": 1514 + "Id": 1514, + "CommandName": "Test-PnPListItemIsRecord" }, { "Rank": 1, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Id": 1515 + "Id": 1515, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { "Rank": 1, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "CommandName": "Test-PnPSite", - "Id": 1516 + "Id": 1516, + "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": 1517 + "Id": 1517, + "CommandName": "Test-PnPSite" }, { "Rank": 1, "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "CommandName": "Test-PnPTenantTemplate", - "Id": 1518 + "Id": 1518, + "CommandName": "Test-PnPTenantTemplate" }, { "Rank": 1, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "CommandName": "Undo-PnPFileCheckedOut", - "Id": 1519 + "Id": 1519, + "CommandName": "Undo-PnPFileCheckedOut" }, { "Rank": 1, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Uninstall-PnPApp", - "Id": 1520 + "Id": 1520, + "CommandName": "Uninstall-PnPApp" }, { "Rank": 2, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Uninstall-PnPApp", - "Id": 1521 + "Id": 1521, + "CommandName": "Uninstall-PnPApp" }, { "Rank": 1, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Unpublish-PnPApp", - "Id": 1522 + "Id": 1522, + "CommandName": "Unpublish-PnPApp" }, { "Rank": 2, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Unpublish-PnPApp", - "Id": 1523 + "Id": 1523, + "CommandName": "Unpublish-PnPApp" }, { "Rank": 1, "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "CommandName": "Unpublish-PnPContentType", - "Id": 1524 + "Id": 1524, + "CommandName": "Unpublish-PnPContentType" }, { "Rank": 1, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "CommandName": "Unpublish-PnPSyntexModel", - "Id": 1525 + "Id": 1525, + "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": 1526 + "Id": 1526, + "CommandName": "Unpublish-PnPSyntexModel" }, { "Rank": 1, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "CommandName": "Unregister-PnPHubSite", - "Id": 1527 + "Id": 1527, + "CommandName": "Unregister-PnPHubSite" }, { "Rank": 1, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "CommandName": "Update-PnPApp", - "Id": 1528 + "Id": 1528, + "CommandName": "Update-PnPApp" }, { "Rank": 2, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "CommandName": "Update-PnPApp", - "Id": 1529 + "Id": 1529, + "CommandName": "Update-PnPApp" }, { "Rank": 1, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1530 + "Id": 1530, + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Rank": 2, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1531 + "Id": 1531, + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Rank": 3, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "CommandName": "Update-PnPAvailableSiteClassification", - "Id": 1532 + "Id": 1532, + "CommandName": "Update-PnPAvailableSiteClassification" }, { "Rank": 1, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1533 + "Id": 1533, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Rank": 2, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "CommandName": "Update-PnPSiteDesignFromWeb", - "Id": 1534 + "Id": 1534, + "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": 1535 + "Id": 1535, + "CommandName": "Update-PnPSiteDesignFromWeb" }, { "Rank": 1, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "CommandName": "Update-PnPTeamsApp", - "Id": 1536 + "Id": 1536, + "CommandName": "Update-PnPTeamsApp" }, { "Rank": 1, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "CommandName": "Update-PnPTeamsUser", - "Id": 1537 + "Id": 1537, + "CommandName": "Update-PnPTeamsUser" }, { "Rank": 2, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "CommandName": "Update-PnPTeamsUser", - "Id": 1538 + "Id": 1538, + "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": 1539 + "Id": 1539, + "CommandName": "Update-PnPTeamsUser" }, { "Rank": 1, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "CommandName": "Update-PnPUserType", - "Id": 1540 + "Id": 1540, + "CommandName": "Update-PnPUserType" } ] diff --git a/version.txt b/version.txt index a8e6cefec..ab554c550 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.17 \ No newline at end of file +2.2.18 \ No newline at end of file From fa98fde6357b3c3fccf6474c1d7bb0b9ecd0dc69 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Tue, 18 Jul 2023 11:12:56 +0300 Subject: [PATCH 07/21] Fix #3207 - issue with colliding assemblies --- .../Base/DependencyAssemblyLoadContext.cs | 114 ++++++------- .../Base/PnPPowerShellModuleInitializer.cs | 157 +++++++++++++++++- 2 files changed, 205 insertions(+), 66 deletions(-) diff --git a/src/Commands/Base/DependencyAssemblyLoadContext.cs b/src/Commands/Base/DependencyAssemblyLoadContext.cs index 1442cd2a6..a2ea84851 100644 --- a/src/Commands/Base/DependencyAssemblyLoadContext.cs +++ b/src/Commands/Base/DependencyAssemblyLoadContext.cs @@ -1,57 +1,57 @@ -using System; -using System.Collections.Concurrent; -using System.Collections.Generic; -using System.IO; -using System.Management.Automation; -using System.Reflection; -using System.Runtime.Loader; -using System.Text; - -namespace PnP.PowerShell.Commands -{ - public class DependencyAssemblyLoadContext : AssemblyLoadContext - { - private static readonly string s_psHome = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location); - - private static readonly ConcurrentDictionary s_dependencyLoadContexts = new ConcurrentDictionary(); - - internal static DependencyAssemblyLoadContext GetForDirectory(string directoryPath) - { - return s_dependencyLoadContexts.GetOrAdd(directoryPath, (path) => new DependencyAssemblyLoadContext(path)); - } - - private readonly string _dependencyDirPath; - - public DependencyAssemblyLoadContext(string dependencyDirPath) - : base(nameof(DependencyAssemblyLoadContext)) - { - _dependencyDirPath = dependencyDirPath; - } - - protected override Assembly Load(AssemblyName assemblyName) - { - string assemblyFileName = $"{assemblyName.Name}.dll"; - - // Make sure we allow other common PowerShell dependencies to be loaded by PowerShell - // But specifically exclude Microsoft.ApplicationInsightssince we want to use a different version here - if (!assemblyName.Name.Equals("Microsoft.ApplicationInsights", StringComparison.OrdinalIgnoreCase)) - { - string psHomeAsmPath = Path.Join(s_psHome, assemblyFileName); - if (File.Exists(psHomeAsmPath)) - { - // With this API, returning null means nothing is loaded - return null; - } - } - - // Now try to load the assembly from the dependency directory - string dependencyAsmPath = Path.Join(_dependencyDirPath, assemblyFileName); - if (File.Exists(dependencyAsmPath)) - { - return LoadFromAssemblyPath(dependencyAsmPath); - } - - return null; - } - } -} +//using System; +//using System.Collections.Concurrent; +//using System.Collections.Generic; +//using System.IO; +//using System.Management.Automation; +//using System.Reflection; +//using System.Runtime.Loader; +//using System.Text; + +//namespace PnP.PowerShell.Commands +//{ +// public class DependencyAssemblyLoadContext : AssemblyLoadContext +// { +// private static readonly string s_psHome = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location); + +// private static readonly ConcurrentDictionary s_dependencyLoadContexts = new ConcurrentDictionary(); + +// internal static DependencyAssemblyLoadContext GetForDirectory(string directoryPath) +// { +// return s_dependencyLoadContexts.GetOrAdd(directoryPath, (path) => new DependencyAssemblyLoadContext(path)); +// } + +// private readonly string _dependencyDirPath; + +// public DependencyAssemblyLoadContext(string dependencyDirPath) +// : base(nameof(DependencyAssemblyLoadContext)) +// { +// _dependencyDirPath = dependencyDirPath; +// } + +// protected override Assembly Load(AssemblyName assemblyName) +// { +// string assemblyFileName = $"{assemblyName.Name}.dll"; + +// // Make sure we allow other common PowerShell dependencies to be loaded by PowerShell +// // But specifically exclude Microsoft.ApplicationInsightssince we want to use a different version here +// if (!assemblyName.Name.Equals("Microsoft.ApplicationInsights", StringComparison.OrdinalIgnoreCase)) +// { +// string psHomeAsmPath = Path.Join(s_psHome, assemblyFileName); +// if (File.Exists(psHomeAsmPath)) +// { +// // With this API, returning null means nothing is loaded +// return null; +// } +// } + +// // Now try to load the assembly from the dependency directory +// string dependencyAsmPath = Path.Join(_dependencyDirPath, assemblyFileName); +// if (File.Exists(dependencyAsmPath)) +// { +// return LoadFromAssemblyPath(dependencyAsmPath); +// } + +// return null; +// } +// } +//} diff --git a/src/Commands/Base/PnPPowerShellModuleInitializer.cs b/src/Commands/Base/PnPPowerShellModuleInitializer.cs index 4926b1a86..f87b2c1e6 100644 --- a/src/Commands/Base/PnPPowerShellModuleInitializer.cs +++ b/src/Commands/Base/PnPPowerShellModuleInitializer.cs @@ -1,18 +1,65 @@ using System; using System.Collections.Generic; using System.IO; +using System.Linq; using System.Management.Automation; using System.Reflection; using System.Runtime.Loader; -using System.Text; namespace PnP.PowerShell.Commands.Base { public class PnPPowerShellModuleInitializer : IModuleAssemblyInitializer { - private static string s_binBasePath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "..")); + //private static string s_binBasePath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "..")); + //private static string s_binCommonPath = Path.Combine(s_binBasePath, "Common"); - private static string s_binCommonPath = Path.Combine(s_binBasePath, "Common"); + private static readonly string s_binBasePath; + private static readonly string s_binCommonPath; + private static readonly HashSet s_dependencies; + private static readonly HashSet s_psEditionDependencies; + private static readonly AssemblyLoadContextProxy s_proxy; + + static PnPPowerShellModuleInitializer() + { +#if DEBUG + s_binBasePath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location))); + s_binCommonPath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "..", "..", "..", "..", "..", "src", "ALC", "bin", "Debug", "net6.0")); +#else + s_binBasePath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "..")); + s_binCommonPath = Path.Combine(s_binBasePath, "Common"); +#endif + s_dependencies = new HashSet(StringComparer.Ordinal); + s_psEditionDependencies = new HashSet(StringComparer.Ordinal); + s_proxy = AssemblyLoadContextProxy.CreateLoadContext("pnp-powershell-load-context"); + + // Add shared dependencies. + foreach (string filePath in Directory.EnumerateFiles(s_binBasePath, "*.dll")) + { + try + { + s_dependencies.Add(AssemblyName.GetAssemblyName(filePath).FullName); + } + catch (BadImageFormatException) + { + // Skip files without metadata. + continue; + } + } + + // Add the dependencies for the current PowerShell edition. Can be either Desktop (PS 5.1) or Core (PS 7+). + foreach (string filePath in Directory.EnumerateFiles(s_binCommonPath, "*.dll")) + { + try + { + s_psEditionDependencies.Add(AssemblyName.GetAssemblyName(filePath).FullName); + } + catch (BadImageFormatException) + { + // Skip files without metadata. + continue; + } + } + } public void OnImport() { @@ -24,15 +71,107 @@ private static Assembly ResolveAssembly_NetCore( AssemblyLoadContext assemblyLoadContext, AssemblyName assemblyName) { - // In .NET Core, PowerShell deals with assembly probing so our logic is much simpler - // We only care about our Engine assembly - if (!assemblyName.Name.Equals("PnP.PowerShell.ALC")) + if (IsAssemblyMatching(assemblyName)) + { + string filePath = GetRequiredAssemblyPath(assemblyName); + if (!string.IsNullOrEmpty(filePath)) + { + // - In .NET, load the assembly into the custom assembly load context. + return s_proxy.LoadFromAssemblyPath(filePath); + } + } + return null; + //// In .NET Core, PowerShell deals with assembly probing so our logic is much simpler + //// We only care about our Engine assembly + //if (!assemblyName.Name.Equals("PnP.PowerShell.ALC")) + //{ + // return null; + //} + + //// Now load the Engine assembly through the dependency ALC, and let it resolve further dependencies automatically + //return DependencyAssemblyLoadContext.GetForDirectory(s_binCommonPath).LoadFromAssemblyName(assemblyName); + } + + /// + /// Checks to see if the assembly is present in the shared or PSEdition dependencies folder. + /// Check is done by first matching the assembly by its full name; otherwise, we match using the assembly name. + /// + /// to match. + /// True if assembly is present in dependencies folder; otherwise False. + private static bool IsAssemblyPresent(AssemblyName assemblyName) + { + return s_binBasePath.Contains(assemblyName.FullName) || s_binCommonPath.Contains(assemblyName.FullName) + ? true + : !string.IsNullOrEmpty(s_dependencies.SingleOrDefault((x) => x.StartsWith($"{assemblyName.Name},"))) || !string.IsNullOrEmpty(s_psEditionDependencies.SingleOrDefault((x) => x.StartsWith($"{assemblyName.Name},"))); + } + + /// + /// Checks to see if the requested assembly matches the assemblies in our dependencies folder. + /// The requesting assembly is always available in .NET, but could be null in .NET Framework. + /// - When the requesting assembly is available, we check whether the loading request came from this + /// module (the 'Microsoft.Graph*' assembly in this case), so as to make sure we only act on the request + /// from this module. + /// - When the requesting assembly is not available, we just have to depend on the assembly name only. + /// + /// being requested. + /// The requesting . + /// True if assembly is present and matches in dependencies folder; otherwise False. + private static bool IsAssemblyMatching(AssemblyName assemblyName) + { + return assemblyName != null + ? (assemblyName.FullName.StartsWith("Microsoft") || assemblyName.FullName.StartsWith("Azure.Identity")) && IsAssemblyPresent(assemblyName) + : IsAssemblyPresent(assemblyName); + } + + /// + /// Gets the full path of the assembly from the dependencies folder. + /// + /// to find. + /// A representing the full path of the assembly from the dependencies folder; otherwise . + private static string GetRequiredAssemblyPath(AssemblyName assemblyName) + { + string fileName = assemblyName.Name + ".dll"; + string filePath = Path.Combine(s_binBasePath, fileName); + + if (File.Exists(filePath)) + return filePath; + + filePath = Path.Combine(s_binCommonPath, fileName); + return File.Exists(filePath) ? filePath : null; + } + } + + /// + /// An encapsulation of reflection API calls to create a custom AssemblyLoadContext. type is not available when targeting netstandard2.0 .NET Framework. + /// + internal class AssemblyLoadContextProxy + { + private readonly object _customContext; + private readonly MethodInfo _loadFromAssemblyPath; + + private AssemblyLoadContextProxy(Type alc, string loadContextName) + { + var ctor = alc.GetConstructor(new[] { typeof(string), typeof(bool) }); + _loadFromAssemblyPath = alc.GetMethod("LoadFromAssemblyPath", new[] { typeof(string) }); + _customContext = ctor.Invoke(new object[] { loadContextName, false }); + } + + internal Assembly LoadFromAssemblyPath(string assemblyPath) + { + return (Assembly)_loadFromAssemblyPath.Invoke(_customContext, new[] { assemblyPath }); + } + + internal static AssemblyLoadContextProxy CreateLoadContext(string name) + { + if (string.IsNullOrEmpty(name)) { - return null; + throw new ArgumentNullException(nameof(name)); } - // Now load the Engine assembly through the dependency ALC, and let it resolve further dependencies automatically - return DependencyAssemblyLoadContext.GetForDirectory(s_binCommonPath).LoadFromAssemblyName(assemblyName); + var alc = typeof(object).Assembly.GetType("System.Runtime.Loader.AssemblyLoadContext"); + return alc != null + ? new AssemblyLoadContextProxy(alc, name) + : null; } } } From 04e35029598c7a20de436ce634b7851a6c69271b Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Wed, 19 Jul 2023 03:54:15 +0000 Subject: [PATCH 08/21] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6160 ++++++++--------- version.txt | 2 +- 3 files changed, 3082 insertions(+), 3082 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 5798b5164..a304590aa 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -1eab7226ef7b76d8f8daaab16d336038f2af2525 \ No newline at end of file +6bc4fd4b2d37e8c46b94742d0f52756e1b275393 \ 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 efeed130f..1088d76f6 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9242 +1,9242 @@ [ { - "Rank": 1, - "Command": "Add-PnPAlert -List \"Demo List\"", "Id": 1, + "Command": "Add-PnPAlert -List \"Demo List\"", + "Rank": 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)", "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, - "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\"", + "Rank": 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))", "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, - "Command": "Add-PnPApp -Path ./myapp.sppkg", "Id": 5, + "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Rank": 1, "CommandName": "Add-PnPApp" }, { - "Rank": 2, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Id": 6, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "Rank": 2, "CommandName": "Add-PnPApp" }, { - "Rank": 3, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Id": 7, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "Rank": 3, "CommandName": "Add-PnPApp" }, { - "Rank": 4, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Id": 8, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "Rank": 4, "CommandName": "Add-PnPApp" }, { - "Rank": 1, - "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", "Id": 9, + "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", + "Rank": 1, "CommandName": "Add-PnPApplicationCustomizer" }, { - "Rank": 1, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Id": 10, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Rank": 1, "CommandName": "Add-PnPAvailableSiteClassification" }, { - "Rank": 2, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Id": 11, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "Rank": 2, "CommandName": "Add-PnPAvailableSiteClassification" }, { - "Rank": 1, - "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\"", + "Rank": 1, "CommandName": "Add-PnPAzureADGroupMember" }, { - "Rank": 2, - "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 \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "CommandName": "Add-PnPAzureADGroupMember" }, { - "Rank": 3, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 14, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Rank": 3, "CommandName": "Add-PnPAzureADGroupMember" }, { - "Rank": 1, - "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\"", + "Rank": 1, "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Rank": 2, - "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 \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Rank": 3, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 17, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Rank": 3, "CommandName": "Add-PnPAzureADGroupOwner" }, { - "Rank": 1, - "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 \"Directory.Read.All\" -BuiltInType MicrosoftGraph", + "Rank": 1, "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { - "Rank": 2, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "Id": 19, + "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, - "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 $ct", + "Rank": 1, "CommandName": "Add-PnPContentType" }, { - "Rank": 2, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType (Get-PnPContentType -Identity 0x0101) -DocumentTemplate \"/_cts/Project Document/template.docx\"", "Id": 21, + "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, - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "Id": 22, + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", + "Rank": 3, "CommandName": "Add-PnPContentType" }, { - "Rank": 4, - "Command": "Add-PnPContentType -Name \"Project Item\"", "Id": 23, + "Command": "Add-PnPContentType -Name \"Project Item\"", + "Rank": 4, "CommandName": "Add-PnPContentType" }, { - "Rank": 5, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "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, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Id": 25, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "Rank": 1, "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "Rank": 2, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Id": 26, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "Rank": 2, "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "Rank": 1, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Id": 27, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1, "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "Rank": 2, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Id": 28, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2, "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "Rank": 1, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Id": 29, + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "Rank": 1, "CommandName": "Add-PnPContentTypeToList" }, { - "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, + "Command": "Add-PnPCustomAction -Title \"CollabFooter\" -Name \"CollabFooter\" -Location \"ClientSideExtension.ApplicationCustomizer\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", + "Rank": 1, "CommandName": "Add-PnPCustomAction" }, { - "Rank": 1, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Id": 31, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "Rank": 1, "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "Rank": 2, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Id": 32, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "Rank": 2, "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "Rank": 1, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Id": 33, + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "Rank": 1, "CommandName": "Add-PnPDocumentSet" }, { - "Rank": 1, - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", "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, - "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 WebAdding -Synchronization Synchronous", + "Rank": 2, "CommandName": "Add-PnPEventReceiver" }, { - "Rank": 3, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "Id": 36, + "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, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "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, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Id": 38, + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "Rank": 1, "CommandName": "Add-PnPField" }, { - "Rank": 2, - "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", "Id": 39, + "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, - "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\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"", + "Rank": 3, "CommandName": "Add-PnPField" }, { - "Rank": 4, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Id": 41, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "Rank": 4, "CommandName": "Add-PnPField" }, { - "Rank": 5, - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"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" }, { - "Rank": 6, - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Id": 43, + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "Rank": 6, "CommandName": "Add-PnPField" }, { - "Rank": 1, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Id": 44, + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1, "CommandName": "Add-PnPFieldToContentType" }, { - "Rank": 1, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Id": 45, + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "Rank": 1, "CommandName": "Add-PnPFile" }, { - "Rank": 2, - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Id": 46, + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "Rank": 2, "CommandName": "Add-PnPFile" }, { - "Rank": 3, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", "Id": 47, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "Rank": 3, "CommandName": "Add-PnPFile" }, { - "Rank": 4, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -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" }, { - "Rank": 5, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -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" }, { - "Rank": 6, - "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\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", + "Rank": 6, "CommandName": "Add-PnPFile" }, { - "Rank": 7, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Id": 51, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "Rank": 7, "CommandName": "Add-PnPFile" }, { - "Rank": 8, - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Id": 52, + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "Rank": 8, "CommandName": "Add-PnPFile" }, { - "Rank": 1, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 53, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "Rank": 2, - "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 Edit -Password \"PnPRocks!\"", + "Rank": 2, "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "Rank": 3, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "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, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 56, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "Rank": 2, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Id": 57, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "Rank": 2, "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "Rank": 1, - "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", + "Rank": 1, "CommandName": "Add-PnPFileSharingInvite" }, { - "Rank": 2, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Id": 59, + "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, - "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-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, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Id": 61, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "Rank": 1, "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Rank": 2, - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "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, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "Id": 63, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", + "Rank": 3, "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Rank": 4, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Id": 64, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", + "Rank": 4, "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Rank": 5, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Id": 65, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "Rank": 5, "CommandName": "Add-PnPFileToSiteTemplate" }, { - "Rank": 1, - "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\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPFileUserSharingLink" }, { - "Rank": 2, - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 67, + "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, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Id": 68, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1, "CommandName": "Add-PnPFolder" }, { - "Rank": 2, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Id": 69, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "Rank": 2, "CommandName": "Add-PnPFolder" }, { - "Rank": 3, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Id": 70, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "Rank": 3, "CommandName": "Add-PnPFolder" }, { - "Rank": 1, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 71, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "Rank": 2, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Id": 72, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", + "Rank": 2, "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "Rank": 3, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "Id": 73, + "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, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 74, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "Rank": 2, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Id": 75, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "Rank": 2, "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "Rank": 1, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Id": 76, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", + "Rank": 1, "CommandName": "Add-PnPFolderSharingInvite" }, { - "Rank": 2, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Id": 77, + "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, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "Id": 78, + "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, - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 79, + "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, - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 80, + "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, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Id": 81, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1, "CommandName": "Add-PnPGroupMember" }, { - "Rank": 2, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Id": 82, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "Rank": 2, "CommandName": "Add-PnPGroupMember" }, { - "Rank": 1, - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Id": 83, + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Rank": 1, "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { - "Rank": 1, - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Id": 84, + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "Rank": 1, "CommandName": "Add-PnPHubSiteAssociation" }, { - "Rank": 1, - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Id": 85, + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "Rank": 1, "CommandName": "Add-PnPHubToHubAssociation" }, { - "Rank": 2, - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Id": 86, + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", + "Rank": 2, "CommandName": "Add-PnPHubToHubAssociation" }, { - "Rank": 3, - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/toplevelhub\"\r ; Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/thirdlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\"", "Id": 87, + "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, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Id": 88, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "Rank": 1, "CommandName": "Add-PnPJavaScriptBlock" }, { - "Rank": 2, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Id": 89, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "Rank": 2, "CommandName": "Add-PnPJavaScriptBlock" }, { - "Rank": 1, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Id": 90, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", + "Rank": 1, "CommandName": "Add-PnPJavaScriptLink" }, { - "Rank": 2, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Id": 91, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "Rank": 2, "CommandName": "Add-PnPJavaScriptLink" }, { - "Rank": 1, - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Id": 92, + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "Rank": 1, "CommandName": "Add-PnPListDesign" }, { - "Rank": 2, - "Command": "Add-PnPListDesign -Title \"My Company Design\" -SiteScriptIds \"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -ListColor Orange -ListIcon BullseyeTarget -ThumbnailUrl \"https://contoso.sharepoint.com/SiteAssets/site-thumbnail.png\"", "Id": 93, + "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, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Id": 94, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "Rank": 1, "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Rank": 2, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Id": 95, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", + "Rank": 2, "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Rank": 3, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Id": 96, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "Rank": 3, "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "Rank": 1, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 97, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 1, "CommandName": "Add-PnPListItem" }, { - "Rank": 2, - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 98, + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 2, "CommandName": "Add-PnPListItem" }, { - "Rank": 3, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Id": 99, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", + "Rank": 3, "CommandName": "Add-PnPListItem" }, { - "Rank": 4, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Id": 100, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", + "Rank": 4, "CommandName": "Add-PnPListItem" }, { - "Rank": 5, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Id": 101, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "Rank": 5, "CommandName": "Add-PnPListItem" }, { - "Rank": 1, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Id": 102, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", + "Rank": 1, "CommandName": "Add-PnPListItemAttachment" }, { - "Rank": 2, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Id": 103, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", + "Rank": 2, "CommandName": "Add-PnPListItemAttachment" }, { - "Rank": 3, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Id": 104, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "Rank": 3, "CommandName": "Add-PnPListItemAttachment" }, { - "Rank": 1, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Id": 105, + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "Rank": 1, "CommandName": "Add-PnPListItemComment" }, { - "Rank": 1, - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Id": 106, + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "Rank": 1, "CommandName": "Add-PnPMasterPage" }, { - "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 107, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupMember" }, { - "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 108, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupMember" }, { - "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 109, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { - "Rank": 2, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 110, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", + "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { - "Rank": 1, - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "Id": 111, + "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, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Id": 112, + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "Rank": 3, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Id": 113, + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "Rank": 3, "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "Rank": 1, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Id": 114, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "Rank": 1, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 2, - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "Id": 115, + "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, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "Id": 116, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", + "Rank": 3, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 4, - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "Id": 117, + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", + "Rank": 4, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 5, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Id": 118, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "Rank": 5, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 6, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Id": 119, + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "Rank": 6, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 7, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Id": 120, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "Rank": 7, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 8, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Id": 121, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "Rank": 8, "CommandName": "Add-PnPNavigationNode" }, { - "Rank": 1, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Id": 122, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", + "Rank": 1, "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "Rank": 2, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", "Id": 123, + "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, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Id": 124, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "Rank": 3, "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "Rank": 1, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Id": 125, + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Rank": 1, "CommandName": "Add-PnPOrgNewsSite" }, { - "Rank": 1, - "Command": "Add-PnPPage -Name \"NewPage\"", "Id": 126, + "Command": "Add-PnPPage -Name \"NewPage\"", + "Rank": 1, "CommandName": "Add-PnPPage" }, { - "Rank": 2, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Id": 127, + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "Rank": 2, "CommandName": "Add-PnPPage" }, { - "Rank": 3, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Id": 128, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Rank": 3, "CommandName": "Add-PnPPage" }, { - "Rank": 4, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Id": 129, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Rank": 4, "CommandName": "Add-PnPPage" }, { - "Rank": 5, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Id": 130, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Rank": 5, "CommandName": "Add-PnPPage" }, { - "Rank": 6, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Id": 131, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "Rank": 6, "CommandName": "Add-PnPPage" }, { - "Rank": 7, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Id": 132, + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7, "CommandName": "Add-PnPPage" }, { - "Rank": 8, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Id": 133, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Rank": 8, "CommandName": "Add-PnPPage" }, { - "Rank": 9, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Id": 134, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9, "CommandName": "Add-PnPPage" }, { - "Rank": 10, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Id": 135, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10, "CommandName": "Add-PnPPage" }, { - "Rank": 1, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Id": 136, + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", + "Rank": 1, "CommandName": "Add-PnPPageImageWebPart" }, { - "Rank": 2, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -ImageWidth 400 -ImageHeight 200 -Caption \"Caption text\" -AlternativeText \"Alt text\" -Link \"https://pnp.github.io\"", "Id": 137, + "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, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Id": 138, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "Rank": 1, "CommandName": "Add-PnPPageSection" }, { - "Rank": 2, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Id": 139, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "Rank": 2, "CommandName": "Add-PnPPageSection" }, { - "Rank": 1, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Id": 140, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "Rank": 1, "CommandName": "Add-PnPPageTextPart" }, { - "Rank": 2, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Id": 141, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", + "Rank": 2, "CommandName": "Add-PnPPageTextPart" }, { - "Rank": 3, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", "Id": 142, + "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, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Id": 143, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Rank": 1, "CommandName": "Add-PnPPageWebPart" }, { - "Rank": 2, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Id": 144, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "Rank": 2, "CommandName": "Add-PnPPageWebPart" }, { - "Rank": 3, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Id": 145, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "Rank": 3, "CommandName": "Add-PnPPageWebPart" }, { - "Rank": 1, - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Id": 146, + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "Rank": 1, "CommandName": "Add-PnPPlannerBucket" }, { - "Rank": 2, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Id": 147, + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Rank": 2, "CommandName": "Add-PnPPlannerBucket" }, { - "Rank": 1, - "Command": "Add-PnPPlannerRoster", "Id": 148, + "Command": "Add-PnPPlannerRoster", + "Rank": 1, "CommandName": "Add-PnPPlannerRoster" }, { - "Rank": 1, - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 149, + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPPlannerRosterMember" }, { - "Rank": 1, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Id": 150, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Rank": 1, "CommandName": "Add-PnPPlannerTask" }, { - "Rank": 2, - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Id": 151, + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Rank": 2, "CommandName": "Add-PnPPlannerTask" }, { - "Rank": 3, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Id": 152, + "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, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Id": 153, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1, "CommandName": "Add-PnPPublishingImageRendition" }, { - "Rank": 1, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Id": 154, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", + "Rank": 1, "CommandName": "Add-PnPPublishingPage" }, { - "Rank": 2, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Id": 155, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "Rank": 2, "CommandName": "Add-PnPPublishingPage" }, { - "Rank": 1, - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Id": 156, + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Rank": 1, "CommandName": "Add-PnPPublishingPageLayout" }, { - "Rank": 1, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Id": 157, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Rank": 1, "CommandName": "Add-PnPRoleDefinition" }, { - "Rank": 2, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Id": 158, + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "Rank": 2, "CommandName": "Add-PnPRoleDefinition" }, { - "Rank": 3, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Id": 159, + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "Rank": 3, "CommandName": "Add-PnPRoleDefinition" }, { - "Rank": 1, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Id": 160, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Rank": 2, - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 161, + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2, "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Rank": 3, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Id": 162, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Rank": 3, "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "Rank": 1, - "Command": "Add-PnPSiteCollectionAppCatalog", "Id": 163, + "Command": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1, "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "Rank": 2, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Id": 164, + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Rank": 2, "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "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": 165, + "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, - "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": 166, + "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, - "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": 167, + "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, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Id": 168, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", + "Rank": 1, "CommandName": "Add-PnPSiteDesignFromWeb" }, { - "Rank": 2, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Id": 169, + "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, - "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": 170, + "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, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Id": 171, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "Rank": 1, "CommandName": "Add-PnPSiteDesignTask" }, { - "Rank": 2, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 172, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Rank": 2, "CommandName": "Add-PnPSiteDesignTask" }, { - "Rank": 1, - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Id": 173, + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "Rank": 1, "CommandName": "Add-PnPSiteScript" }, { - "Rank": 1, - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Id": 174, + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "Rank": 1, "CommandName": "Add-PnPSiteScriptPackage" }, { - "Rank": 1, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Id": 175, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "Rank": 1, "CommandName": "Add-PnPSiteTemplate" }, { - "Rank": 1, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Id": 176, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", + "Rank": 1, "CommandName": "Add-PnPStoredCredential" }, { - "Rank": 2, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Id": 177, + "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, - "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": 178, + "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, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Id": 179, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "Rank": 1, "CommandName": "Add-PnPTaxonomyField" }, { - "Rank": 2, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Id": 180, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "Rank": 2, "CommandName": "Add-PnPTaxonomyField" }, { - "Rank": 1, - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Id": 181, + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "Rank": 1, "CommandName": "Add-PnPTeamsChannel" }, { - "Rank": 2, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Id": 182, + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "Rank": 2, "CommandName": "Add-PnPTeamsChannel" }, { - "Rank": 3, - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "Id": 183, + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", + "Rank": 3, "CommandName": "Add-PnPTeamsChannel" }, { - "Rank": 4, - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Id": 184, + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", + "Rank": 4, "CommandName": "Add-PnPTeamsChannel" }, { - "Rank": 1, - "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", "Id": 185, + "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, - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Id": 186, + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", + "Rank": 2, "CommandName": "Add-PnpTeamsChannelUser" }, { - "Rank": 1, - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", "Id": 187, + "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, - "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": 188, + "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, - "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": 189, + "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, - "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": 190, + "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, - "Command": "Add-PnPTeamsTeam", "Id": 191, + "Command": "Add-PnPTeamsTeam", + "Rank": 1, "CommandName": "Add-PnPTeamsTeam" }, { - "Rank": 1, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 192, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 1, "CommandName": "Add-PnPTeamsUser" }, { - "Rank": 2, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Id": 193, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Rank": 2, "CommandName": "Add-PnPTeamsUser" }, { - "Rank": 3, - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Id": 194, + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", + "Rank": 3, "CommandName": "Add-PnPTeamsUser" }, { - "Rank": 4, - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Id": 195, + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "Rank": 4, "CommandName": "Add-PnPTeamsUser" }, { - "Rank": 1, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Id": 196, + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1, "CommandName": "Add-PnPTenantCdnOrigin" }, { - "Rank": 1, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Id": 197, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Rank": 1, "CommandName": "Add-PnPTenantSequence" }, { - "Rank": 1, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Id": 198, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Rank": 1, "CommandName": "Add-PnPTenantSequenceSite" }, { - "Rank": 1, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Id": 199, + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "Rank": 1, "CommandName": "Add-PnPTenantSequenceSubSite" }, { - "Rank": 1, - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Id": 200, + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "Rank": 1, "CommandName": "Add-PnPTermToTerm" }, { - "Rank": 1, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Id": 201, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", + "Rank": 1, "CommandName": "Add-PnPView" }, { - "Rank": 2, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "Id": 202, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", + "Rank": 2, "CommandName": "Add-PnPView" }, { - "Rank": 3, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Id": 203, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "Rank": 3, "CommandName": "Add-PnPView" }, { - "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": 204, + "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, - "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": 205, + "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, - "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": 206, + "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, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Id": 207, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Rank": 1, "CommandName": "Add-PnPWebhookSubscription" }, { - "Rank": 2, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Id": 208, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "Rank": 2, "CommandName": "Add-PnPWebhookSubscription" }, { - "Rank": 3, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "Id": 209, + "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, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "Id": 210, + "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, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Id": 211, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "Rank": 2, "CommandName": "Add-PnPWebPartToWebPartPage" }, { - "Rank": 1, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "Id": 212, + "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, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Id": 213, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "Rank": 2, "CommandName": "Add-PnPWebPartToWikiPage" }, { - "Rank": 1, - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Id": 214, + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "Rank": 1, "CommandName": "Add-PnPWikiPage" }, { - "Rank": 1, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Id": 215, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Rank": 1, "CommandName": "Clear-PnPAzureADGroupMember" }, { - "Rank": 1, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Id": 216, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Rank": 1, "CommandName": "Clear-PnPAzureADGroupOwner" }, { - "Rank": 1, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Id": 217, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "Rank": 1, "CommandName": "Clear-PnPDefaultColumnValues" }, { - "Rank": 2, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Id": 218, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "Rank": 2, "CommandName": "Clear-PnPDefaultColumnValues" }, { - "Rank": 1, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Id": 219, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1, "CommandName": "Clear-PnPListItemAsRecord" }, { - "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Id": 220, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { - "Rank": 1, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Id": 221, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { - "Rank": 1, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Id": 222, + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1, "CommandName": "Clear-PnpRecycleBinItem" }, { - "Rank": 2, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Id": 223, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Rank": 2, "CommandName": "Clear-PnpRecycleBinItem" }, { - "Rank": 3, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Id": 224, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Rank": 3, "CommandName": "Clear-PnpRecycleBinItem" }, { - "Rank": 1, - "Command": "Clear-PnPTenantAppCatalogUrl", "Id": 225, + "Command": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1, "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { - "Rank": 1, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 226, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "Rank": 2, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Id": 227, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Rank": 2, "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "Rank": 1, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Id": 228, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Rank": 1, "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "Rank": 2, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Id": 229, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Rank": 2, "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "Rank": 1, - "Command": "Convert-PnPSiteTemplate -Path template.xml", "Id": 230, + "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Rank": 1, "CommandName": "Convert-PnPSiteTemplate" }, { - "Rank": 2, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Id": 231, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Rank": 2, "CommandName": "Convert-PnPSiteTemplate" }, { - "Rank": 3, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Id": 232, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Rank": 3, "CommandName": "Convert-PnPSiteTemplate" }, { - "Rank": 1, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Id": 233, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Rank": 1, "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "Rank": 2, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Id": 234, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Rank": 2, "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "Rank": 1, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Id": 235, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Rank": 1, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 2, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Id": 236, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Rank": 2, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 3, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Id": 237, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Rank": 3, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 4, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Id": 238, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "Rank": 4, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 5, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 239, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 5, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 6, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Id": 240, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Rank": 6, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 7, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Id": 241, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Rank": 7, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 8, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Id": 242, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "Rank": 8, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 9, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 243, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Rank": 9, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 10, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Id": 244, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Rank": 10, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 11, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Id": 245, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "Rank": 11, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 12, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 246, + "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, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 247, + "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, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Id": 248, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "Rank": 14, "CommandName": "ConvertTo-PnPPage" }, { - "Rank": 1, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 249, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 1, "CommandName": "Copy-PnPFile" }, { - "Rank": 2, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 250, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Rank": 2, "CommandName": "Copy-PnPFile" }, { - "Rank": 3, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 251, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Rank": 3, "CommandName": "Copy-PnPFile" }, { - "Rank": 4, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 252, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 4, "CommandName": "Copy-PnPFile" }, { - "Rank": 5, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 253, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Rank": 5, "CommandName": "Copy-PnPFile" }, { - "Rank": 6, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 254, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Rank": 6, "CommandName": "Copy-PnPFile" }, { - "Rank": 7, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 255, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Rank": 7, "CommandName": "Copy-PnPFile" }, { - "Rank": 8, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 256, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 8, "CommandName": "Copy-PnPFile" }, { - "Rank": 9, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 257, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Rank": 9, "CommandName": "Copy-PnPFile" }, { - "Rank": 10, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 258, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Rank": 10, "CommandName": "Copy-PnPFile" }, { - "Rank": 1, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 259, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 1, "CommandName": "Copy-PnPFolder" }, { - "Rank": 2, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 260, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Rank": 2, "CommandName": "Copy-PnPFolder" }, { - "Rank": 3, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 261, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Rank": 3, "CommandName": "Copy-PnPFolder" }, { - "Rank": 4, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 262, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 4, "CommandName": "Copy-PnPFolder" }, { - "Rank": 5, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 263, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Rank": 5, "CommandName": "Copy-PnPFolder" }, { - "Rank": 6, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 264, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Rank": 6, "CommandName": "Copy-PnPFolder" }, { - "Rank": 7, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 265, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Rank": 7, "CommandName": "Copy-PnPFolder" }, { - "Rank": 8, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 266, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Rank": 8, "CommandName": "Copy-PnPFolder" }, { - "Rank": 9, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 267, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Rank": 9, "CommandName": "Copy-PnPFolder" }, { - "Rank": 10, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 268, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Rank": 10, "CommandName": "Copy-PnPFolder" }, { - "Rank": 1, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Id": 269, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Rank": 1, "CommandName": "Copy-PnPItemProxy" }, { - "Rank": 1, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Id": 270, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "Rank": 1, "CommandName": "Copy-PnPList" }, { - "Rank": 2, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Id": 271, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", + "Rank": 2, "CommandName": "Copy-PnPList" }, { - "Rank": 3, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Id": 272, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "Rank": 3, "CommandName": "Copy-PnPList" }, { - "Rank": 4, - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "Id": 273, + "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, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Id": 274, + "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, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Id": 275, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "Rank": 2, "CommandName": "Copy-PnPTeamsTeam" }, { - "Rank": 3, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Id": 276, + "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, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Id": 277, + "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, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 278, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Disable-PnPFeature" }, { - "Rank": 2, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 279, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2, "CommandName": "Disable-PnPFeature" }, { - "Rank": 3, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 280, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3, "CommandName": "Disable-PnPFeature" }, { - "Rank": 1, - "Command": "Disable-PnPPageScheduling", "Id": 281, + "Command": "Disable-PnPPageScheduling", + "Rank": 1, "CommandName": "Disable-PnPPageScheduling" }, { - "Rank": 1, - "Command": "Disable-PnPPowerShellTelemetry", "Id": 282, + "Command": "Disable-PnPPowerShellTelemetry", + "Rank": 1, "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "Rank": 2, - "Command": "Disable-PnPPowerShellTelemetry -Force", "Id": 283, + "Command": "Disable-PnPPowerShellTelemetry -Force", + "Rank": 2, "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "Rank": 1, - "Command": "Disable-PnPSharingForNonOwnersOfSite", "Id": 284, + "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1, "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { - "Rank": 1, - "Command": "Disable-PnPSiteClassification", "Id": 285, + "Command": "Disable-PnPSiteClassification", + "Rank": 1, "CommandName": "Disable-PnPSiteClassification" }, { - "Rank": 1, - "Command": "Disconnect-PnPOnline", "Id": 286, + "Command": "Disconnect-PnPOnline", + "Rank": 1, "CommandName": "Disconnect-PnPOnline" }, { - "Rank": 1, - "Command": "Enable-PnPCommSite", "Id": 287, + "Command": "Enable-PnPCommSite", + "Rank": 1, "CommandName": "Enable-PnPCommSite" }, { - "Rank": 2, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Id": 288, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Rank": 2, "CommandName": "Enable-PnPCommSite" }, { - "Rank": 1, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 289, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Enable-PnPFeature" }, { - "Rank": 2, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 290, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Rank": 2, "CommandName": "Enable-PnPFeature" }, { - "Rank": 3, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 291, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Rank": 3, "CommandName": "Enable-PnPFeature" }, { - "Rank": 1, - "Command": "Enable-PnPPageScheduling", "Id": 292, + "Command": "Enable-PnPPageScheduling", + "Rank": 1, "CommandName": "Enable-PnPPageScheduling" }, { - "Rank": 1, - "Command": "Enable-PnPPowerShellTelemetry", "Id": 293, + "Command": "Enable-PnPPowerShellTelemetry", + "Rank": 1, "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "Rank": 2, - "Command": "Enable-PnPPowerShellTelemetry -Force", "Id": 294, + "Command": "Enable-PnPPowerShellTelemetry -Force", + "Rank": 2, "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "Rank": 1, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Id": 295, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "Rank": 1, "CommandName": "Enable-PnPSiteClassification" }, { - "Rank": 2, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Id": 296, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 2, "CommandName": "Enable-PnPSiteClassification" }, { - "Rank": 1, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Id": 297, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Rank": 1, "CommandName": "Export-PnPListToSiteTemplate" }, { - "Rank": 2, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Id": 298, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Rank": 2, "CommandName": "Export-PnPListToSiteTemplate" }, { - "Rank": 1, - "Command": "Export-PnPPage -Identity Home.aspx", "Id": 299, + "Command": "Export-PnPPage -Identity Home.aspx", + "Rank": 1, "CommandName": "Export-PnPPage" }, { - "Rank": 1, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Id": 300, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Rank": 1, "CommandName": "Export-PnPPageMapping" }, { - "Rank": 2, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Id": 301, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Rank": 2, "CommandName": "Export-PnPPageMapping" }, { - "Rank": 3, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Id": 302, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Rank": 3, "CommandName": "Export-PnPPageMapping" }, { - "Rank": 1, - "Command": "Export-PnPTaxonomy", "Id": 303, + "Command": "Export-PnPTaxonomy", + "Rank": 1, "CommandName": "Export-PnPTaxonomy" }, { - "Rank": 2, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Id": 304, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Rank": 2, "CommandName": "Export-PnPTaxonomy" }, { - "Rank": 3, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Id": 305, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", + "Rank": 3, "CommandName": "Export-PnPTaxonomy" }, { - "Rank": 4, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Id": 306, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Rank": 4, "CommandName": "Export-PnPTaxonomy" }, { - "Rank": 1, - "Command": "Export-PnPTermGroupToXml", "Id": 307, + "Command": "Export-PnPTermGroupToXml", + "Rank": 1, "CommandName": "Export-PnPTermGroupToXml" }, { - "Rank": 2, - "Command": "Export-PnPTermGroupToXml -Out output.xml", "Id": 308, + "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Rank": 2, "CommandName": "Export-PnPTermGroupToXml" }, { - "Rank": 3, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Id": 309, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "Rank": 3, "CommandName": "Export-PnPTermGroupToXml" }, { - "Rank": 1, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Id": 310, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Rank": 1, "CommandName": "Export-PnPUserInfo" }, { - "Rank": 2, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "Id": 311, + "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, - "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Id": 312, + "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Rank": 1, "CommandName": "Export-PnPUserProfile" }, { - "Rank": 2, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Id": 313, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Rank": 2, "CommandName": "Export-PnPUserProfile" }, { - "Rank": 1, - "Command": "Find-PnPFile -Match *.master", "Id": 314, + "Command": "Find-PnPFile -Match *.master", + "Rank": 1, "CommandName": "Find-PnPFile" }, { - "Rank": 2, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Id": 315, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Rank": 2, "CommandName": "Find-PnPFile" }, { - "Rank": 3, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Id": 316, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Rank": 3, "CommandName": "Find-PnPFile" }, { - "Rank": 1, - "Command": "Get-PnPAccessToken", "Id": 317, + "Command": "Get-PnPAccessToken", + "Rank": 1, "CommandName": "Get-PnPAccessToken" }, { - "Rank": 2, - "Command": "Get-PnPAccessToken -Decoded", "Id": 318, + "Command": "Get-PnPAccessToken -Decoded", + "Rank": 2, "CommandName": "Get-PnPAccessToken" }, { - "Rank": 3, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Id": 319, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Rank": 3, "CommandName": "Get-PnPAccessToken" }, { - "Rank": 4, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Id": 320, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Rank": 4, "CommandName": "Get-PnPAccessToken" }, { - "Rank": 5, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Id": 321, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Rank": 5, "CommandName": "Get-PnPAccessToken" }, { - "Rank": 1, - "Command": "Get-PnPAlert", "Id": 322, + "Command": "Get-PnPAlert", + "Rank": 1, "CommandName": "Get-PnPAlert" }, { - "Rank": 2, - "Command": "Get-PnPAlert -List \"Demo List\"", "Id": 323, + "Command": "Get-PnPAlert -List \"Demo List\"", + "Rank": 2, "CommandName": "Get-PnPAlert" }, { - "Rank": 3, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 324, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Rank": 3, "CommandName": "Get-PnPAlert" }, { - "Rank": 4, - "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Id": 325, + "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Rank": 4, "CommandName": "Get-PnPAlert" }, { - "Rank": 5, - "Command": "Get-PnPAlert -AllUsers", "Id": 326, + "Command": "Get-PnPAlert -AllUsers", + "Rank": 5, "CommandName": "Get-PnPAlert" }, { - "Rank": 6, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Id": 327, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Rank": 6, "CommandName": "Get-PnPAlert" }, { - "Rank": 1, - "Command": "Get-PnPApp", "Id": 328, + "Command": "Get-PnPApp", + "Rank": 1, "CommandName": "Get-PnPApp" }, { - "Rank": 2, - "Command": "Get-PnPApp -Scope Site", "Id": 329, + "Command": "Get-PnPApp -Scope Site", + "Rank": 2, "CommandName": "Get-PnPApp" }, { - "Rank": 3, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 330, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 3, "CommandName": "Get-PnPApp" }, { - "Rank": 1, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Id": 331, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "Rank": 1, "CommandName": "Get-PnPAppErrors" }, { - "Rank": 2, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Id": 332, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Rank": 2, "CommandName": "Get-PnPAppErrors" }, { - "Rank": 1, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Id": 333, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Rank": 1, "CommandName": "Get-PnPAppInfo" }, { - "Rank": 2, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 334, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 2, "CommandName": "Get-PnPAppInfo" }, { - "Rank": 3, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Id": 335, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Rank": 3, "CommandName": "Get-PnPAppInfo" }, { - "Rank": 1, - "Command": "Get-PnPApplicationCustomizer", "Id": 336, + "Command": "Get-PnPApplicationCustomizer", + "Rank": 1, "CommandName": "Get-PnPApplicationCustomizer" }, { - "Rank": 2, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 337, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2, "CommandName": "Get-PnPApplicationCustomizer" }, { - "Rank": 3, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Id": 338, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Rank": 3, "CommandName": "Get-PnPApplicationCustomizer" }, { - "Rank": 1, - "Command": "Get-PnPAuditing", "Id": 339, + "Command": "Get-PnPAuditing", + "Rank": 1, "CommandName": "Get-PnPAuditing" }, { - "Rank": 1, - "Command": "Get-PnPAuthenticationRealm", "Id": 340, + "Command": "Get-PnPAuthenticationRealm", + "Rank": 1, "CommandName": "Get-PnPAuthenticationRealm" }, { - "Rank": 2, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Id": 341, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Rank": 2, "CommandName": "Get-PnPAuthenticationRealm" }, { - "Rank": 1, - "Command": "Get-PnPAvailableLanguage", "Id": 342, + "Command": "Get-PnPAvailableLanguage", + "Rank": 1, "CommandName": "Get-PnPAvailableLanguage" }, { - "Rank": 1, - "Command": "Get-PnPAvailableSensitivityLabel", "Id": 343, + "Command": "Get-PnPAvailableSensitivityLabel", + "Rank": 1, "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Rank": 2, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Id": 344, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Rank": 2, "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Rank": 3, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Id": 345, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Rank": 3, "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "Rank": 1, - "Command": "Get-PnPAvailableSiteClassification", "Id": 346, + "Command": "Get-PnPAvailableSiteClassification", + "Rank": 1, "CommandName": "Get-PnPAvailableSiteClassification" }, { - "Rank": 1, - "Command": "Get-PnPAzureACSPrincipal", "Id": 347, + "Command": "Get-PnPAzureACSPrincipal", + "Rank": 1, "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Rank": 2, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Id": 348, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Rank": 2, "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Rank": 3, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Id": 349, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Rank": 3, "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Rank": 4, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Id": 350, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Rank": 4, "CommandName": "Get-PnPAzureACSPrincipal" }, { - "Rank": 1, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 351, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Rank": 2, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Id": 352, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Rank": 3, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Id": 353, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "Rank": 1, - "Command": "Get-PnPAzureADActivityReportSignIn", "Id": 354, + "Command": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Rank": 2, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Id": 355, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Rank": 3, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Id": 356, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "Rank": 1, - "Command": "Get-PnPAzureADApp", "Id": 357, + "Command": "Get-PnPAzureADApp", + "Rank": 1, "CommandName": "Get-PnPAzureADApp" }, { - "Rank": 2, - "Command": "Get-PnPAzureADApp -Identity MyApp", "Id": 358, + "Command": "Get-PnPAzureADApp -Identity MyApp", + "Rank": 2, "CommandName": "Get-PnPAzureADApp" }, { - "Rank": 3, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 359, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3, "CommandName": "Get-PnPAzureADApp" }, { - "Rank": 4, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Id": 360, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Rank": 4, "CommandName": "Get-PnPAzureADApp" }, { - "Rank": 1, - "Command": "Get-PnPAzureADAppPermission", "Id": 361, + "Command": "Get-PnPAzureADAppPermission", + "Rank": 1, "CommandName": "Get-PnPAzureADAppPermission" }, { - "Rank": 2, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Id": 362, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Rank": 2, "CommandName": "Get-PnPAzureADAppPermission" }, { - "Rank": 3, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 363, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 3, "CommandName": "Get-PnPAzureADAppPermission" }, { - "Rank": 1, - "Command": "Get-PnPAzureADAppSitePermission", "Id": 364, + "Command": "Get-PnPAzureADAppSitePermission", + "Rank": 1, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 2, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Id": 365, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Rank": 2, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 3, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Id": 366, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Rank": 3, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 4, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Id": 367, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Rank": 4, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 5, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Id": 368, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Rank": 5, "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "Rank": 1, - "Command": "Get-PnPAzureADGroup", "Id": 369, + "Command": "Get-PnPAzureADGroup", + "Rank": 1, "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 2, - "Command": "Get-PnPAzureADGroup -Identity $groupId", "Id": 370, + "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Rank": 2, "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 3, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Id": 371, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Rank": 3, "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 4, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Id": 372, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Rank": 4, "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 5, - "Command": "Get-PnPAzureADGroup -Identity $group", "Id": 373, + "Command": "Get-PnPAzureADGroup -Identity $group", + "Rank": 5, "CommandName": "Get-PnPAzureADGroup" }, { - "Rank": 1, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Id": 374, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Rank": 1, "CommandName": "Get-PnPAzureADGroupMember" }, { - "Rank": 2, - "Command": "Get-PnPAzureADGroupMember -Identity $group", "Id": 375, + "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Rank": 2, "CommandName": "Get-PnPAzureADGroupMember" }, { - "Rank": 1, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Id": 376, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Rank": 1, "CommandName": "Get-PnPAzureADGroupOwner" }, { - "Rank": 2, - "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Id": 377, + "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Rank": 2, "CommandName": "Get-PnPAzureADGroupOwner" }, { - "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipal", "Id": 378, + "Command": "Get-PnPAzureADServicePrincipal", + "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Id": 379, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 3, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Id": 380, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Rank": 3, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 4, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Id": 381, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Rank": 4, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 5, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Id": 382, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Rank": 5, "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 383, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Id": 384, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 1, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 385, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "Rank": 2, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Id": 386, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "Rank": 1, - "Command": "Get-PnPAzureADUser", "Id": 387, + "Command": "Get-PnPAzureADUser", + "Rank": 1, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 2, - "Command": "Get-PnPAzureADUser -EndIndex 50", "Id": 388, + "Command": "Get-PnPAzureADUser -EndIndex 50", + "Rank": 2, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 3, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Id": 389, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 3, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 4, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Id": 390, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Rank": 4, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 5, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Id": 391, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Rank": 5, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 6, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Id": 392, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Rank": 6, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 7, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Id": 393, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Rank": 7, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 8, - "Command": "Get-PnPAzureADUser -Delta", "Id": 394, + "Command": "Get-PnPAzureADUser -Delta", + "Rank": 8, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 9, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Id": 395, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Rank": 9, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 10, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Id": 396, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Rank": 10, "CommandName": "Get-PnPAzureADUser" }, { - "Rank": 1, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Id": 397, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Rank": 1, "CommandName": "Get-PnPAzureCertificate" }, { - "Rank": 2, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Id": 398, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Rank": 2, "CommandName": "Get-PnPAzureCertificate" }, { - "Rank": 3, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Id": 399, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Rank": 3, "CommandName": "Get-PnPAzureCertificate" }, { - "Rank": 1, - "Command": "Get-PnPBrowserIdleSignout", "Id": 400, + "Command": "Get-PnPBrowserIdleSignout", + "Rank": 1, "CommandName": "Get-PnPBrowserIdleSignout" }, { - "Rank": 1, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Id": 401, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Rank": 1, "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 2, - "Command": "Get-PnPBuiltInDesignPackageVisibility", "Id": 402, + "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2, "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 1, - "Command": "Get-PnPBuiltInSiteTemplateSettings", "Id": 403, + "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 2, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Id": 404, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Rank": 2, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 3, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Id": 405, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Rank": 3, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 4, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Id": 406, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 4, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 5, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Id": 407, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Rank": 5, "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 1, - "Command": "Get-PnPChangeLog", "Id": 408, + "Command": "Get-PnPChangeLog", + "Rank": 1, "CommandName": "Get-PnPChangeLog" }, { - "Rank": 2, - "Command": "Get-PnPChangeLog -Nightly", "Id": 409, + "Command": "Get-PnPChangeLog -Nightly", + "Rank": 2, "CommandName": "Get-PnPChangeLog" }, { - "Rank": 1, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Id": 410, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "Rank": 1, "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "Rank": 2, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Id": 411, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Rank": 2, "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "Rank": 1, - "Command": "Get-PnPContentType", "Id": 412, + "Command": "Get-PnPContentType", + "Rank": 1, "CommandName": "Get-PnPContentType" }, { - "Rank": 2, - "Command": "Get-PnPContentType -InSiteHierarchy", "Id": 413, + "Command": "Get-PnPContentType -InSiteHierarchy", + "Rank": 2, "CommandName": "Get-PnPContentType" }, { - "Rank": 3, - "Command": "Get-PnPContentType -Identity \"Project Document\"", "Id": 414, + "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Rank": 3, "CommandName": "Get-PnPContentType" }, { - "Rank": 4, - "Command": "Get-PnPContentType -List \"Documents\"", "Id": 415, + "Command": "Get-PnPContentType -List \"Documents\"", + "Rank": 4, "CommandName": "Get-PnPContentType" }, { - "Rank": 1, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Id": 416, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "Rank": 1, "CommandName": "Get-PnPContentTypePublishingStatus" }, { - "Rank": 1, - "Command": "Get-PnPCustomAction", "Id": 417, + "Command": "Get-PnPCustomAction", + "Rank": 1, "CommandName": "Get-PnPCustomAction" }, { - "Rank": 2, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 418, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 2, "CommandName": "Get-PnPCustomAction" }, { - "Rank": 3, - "Command": "Get-PnPCustomAction -Scope web", "Id": 419, + "Command": "Get-PnPCustomAction -Scope web", + "Rank": 3, "CommandName": "Get-PnPCustomAction" }, { - "Rank": 1, - "Command": "Get-PnPDeletedMicrosoft365Group", "Id": 420, + "Command": "Get-PnPDeletedMicrosoft365Group", + "Rank": 1, "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "Rank": 2, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 421, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 2, "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "Rank": 1, - "Command": "Get-PnPDeletedTeam", "Id": 422, + "Command": "Get-PnPDeletedTeam", + "Rank": 1, "CommandName": "Get-PnPDeletedTeam" }, { - "Rank": 1, - "Command": "Get-PnPDiagnostics", "Id": 423, + "Command": "Get-PnPDiagnostics", + "Rank": 1, "CommandName": "Get-PnPDiagnostics" }, { - "Rank": 1, - "Command": "Get-PnPDisableSpacesActivation", "Id": 424, + "Command": "Get-PnPDisableSpacesActivation", + "Rank": 1, "CommandName": "Get-PnPDisableSpacesActivation" }, { - "Rank": 1, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Id": 425, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "Rank": 1, "CommandName": "Get-PnPDocumentSetTemplate" }, { - "Rank": 2, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Id": 426, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "Rank": 2, "CommandName": "Get-PnPDocumentSetTemplate" }, { - "Rank": 1, - "Command": "Get-PnPEventReceiver", "Id": 427, + "Command": "Get-PnPEventReceiver", + "Rank": 1, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 2, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 428, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 3, - "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Id": 429, + "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "Rank": 3, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 4, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Id": 430, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "Rank": 4, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 5, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 431, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 5, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 6, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Id": 432, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "Rank": 6, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 7, - "Command": "Get-PnPEventReceiver -Scope Site", "Id": 433, + "Command": "Get-PnPEventReceiver -Scope Site", + "Rank": 7, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 8, - "Command": "Get-PnPEventReceiver -Scope Web", "Id": 434, + "Command": "Get-PnPEventReceiver -Scope Web", + "Rank": 8, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 9, - "Command": "Get-PnPEventReceiver -Scope All", "Id": 435, + "Command": "Get-PnPEventReceiver -Scope All", + "Rank": 9, "CommandName": "Get-PnPEventReceiver" }, { - "Rank": 1, - "Command": "Get-PnPException", "Id": 436, + "Command": "Get-PnPException", + "Rank": 1, "CommandName": "Get-PnPException" }, { - "Rank": 2, - "Command": "Get-PnPException -All", "Id": 437, + "Command": "Get-PnPException -All", + "Rank": 2, "CommandName": "Get-PnPException" }, { - "Rank": 1, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Id": 438, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "Rank": 1, "CommandName": "Get-PnPExternalUser" }, { - "Rank": 2, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Id": 439, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "Rank": 2, "CommandName": "Get-PnPExternalUser" }, { - "Rank": 1, - "Command": "Get-PnPFeature", "Id": 440, + "Command": "Get-PnPFeature", + "Rank": 1, "CommandName": "Get-PnPFeature" }, { - "Rank": 2, - "Command": "Get-PnPFeature -Scope Site", "Id": 441, + "Command": "Get-PnPFeature -Scope Site", + "Rank": 2, "CommandName": "Get-PnPFeature" }, { - "Rank": 3, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 442, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 3, "CommandName": "Get-PnPFeature" }, { - "Rank": 4, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Id": 443, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "Rank": 4, "CommandName": "Get-PnPFeature" }, { - "Rank": 1, - "Command": "Get-PnPField", "Id": 444, + "Command": "Get-PnPField", + "Rank": 1, "CommandName": "Get-PnPField" }, { - "Rank": 2, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Id": 445, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2, "CommandName": "Get-PnPField" }, { - "Rank": 3, - "Command": "Get-PnPField -Group \"Custom Columns\"", "Id": 446, + "Command": "Get-PnPField -Group \"Custom Columns\"", + "Rank": 3, "CommandName": "Get-PnPField" }, { - "Rank": 1, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Id": 447, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "Rank": 1, "CommandName": "Get-PnPFile" }, { - "Rank": 2, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Id": 448, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "Rank": 2, "CommandName": "Get-PnPFile" }, { - "Rank": 3, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Id": 449, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "Rank": 3, "CommandName": "Get-PnPFile" }, { - "Rank": 4, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Id": 450, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "Rank": 4, "CommandName": "Get-PnPFile" }, { - "Rank": 5, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Id": 451, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "Rank": 5, "CommandName": "Get-PnPFile" }, { - "Rank": 6, - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Id": 452, + "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, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Id": 453, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "Rank": 7, "CommandName": "Get-PnPFile" }, { - "Rank": 1, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 454, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "CommandName": "Get-PnPFileSharingLink" }, { - "Rank": 1, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Id": 455, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "Rank": 1, "CommandName": "Get-PnPFileVersion" }, { - "Rank": 2, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Id": 456, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "Rank": 2, "CommandName": "Get-PnPFileVersion" }, { - "Rank": 1, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Id": 457, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "Rank": 1, "CommandName": "Get-PnPFlow" }, { - "Rank": 1, - "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Id": 458, + "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "Rank": 1, "CommandName": "Get-PnPFolder" }, { - "Rank": 2, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Id": 459, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "Rank": 2, "CommandName": "Get-PnPFolder" }, { - "Rank": 3, - "Command": "Get-PnPFolder -List \"Shared Documents\"", "Id": 460, + "Command": "Get-PnPFolder -List \"Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPFolder" }, { - "Rank": 1, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\"", "Id": 461, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\"", + "Rank": 1, "CommandName": "Get-PnPFolderItem" }, { - "Rank": 2, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Id": 462, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Rank": 2, "CommandName": "Get-PnPFolderItem" }, { - "Rank": 3, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Id": 463, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "Rank": 3, "CommandName": "Get-PnPFolderItem" }, { - "Rank": 4, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType File", "Id": 464, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType File", + "Rank": 4, "CommandName": "Get-PnPFolderItem" }, { - "Rank": 5, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Id": 465, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Rank": 5, "CommandName": "Get-PnPFolderItem" }, { - "Rank": 1, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 466, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "CommandName": "Get-PnPFolderSharingLink" }, { - "Rank": 1, - "Command": "Get-PnPFolderStorageMetric", "Id": 467, + "Command": "Get-PnPFolderStorageMetric", + "Rank": 1, "CommandName": "Get-PnPFolderStorageMetric" }, { - "Rank": 2, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Id": 468, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "Rank": 2, "CommandName": "Get-PnPFolderStorageMetric" }, { - "Rank": 3, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Id": 469, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPFolderStorageMetric" }, { - "Rank": 1, - "Command": "Get-PnPFooter", "Id": 470, + "Command": "Get-PnPFooter", + "Rank": 1, "CommandName": "Get-PnPFooter" }, { - "Rank": 1, - "Command": "Get-PnPGraphAccessToken", "Id": 471, + "Command": "Get-PnPGraphAccessToken", + "Rank": 1, "CommandName": "Get-PnPGraphAccessToken" }, { - "Rank": 2, - "Command": "Get-PnPGraphAccessToken -Decoded", "Id": 472, + "Command": "Get-PnPGraphAccessToken -Decoded", + "Rank": 2, "CommandName": "Get-PnPGraphAccessToken" }, { - "Rank": 1, - "Command": "Get-PnPGraphSubscription", "Id": 473, + "Command": "Get-PnPGraphSubscription", + "Rank": 1, "CommandName": "Get-PnPGraphSubscription" }, { - "Rank": 2, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Id": 474, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Rank": 2, "CommandName": "Get-PnPGraphSubscription" }, { - "Rank": 1, - "Command": "Get-PnPGroup", "Id": 475, + "Command": "Get-PnPGroup", + "Rank": 1, "CommandName": "Get-PnPGroup" }, { - "Rank": 2, - "Command": "Get-PnPGroup -Identity 'My Site Users'", "Id": 476, + "Command": "Get-PnPGroup -Identity 'My Site Users'", + "Rank": 2, "CommandName": "Get-PnPGroup" }, { - "Rank": 3, - "Command": "Get-PnPGroup -AssociatedMemberGroup", "Id": 477, + "Command": "Get-PnPGroup -AssociatedMemberGroup", + "Rank": 3, "CommandName": "Get-PnPGroup" }, { - "Rank": 1, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Id": 478, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "Rank": 1, "CommandName": "Get-PnPGroupMember" }, { - "Rank": 2, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Id": 479, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "Rank": 2, "CommandName": "Get-PnPGroupMember" }, { - "Rank": 1, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Id": 480, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "Rank": 1, "CommandName": "Get-PnPGroupPermissions" }, { - "Rank": 1, - "Command": "Get-PnPHideDefaultThemes", "Id": 481, + "Command": "Get-PnPHideDefaultThemes", + "Rank": 1, "CommandName": "Get-PnPHideDefaultThemes" }, { - "Rank": 1, - "Command": "Get-PnPHomePage", "Id": 482, + "Command": "Get-PnPHomePage", + "Rank": 1, "CommandName": "Get-PnPHomePage" }, { - "Rank": 1, - "Command": "Get-PnPHomeSite", "Id": 483, + "Command": "Get-PnPHomeSite", + "Rank": 1, "CommandName": "Get-PnPHomeSite" }, { - "Rank": 2, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Id": 484, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "Rank": 2, "CommandName": "Get-PnPHomeSite" }, { - "Rank": 3, - "Command": "Get-PnPHomeSite -Detailed", "Id": 485, + "Command": "Get-PnPHomeSite -Detailed", + "Rank": 3, "CommandName": "Get-PnPHomeSite" }, { - "Rank": 1, - "Command": "Get-PnPHubSite", "Id": 486, + "Command": "Get-PnPHubSite", + "Rank": 1, "CommandName": "Get-PnPHubSite" }, { - "Rank": 2, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 487, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2, "CommandName": "Get-PnPHubSite" }, { - "Rank": 3, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Id": 488, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "Rank": 3, "CommandName": "Get-PnPHubSite" }, { - "Rank": 1, - "Command": "Get-PnPHubSiteChild", "Id": 489, + "Command": "Get-PnPHubSiteChild", + "Rank": 1, "CommandName": "Get-PnPHubSiteChild" }, { - "Rank": 2, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 490, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Rank": 2, "CommandName": "Get-PnPHubSiteChild" }, { - "Rank": 1, - "Command": "Get-PnPInPlaceRecordsManagement", "Id": 491, + "Command": "Get-PnPInPlaceRecordsManagement", + "Rank": 1, "CommandName": "Get-PnPInPlaceRecordsManagement" }, { - "Rank": 1, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Id": 492, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "Rank": 1, "CommandName": "Get-PnPIsSiteAliasAvailable" }, { - "Rank": 1, - "Command": "Get-PnPJavaScriptLink", "Id": 493, + "Command": "Get-PnPJavaScriptLink", + "Rank": 1, "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 2, - "Command": "Get-PnPJavaScriptLink -Scope All", "Id": 494, + "Command": "Get-PnPJavaScriptLink -Scope All", + "Rank": 2, "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 3, - "Command": "Get-PnPJavaScriptLink -Scope Web", "Id": 495, + "Command": "Get-PnPJavaScriptLink -Scope Web", + "Rank": 3, "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 4, - "Command": "Get-PnPJavaScriptLink -Scope Site", "Id": 496, + "Command": "Get-PnPJavaScriptLink -Scope Site", + "Rank": 4, "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 5, - "Command": "Get-PnPJavaScriptLink -Name Test", "Id": 497, + "Command": "Get-PnPJavaScriptLink -Name Test", + "Rank": 5, "CommandName": "Get-PnPJavaScriptLink" }, { - "Rank": 1, - "Command": "Get-PnPKnowledgeHubSite", "Id": 498, + "Command": "Get-PnPKnowledgeHubSite", + "Rank": 1, "CommandName": "Get-PnPKnowledgeHubSite" }, { - "Rank": 1, - "Command": "Get-PnPLabel", "Id": 499, + "Command": "Get-PnPLabel", + "Rank": 1, "CommandName": "Get-PnPLabel" }, { - "Rank": 2, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Id": 500, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "Rank": 2, "CommandName": "Get-PnPLabel" }, { - "Rank": 1, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Id": 501, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "Rank": 1, "CommandName": "Get-PnPLargeListOperationStatus" }, { - "Rank": 1, - "Command": "Get-PnPList", "Id": 502, + "Command": "Get-PnPList", + "Rank": 1, "CommandName": "Get-PnPList" }, { - "Rank": 2, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 503, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 2, "CommandName": "Get-PnPList" }, { - "Rank": 3, - "Command": "Get-PnPList -Identity Lists/Announcements", "Id": 504, + "Command": "Get-PnPList -Identity Lists/Announcements", + "Rank": 3, "CommandName": "Get-PnPList" }, { - "Rank": 4, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Id": 505, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "Rank": 4, "CommandName": "Get-PnPList" }, { - "Rank": 5, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Id": 506, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "Rank": 5, "CommandName": "Get-PnPList" }, { - "Rank": 1, - "Command": "Get-PnPListDesign", "Id": 507, + "Command": "Get-PnPListDesign", + "Rank": 1, "CommandName": "Get-PnPListDesign" }, { - "Rank": 2, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 508, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2, "CommandName": "Get-PnPListDesign" }, { - "Rank": 3, - "Command": "Get-PnPListDesign -Identity ListEvent", "Id": 509, + "Command": "Get-PnPListDesign -Identity ListEvent", + "Rank": 3, "CommandName": "Get-PnPListDesign" }, { - "Rank": 1, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Id": 510, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "Rank": 1, "CommandName": "Get-PnPListInformationRightsManagement" }, { - "Rank": 1, - "Command": "Get-PnPListItem -List Tasks", "Id": 511, + "Command": "Get-PnPListItem -List Tasks", + "Rank": 1, "CommandName": "Get-PnPListItem" }, { - "Rank": 2, - "Command": "Get-PnPListItem -List Tasks -Id 1", "Id": 512, + "Command": "Get-PnPListItem -List Tasks -Id 1", + "Rank": 2, "CommandName": "Get-PnPListItem" }, { - "Rank": 3, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Id": 513, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "Rank": 3, "CommandName": "Get-PnPListItem" }, { - "Rank": 4, - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Id": 514, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "Rank": 4, "CommandName": "Get-PnPListItem" }, { - "Rank": 5, - "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Id": 515, + "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "Rank": 5, "CommandName": "Get-PnPListItem" }, { - "Rank": 6, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Id": 516, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "Rank": 6, "CommandName": "Get-PnPListItem" }, { - "Rank": 7, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Id": 517, + "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, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Id": 518, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "Rank": 8, "CommandName": "Get-PnPListItem" }, { - "Rank": 9, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Id": 519, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "Rank": 9, "CommandName": "Get-PnPListItem" }, { - "Rank": 1, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Id": 520, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "Rank": 1, "CommandName": "Get-PnPListItemComment" }, { - "Rank": 1, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Id": 521, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "Rank": 1, "CommandName": "Get-PnPListItemPermission" }, { - "Rank": 1, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Id": 522, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "Rank": 1, "CommandName": "Get-PnPListItemVersion" }, { - "Rank": 1, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Id": 523, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "Rank": 1, "CommandName": "Get-PnPListPermissions" }, { - "Rank": 2, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Id": 524, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "Rank": 2, "CommandName": "Get-PnPListPermissions" }, { - "Rank": 1, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Id": 525, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "Rank": 1, "CommandName": "Get-PnPListRecordDeclaration" }, { - "Rank": 1, - "Command": "Get-PnPMasterPage", "Id": 526, + "Command": "Get-PnPMasterPage", + "Rank": 1, "CommandName": "Get-PnPMasterPage" }, { - "Rank": 1, - "Command": "Get-PnPMessageCenterAnnouncement", "Id": 527, + "Command": "Get-PnPMessageCenterAnnouncement", + "Rank": 1, "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "Rank": 2, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Id": 528, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "Rank": 2, "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365ExpiringGroup", "Id": 529, + "Command": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Id": 530, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365Group", "Id": 531, + "Command": "Get-PnPMicrosoft365Group", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Id": 532, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Id": 533, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 4, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Id": 534, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "Rank": 4, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 5, - "Command": "Get-PnPMicrosoft365Group -Identity $group", "Id": 535, + "Command": "Get-PnPMicrosoft365Group -Identity $group", + "Rank": 5, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 6, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Id": 536, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "Rank": 6, "CommandName": "Get-PnPMicrosoft365Group" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupEndpoint", "Id": 537, + "Command": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Id": 538, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 539, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Id": 540, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Id": 541, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Id": 542, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Id": 543, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Id": 544, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettings", "Id": 545, + "Command": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Id": 546, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 547, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Id": 548, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupTeam", "Id": 549, + "Command": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Id": 550, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 551, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "Rank": 1, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 552, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Rank": 2, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Id": 553, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Rank": 3, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 554, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "Rank": 1, - "Command": "Get-PnPNavigationNode", "Id": 555, + "Command": "Get-PnPNavigationNode", + "Rank": 1, "CommandName": "Get-PnPNavigationNode" }, { - "Rank": 2, - "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Id": 556, + "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "Rank": 2, "CommandName": "Get-PnPNavigationNode" }, { - "Rank": 3, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Id": 557, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "Rank": 3, "CommandName": "Get-PnPNavigationNode" }, { - "Rank": 1, - "Command": "Get-PnPOrgAssetsLibrary", "Id": 558, + "Command": "Get-PnPOrgAssetsLibrary", + "Rank": 1, "CommandName": "Get-PnPOrgAssetsLibrary" }, { - "Rank": 1, - "Command": "Get-PnPOrgNewsSite", "Id": 559, + "Command": "Get-PnPOrgNewsSite", + "Rank": 1, "CommandName": "Get-PnPOrgNewsSite" }, { - "Rank": 1, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Id": 560, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "Rank": 1, "CommandName": "Get-PnPPage" }, { - "Rank": 2, - "Command": "Get-PnPPage \"MyPage\"", "Id": 561, + "Command": "Get-PnPPage \"MyPage\"", + "Rank": 2, "CommandName": "Get-PnPPage" }, { - "Rank": 3, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Id": 562, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "Rank": 3, "CommandName": "Get-PnPPage" }, { - "Rank": 4, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Id": 563, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "Rank": 4, "CommandName": "Get-PnPPage" }, { - "Rank": 1, - "Command": "Get-PnPPageComponent -Page Home", "Id": 564, + "Command": "Get-PnPPageComponent -Page Home", + "Rank": 1, "CommandName": "Get-PnPPageComponent" }, { - "Rank": 2, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 565, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 2, "CommandName": "Get-PnPPageComponent" }, { - "Rank": 3, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Id": 566, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "Rank": 3, "CommandName": "Get-PnPPageComponent" }, { - "Rank": 1, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 567, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1, "CommandName": "Get-PnPPlannerBucket" }, { - "Rank": 1, - "Command": "Get-PnPPlannerConfiguration", "Id": 568, + "Command": "Get-PnPPlannerConfiguration", + "Rank": 1, "CommandName": "Get-PnPPlannerConfiguration" }, { - "Rank": 1, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Id": 569, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "Rank": 1, "CommandName": "Get-PnPPlannerPlan" }, { - "Rank": 2, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Id": 570, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "Rank": 2, "CommandName": "Get-PnPPlannerPlan" }, { - "Rank": 3, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Id": 571, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "Rank": 3, "CommandName": "Get-PnPPlannerPlan" }, { - "Rank": 1, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Id": 572, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Rank": 1, "CommandName": "Get-PnPPlannerRosterMember" }, { - "Rank": 1, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Id": 573, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "Rank": 1, "CommandName": "Get-PnPPlannerRosterPlan" }, { - "Rank": 2, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 574, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 2, "CommandName": "Get-PnPPlannerRosterPlan" }, { - "Rank": 1, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 575, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "Rank": 1, "CommandName": "Get-PnPPlannerTask" }, { - "Rank": 2, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Id": 576, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 2, "CommandName": "Get-PnPPlannerTask" }, { - "Rank": 3, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Id": 577, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Rank": 3, "CommandName": "Get-PnPPlannerTask" }, { - "Rank": 1, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Id": 578, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Get-PnPPlannerUserPolicy" }, { - "Rank": 1, - "Command": "Get-PnPPowerPlatformEnvironment", "Id": 579, + "Command": "Get-PnPPowerPlatformEnvironment", + "Rank": 1, "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Rank": 2, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Id": 580, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "Rank": 2, "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Rank": 3, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Id": 581, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "Rank": 3, "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "Rank": 1, - "Command": "Get-PnPPowerShellTelemetryEnabled", "Id": 582, + "Command": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1, "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { - "Rank": 1, - "Command": "Get-PnPPropertyBag", "Id": 583, + "Command": "Get-PnPPropertyBag", + "Rank": 1, "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 2, - "Command": "Get-PnPPropertyBag -Key MyKey", "Id": 584, + "Command": "Get-PnPPropertyBag -Key MyKey", + "Rank": 2, "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 3, - "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Id": 585, + "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "Rank": 3, "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 4, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Id": 586, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "Rank": 4, "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 5, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Id": 587, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "Rank": 5, "CommandName": "Get-PnPPropertyBag" }, { - "Rank": 1, - "Command": "Get-PnPPublishingImageRendition", "Id": 588, + "Command": "Get-PnPPublishingImageRendition", + "Rank": 1, "CommandName": "Get-PnPPublishingImageRendition" }, { - "Rank": 2, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Id": 589, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "Rank": 2, "CommandName": "Get-PnPPublishingImageRendition" }, { - "Rank": 3, - "Command": "Get-PnPPublishingImageRendition -Identity 2", "Id": 590, + "Command": "Get-PnPPublishingImageRendition -Identity 2", + "Rank": 3, "CommandName": "Get-PnPPublishingImageRendition" }, { - "Rank": 1, - "Command": "Get-PnPRecycleBinItem", "Id": 591, + "Command": "Get-PnPRecycleBinItem", + "Rank": 1, "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 2, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Id": 592, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "Rank": 2, "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 3, - "Command": "Get-PnPRecycleBinItem -FirstStage", "Id": 593, + "Command": "Get-PnPRecycleBinItem -FirstStage", + "Rank": 3, "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 4, - "Command": "Get-PnPRecycleBinItem -SecondStage", "Id": 594, + "Command": "Get-PnPRecycleBinItem -SecondStage", + "Rank": 4, "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 5, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Id": 595, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "Rank": 5, "CommandName": "Get-PnPRecycleBinItem" }, { - "Rank": 1, - "Command": "Get-PnPRequestAccessEmails", "Id": 596, + "Command": "Get-PnPRequestAccessEmails", + "Rank": 1, "CommandName": "Get-PnPRequestAccessEmails" }, { - "Rank": 1, - "Command": "Get-PnPRoleDefinition", "Id": 597, + "Command": "Get-PnPRoleDefinition", + "Rank": 1, "CommandName": "Get-PnPRoleDefinition" }, { - "Rank": 2, - "Command": "Get-PnPRoleDefinition -Identity Read", "Id": 598, + "Command": "Get-PnPRoleDefinition -Identity Read", + "Rank": 2, "CommandName": "Get-PnPRoleDefinition" }, { - "Rank": 3, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Id": 599, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "Rank": 3, "CommandName": "Get-PnPRoleDefinition" }, { - "Rank": 1, - "Command": "Get-PnPSearchConfiguration", "Id": 600, + "Command": "Get-PnPSearchConfiguration", + "Rank": 1, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 2, - "Command": "Get-PnPSearchConfiguration -Scope Site", "Id": 601, + "Command": "Get-PnPSearchConfiguration -Scope Site", + "Rank": 2, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 3, - "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Id": 602, + "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "Rank": 3, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 4, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 603, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 5, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Id": 604, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "Rank": 5, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 6, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Id": 605, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "Rank": 6, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 7, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Id": 606, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "Rank": 7, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 8, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Id": 607, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "Rank": 8, "CommandName": "Get-PnPSearchConfiguration" }, { - "Rank": 1, - "Command": "Get-PnPSearchCrawlLog", "Id": 608, + "Command": "Get-PnPSearchCrawlLog", + "Rank": 1, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 2, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Id": 609, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "Rank": 2, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 3, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Id": 610, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "Rank": 3, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 4, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Id": 611, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "Rank": 4, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 5, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Id": 612, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "Rank": 5, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 6, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Id": 613, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "Rank": 6, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 7, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Id": 614, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "Rank": 7, "CommandName": "Get-PnPSearchCrawlLog" }, { - "Rank": 1, - "Command": "Get-PnPSearchSettings", "Id": 615, + "Command": "Get-PnPSearchSettings", + "Rank": 1, "CommandName": "Get-PnPSearchSettings" }, { - "Rank": 1, - "Command": "Get-PnPServiceCurrentHealth", "Id": 616, + "Command": "Get-PnPServiceCurrentHealth", + "Rank": 1, "CommandName": "Get-PnPServiceCurrentHealth" }, { - "Rank": 2, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Id": 617, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "Rank": 2, "CommandName": "Get-PnPServiceCurrentHealth" }, { - "Rank": 1, - "Command": "Get-PnPServiceHealthIssue", "Id": 618, + "Command": "Get-PnPServiceHealthIssue", + "Rank": 1, "CommandName": "Get-PnPServiceHealthIssue" }, { - "Rank": 2, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Id": 619, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "Rank": 2, "CommandName": "Get-PnPServiceHealthIssue" }, { - "Rank": 1, - "Command": "Get-PnPSharePointAddIn", "Id": 620, + "Command": "Get-PnPSharePointAddIn", + "Rank": 1, "CommandName": "Get-PnPSharePointAddIn" }, { - "Rank": 2, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Id": 621, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "Rank": 2, "CommandName": "Get-PnPSharePointAddIn" }, { - "Rank": 1, - "Command": "Get-PnPSharingForNonOwnersOfSite", "Id": 622, + "Command": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1, "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { - "Rank": 1, - "Command": "Get-PnPSite", "Id": 623, + "Command": "Get-PnPSite", + "Rank": 1, "CommandName": "Get-PnPSite" }, { - "Rank": 2, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Id": 624, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "Rank": 2, "CommandName": "Get-PnPSite" }, { - "Rank": 1, - "Command": "Get-PnPSiteClosure", "Id": 625, + "Command": "Get-PnPSiteClosure", + "Rank": 1, "CommandName": "Get-PnPSiteClosure" }, { - "Rank": 1, - "Command": "Get-PnPSiteCollectionAdmin", "Id": 626, + "Command": "Get-PnPSiteCollectionAdmin", + "Rank": 1, "CommandName": "Get-PnPSiteCollectionAdmin" }, { - "Rank": 1, - "Command": "Get-PnPSiteCollectionAppCatalog", "Id": 627, + "Command": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1, "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Rank": 2, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Id": 628, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "Rank": 2, "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Rank": 3, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Id": 629, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "Rank": 3, "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "Rank": 1, - "Command": "Get-PnPSiteCollectionTermStore", "Id": 630, + "Command": "Get-PnPSiteCollectionTermStore", + "Rank": 1, "CommandName": "Get-PnPSiteCollectionTermStore" }, { - "Rank": 1, - "Command": "Get-PnPSiteDesign", "Id": 631, + "Command": "Get-PnPSiteDesign", + "Rank": 1, "CommandName": "Get-PnPSiteDesign" }, { - "Rank": 2, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 632, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2, "CommandName": "Get-PnPSiteDesign" }, { - "Rank": 1, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 633, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Get-PnPSiteDesignRights" }, { - "Rank": 1, - "Command": "Get-PnPSiteDesignRun", "Id": 634, + "Command": "Get-PnPSiteDesignRun", + "Rank": 1, "CommandName": "Get-PnPSiteDesignRun" }, { - "Rank": 2, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Id": 635, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "Rank": 2, "CommandName": "Get-PnPSiteDesignRun" }, { - "Rank": 1, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Id": 636, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "Rank": 1, "CommandName": "Get-PnPSiteDesignTask" }, { - "Rank": 2, - "Command": "Get-PnPSiteDesignTask", "Id": 637, + "Command": "Get-PnPSiteDesignTask", + "Rank": 2, "CommandName": "Get-PnPSiteDesignTask" }, { - "Rank": 3, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 638, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Rank": 3, "CommandName": "Get-PnPSiteDesignTask" }, { - "Rank": 1, - "Command": "Get-PnPSiteGroup", "Id": 639, + "Command": "Get-PnPSiteGroup", + "Rank": 1, "CommandName": "Get-PnPSiteGroup" }, { - "Rank": 2, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Id": 640, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 2, "CommandName": "Get-PnPSiteGroup" }, { - "Rank": 3, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Id": 641, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "Rank": 3, "CommandName": "Get-PnPSiteGroup" }, { - "Rank": 4, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Id": 642, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Rank": 4, "CommandName": "Get-PnPSiteGroup" }, { - "Rank": 1, - "Command": "Get-PnPSitePolicy", "Id": 643, + "Command": "Get-PnPSitePolicy", + "Rank": 1, "CommandName": "Get-PnPSitePolicy" }, { - "Rank": 2, - "Command": "Get-PnPSitePolicy -AllAvailable", "Id": 644, + "Command": "Get-PnPSitePolicy -AllAvailable", + "Rank": 2, "CommandName": "Get-PnPSitePolicy" }, { - "Rank": 3, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Id": 645, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 3, "CommandName": "Get-PnPSitePolicy" }, { - "Rank": 1, - "Command": "Get-PnPSiteScript", "Id": 646, + "Command": "Get-PnPSiteScript", + "Rank": 1, "CommandName": "Get-PnPSiteScript" }, { - "Rank": 2, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 647, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 2, "CommandName": "Get-PnPSiteScript" }, { - "Rank": 1, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Id": 648, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "Rank": 1, "CommandName": "Get-PnPSiteScriptFromList" }, { - "Rank": 2, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Id": 649, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "Rank": 2, "CommandName": "Get-PnPSiteScriptFromList" }, { - "Rank": 3, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Id": 650, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "Rank": 3, "CommandName": "Get-PnPSiteScriptFromList" }, { - "Rank": 1, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Id": 651, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "Rank": 1, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 2, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Id": 652, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "Rank": 2, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 3, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Id": 653, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "Rank": 3, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 4, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Id": 654, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "Rank": 4, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 5, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Id": 655, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "Rank": 5, "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "Rank": 6, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Id": 656, + "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, - "Command": "Get-PnPSiteSearchQueryResults", "Id": 657, + "Command": "Get-PnPSiteSearchQueryResults", + "Rank": 1, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 2, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Id": 658, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "Rank": 2, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 3, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Id": 659, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "Rank": 3, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 4, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Id": 660, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "Rank": 4, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 5, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Id": 661, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "Rank": 5, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 6, - "Command": "Get-PnPSiteSearchQueryResults -All", "Id": 662, + "Command": "Get-PnPSiteSearchQueryResults -All", + "Rank": 6, "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "Rank": 1, - "Command": "Get-PnPSiteSensitivityLabel", "Id": 663, + "Command": "Get-PnPSiteSensitivityLabel", + "Rank": 1, "CommandName": "Get-PnPSiteSensitivityLabel" }, { - "Rank": 1, - "Command": "Get-PnPSiteTemplate -Out template.pnp", "Id": 664, + "Command": "Get-PnPSiteTemplate -Out template.pnp", + "Rank": 1, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 2, - "Command": "Get-PnPSiteTemplate -Out template.xml", "Id": 665, + "Command": "Get-PnPSiteTemplate -Out template.xml", + "Rank": 2, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 3, - "Command": "Get-PnPSiteTemplate -Out template.md", "Id": 666, + "Command": "Get-PnPSiteTemplate -Out template.md", + "Rank": 3, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 4, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Id": 667, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "Rank": 4, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 5, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Id": 668, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "Rank": 5, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 6, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Id": 669, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "Rank": 6, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 7, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Id": 670, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "Rank": 7, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 8, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Id": 671, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "Rank": 8, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 9, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Id": 672, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "Rank": 9, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 10, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Id": 673, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "Rank": 10, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 11, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Id": 674, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "Rank": 11, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 12, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Id": 675, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "Rank": 12, "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\"", "Id": 676, + "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, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Id": 677, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "Rank": 14, "CommandName": "Get-PnPSiteTemplate" }, { - "Rank": 1, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Id": 678, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1, "CommandName": "Get-PnPSiteUserInvitations" }, { - "Rank": 1, - "Command": "Get-PnPStorageEntity", "Id": 679, + "Command": "Get-PnPStorageEntity", + "Rank": 1, "CommandName": "Get-PnPStorageEntity" }, { - "Rank": 2, - "Command": "Get-PnPStorageEntity -Key MyKey", "Id": 680, + "Command": "Get-PnPStorageEntity -Key MyKey", + "Rank": 2, "CommandName": "Get-PnPStorageEntity" }, { - "Rank": 3, - "Command": "Get-PnPStorageEntity -Scope Site", "Id": 681, + "Command": "Get-PnPStorageEntity -Scope Site", + "Rank": 3, "CommandName": "Get-PnPStorageEntity" }, { - "Rank": 4, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Id": 682, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 4, "CommandName": "Get-PnPStorageEntity" }, { - "Rank": 1, - "Command": "Get-PnPStoredCredential -Name O365", "Id": 683, + "Command": "Get-PnPStoredCredential -Name O365", + "Rank": 1, "CommandName": "Get-PnPStoredCredential" }, { - "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 684, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { - "Rank": 1, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 685, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { - "Rank": 1, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Id": 686, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "Rank": 1, "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { - "Rank": 1, - "Command": "Get-PnPSubWeb", "Id": 687, + "Command": "Get-PnPSubWeb", + "Rank": 1, "CommandName": "Get-PnPSubWeb" }, { - "Rank": 2, - "Command": "Get-PnPSubWeb -Recurse", "Id": 688, + "Command": "Get-PnPSubWeb -Recurse", + "Rank": 2, "CommandName": "Get-PnPSubWeb" }, { - "Rank": 3, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Id": 689, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "Rank": 3, "CommandName": "Get-PnPSubWeb" }, { - "Rank": 4, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Id": 690, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "Rank": 4, "CommandName": "Get-PnPSubWeb" }, { - "Rank": 5, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Id": 691, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "Rank": 5, "CommandName": "Get-PnPSubWeb" }, { - "Rank": 1, - "Command": "Get-PnPSyntexModel", "Id": 692, + "Command": "Get-PnPSyntexModel", + "Rank": 1, "CommandName": "Get-PnPSyntexModel" }, { - "Rank": 2, - "Command": "Get-PnPSyntexModel -Identity 1", "Id": 693, + "Command": "Get-PnPSyntexModel -Identity 1", + "Rank": 2, "CommandName": "Get-PnPSyntexModel" }, { - "Rank": 3, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Id": 694, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "Rank": 3, "CommandName": "Get-PnPSyntexModel" }, { - "Rank": 1, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Id": 695, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "Rank": 1, "CommandName": "Get-PnPSyntexModelPublication" }, { - "Rank": 1, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Id": 696, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "Rank": 1, "CommandName": "Get-PnPTaxonomyItem" }, { - "Rank": 1, - "Command": "Get-PnPTeamsApp", "Id": 697, + "Command": "Get-PnPTeamsApp", + "Rank": 1, "CommandName": "Get-PnPTeamsApp" }, { - "Rank": 2, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Id": 698, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "Rank": 2, "CommandName": "Get-PnPTeamsApp" }, { - "Rank": 3, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Id": 699, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "Rank": 3, "CommandName": "Get-PnPTeamsApp" }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Id": 700, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "Rank": 1, "CommandName": "Get-PnPTeamsChannel" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Id": 701, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "Rank": 2, "CommandName": "Get-PnPTeamsChannel" }, { - "Rank": 3, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Id": 702, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Rank": 3, "CommandName": "Get-PnPTeamsChannel" }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Id": 703, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "Rank": 1, "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Id": 704, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Rank": 2, "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Id": 705, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessage" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Id": 706, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessage" }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Id": 707, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Id": 708, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "Rank": 1, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Id": 709, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 1, "CommandName": "Get-PnPTeamsChannelUser" }, { - "Rank": 2, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Id": 710, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "Rank": 2, "CommandName": "Get-PnPTeamsChannelUser" }, { - "Rank": 3, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Id": 711, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "Rank": 3, "CommandName": "Get-PnPTeamsChannelUser" }, { - "Rank": 4, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Id": 712, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 4, "CommandName": "Get-PnPTeamsChannelUser" }, { - "Rank": 1, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Id": 713, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "Rank": 1, "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "Rank": 2, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Id": 714, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "Rank": 2, "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "Rank": 1, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Id": 715, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "Rank": 1, "CommandName": "Get-PnPTeamsTab" }, { - "Rank": 2, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Id": 716, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "Rank": 2, "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", "Id": 717, + "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, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Id": 718, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "Rank": 4, "CommandName": "Get-PnPTeamsTab" }, { - "Rank": 5, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Id": 719, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "Rank": 5, "CommandName": "Get-PnPTeamsTab" }, { - "Rank": 1, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Id": 720, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1, "CommandName": "Get-PnPTeamsTag" }, { - "Rank": 2, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Id": 721, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 2, "CommandName": "Get-PnPTeamsTag" }, { - "Rank": 1, - "Command": "Get-PnPTeamsTeam", "Id": 722, + "Command": "Get-PnPTeamsTeam", + "Rank": 1, "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 2, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Id": 723, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "Rank": 2, "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 3, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Id": 724, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "Rank": 3, "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 4, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Id": 725, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "Rank": 4, "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 5, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Id": 726, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "Rank": 5, "CommandName": "Get-PnPTeamsTeam" }, { - "Rank": 1, - "Command": "Get-PnPTeamsUser -Team MyTeam", "Id": 727, + "Command": "Get-PnPTeamsUser -Team MyTeam", + "Rank": 1, "CommandName": "Get-PnPTeamsUser" }, { - "Rank": 2, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Id": 728, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "Rank": 2, "CommandName": "Get-PnPTeamsUser" }, { - "Rank": 3, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Id": 729, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "Rank": 3, "CommandName": "Get-PnPTeamsUser" }, { - "Rank": 4, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Id": 730, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "Rank": 4, "CommandName": "Get-PnPTeamsUser" }, { - "Rank": 1, - "Command": "Get-PnPTemporarilyDisableAppBar", "Id": 731, + "Command": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1, "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { - "Rank": 1, - "Command": "Get-PnPTenant", "Id": 732, + "Command": "Get-PnPTenant", + "Rank": 1, "CommandName": "Get-PnPTenant" }, { - "Rank": 1, - "Command": "Get-PnPTenantAppCatalogUrl", "Id": 733, + "Command": "Get-PnPTenantAppCatalogUrl", + "Rank": 1, "CommandName": "Get-PnPTenantAppCatalogUrl" }, { - "Rank": 1, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Id": 734, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "Rank": 1, "CommandName": "Get-PnPTenantCdnEnabled" }, { - "Rank": 1, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Id": 735, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "Rank": 1, "CommandName": "Get-PnPTenantCdnOrigin" }, { - "Rank": 1, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Id": 736, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "Rank": 1, "CommandName": "Get-PnPTenantCdnPolicies" }, { - "Rank": 1, - "Command": "Get-PnPTenantDeletedSite", "Id": 737, + "Command": "Get-PnPTenantDeletedSite", + "Rank": 1, "CommandName": "Get-PnPTenantDeletedSite" }, { - "Rank": 2, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 738, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 2, "CommandName": "Get-PnPTenantDeletedSite" }, { - "Rank": 3, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Id": 739, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "Rank": 3, "CommandName": "Get-PnPTenantDeletedSite" }, { - "Rank": 4, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Id": 740, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "Rank": 4, "CommandName": "Get-PnPTenantDeletedSite" }, { - "Rank": 1, - "Command": "Get-PnPTenantId", "Id": 741, + "Command": "Get-PnPTenantId", + "Rank": 1, "CommandName": "Get-PnPTenantId" }, { - "Rank": 2, - "Command": "Get-PnPTenantId contoso", "Id": 742, + "Command": "Get-PnPTenantId contoso", + "Rank": 2, "CommandName": "Get-PnPTenantId" }, { - "Rank": 3, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Id": 743, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "Rank": 3, "CommandName": "Get-PnPTenantId" }, { - "Rank": 4, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Id": 744, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "Rank": 4, "CommandName": "Get-PnPTenantId" }, { - "Rank": 1, - "Command": "Get-PnPTenantInstance", "Id": 745, + "Command": "Get-PnPTenantInstance", + "Rank": 1, "CommandName": "Get-PnPTenantInstance" }, { - "Rank": 1, - "Command": "Get-PnPTenantRecycleBinItem", "Id": 746, + "Command": "Get-PnPTenantRecycleBinItem", + "Rank": 1, "CommandName": "Get-PnPTenantRecycleBinItem" }, { - "Rank": 1, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Id": 747, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "Rank": 1, "CommandName": "Get-PnPTenantSequence" }, { - "Rank": 2, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Id": 748, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "Rank": 2, "CommandName": "Get-PnPTenantSequence" }, { - "Rank": 1, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Id": 749, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "Rank": 1, "CommandName": "Get-PnPTenantSequenceSite" }, { - "Rank": 2, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Id": 750, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "Rank": 2, "CommandName": "Get-PnPTenantSequenceSite" }, { - "Rank": 1, - "Command": "Get-PnPTenantSite", "Id": 751, + "Command": "Get-PnPTenantSite", + "Rank": 1, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 2, - "Command": "Get-PnPTenantSite -Detailed", "Id": 752, + "Command": "Get-PnPTenantSite -Detailed", + "Rank": 2, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 3, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Id": 753, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "Rank": 3, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 4, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Id": 754, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "Rank": 4, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 5, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Id": 755, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "Rank": 5, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 6, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Id": 756, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "Rank": 6, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 7, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Id": 757, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "Rank": 7, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 8, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Id": 758, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "Rank": 8, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 9, - "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Id": 759, + "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "Rank": 9, "CommandName": "Get-PnPTenantSite" }, { - "Rank": 1, - "Command": "Get-PnPTenantSyncClientRestriction", "Id": 760, + "Command": "Get-PnPTenantSyncClientRestriction", + "Rank": 1, "CommandName": "Get-PnPTenantSyncClientRestriction" }, { - "Rank": 1, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Id": 761, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "Rank": 1, "CommandName": "Get-PnPTenantTemplate" }, { - "Rank": 2, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Id": 762, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "Rank": 2, "CommandName": "Get-PnPTenantTemplate" }, { - "Rank": 3, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Id": 763, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "Rank": 3, "CommandName": "Get-PnPTenantTemplate" }, { - "Rank": 1, - "Command": "Get-PnPTenantTheme", "Id": 764, + "Command": "Get-PnPTenantTheme", + "Rank": 1, "CommandName": "Get-PnPTenantTheme" }, { - "Rank": 2, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Id": 765, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 2, "CommandName": "Get-PnPTenantTheme" }, { - "Rank": 3, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Id": 766, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "Rank": 3, "CommandName": "Get-PnPTenantTheme" }, { - "Rank": 1, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 767, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 1, "CommandName": "Get-PnPTerm" }, { - "Rank": 2, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 768, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, "CommandName": "Get-PnPTerm" }, { - "Rank": 3, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 769, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 3, "CommandName": "Get-PnPTerm" }, { - "Rank": 4, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Id": 770, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "Rank": 4, "CommandName": "Get-PnPTerm" }, { - "Rank": 5, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Id": 771, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "Rank": 5, "CommandName": "Get-PnPTerm" }, { - "Rank": 1, - "Command": "Get-PnPTermGroup", "Id": 772, + "Command": "Get-PnPTermGroup", + "Rank": 1, "CommandName": "Get-PnPTermGroup" }, { - "Rank": 2, - "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Id": 773, + "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "Rank": 2, "CommandName": "Get-PnPTermGroup" }, { - "Rank": 3, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Id": 774, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "Rank": 3, "CommandName": "Get-PnPTermGroup" }, { - "Rank": 1, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Id": 775, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "Rank": 1, "CommandName": "Get-PnPTermLabel" }, { - "Rank": 2, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Id": 776, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "Rank": 2, "CommandName": "Get-PnPTermLabel" }, { - "Rank": 3, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 777, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 3, "CommandName": "Get-PnPTermLabel" }, { - "Rank": 1, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Id": 778, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "Rank": 1, "CommandName": "Get-PnPTermSet" }, { - "Rank": 2, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Id": 779, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, "CommandName": "Get-PnPTermSet" }, { - "Rank": 3, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Id": 780, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "Rank": 3, "CommandName": "Get-PnPTermSet" }, { - "Rank": 1, - "Command": "Get-PnPTheme", "Id": 781, + "Command": "Get-PnPTheme", + "Rank": 1, "CommandName": "Get-PnPTheme" }, { - "Rank": 2, - "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Id": 782, + "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "Rank": 2, "CommandName": "Get-PnPTheme" }, { - "Rank": 1, - "Command": "Get-PnPTimeZoneId", "Id": 783, + "Command": "Get-PnPTimeZoneId", + "Rank": 1, "CommandName": "Get-PnPTimeZoneId" }, { - "Rank": 2, - "Command": "Get-PnPTimeZoneId -Match Stockholm", "Id": 784, + "Command": "Get-PnPTimeZoneId -Match Stockholm", + "Rank": 2, "CommandName": "Get-PnPTimeZoneId" }, { - "Rank": 1, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Id": 785, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "Rank": 1, "CommandName": "Get-PnPUnfurlLink" }, { - "Rank": 1, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Id": 786, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "Rank": 1, "CommandName": "Get-PnPUnifiedAuditLog" }, { - "Rank": 1, - "Command": "Get-PnPUPABulkImportStatus", "Id": 787, + "Command": "Get-PnPUPABulkImportStatus", + "Rank": 1, "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Rank": 2, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Id": 788, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "Rank": 2, "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Rank": 3, - "Command": "Get-PnPUPABulkImportStatus -JobId ", "Id": 789, + "Command": "Get-PnPUPABulkImportStatus -JobId ", + "Rank": 3, "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Rank": 4, - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Id": 790, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "Rank": 4, "CommandName": "Get-PnPUPABulkImportStatus" }, { - "Rank": 1, - "Command": "Get-PnPUser", "Id": 791, + "Command": "Get-PnPUser", + "Rank": 1, "CommandName": "Get-PnPUser" }, { - "Rank": 2, - "Command": "Get-PnPUser -Identity 23", "Id": 792, + "Command": "Get-PnPUser -Identity 23", + "Rank": 2, "CommandName": "Get-PnPUser" }, { - "Rank": 3, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Id": 793, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "Rank": 3, "CommandName": "Get-PnPUser" }, { - "Rank": 4, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Id": 794, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "Rank": 4, "CommandName": "Get-PnPUser" }, { - "Rank": 5, - "Command": "Get-PnPUser -WithRightsAssigned", "Id": 795, + "Command": "Get-PnPUser -WithRightsAssigned", + "Rank": 5, "CommandName": "Get-PnPUser" }, { - "Rank": 6, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Id": 796, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "Rank": 6, "CommandName": "Get-PnPUser" }, { - "Rank": 7, - "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Id": 797, + "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "Rank": 7, "CommandName": "Get-PnPUser" }, { - "Rank": 1, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Id": 798, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "Rank": 1, "CommandName": "Get-PnPUserOneDriveQuota" }, { - "Rank": 1, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Id": 799, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "Rank": 1, "CommandName": "Get-PnPUserProfileProperty" }, { - "Rank": 2, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Id": 800, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "Rank": 2, "CommandName": "Get-PnPUserProfileProperty" }, { - "Rank": 3, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Id": 801, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "Rank": 3, "CommandName": "Get-PnPUserProfileProperty" }, { - "Rank": 1, - "Command": "Get-PnPView -List \"Demo List\"", "Id": 802, + "Command": "Get-PnPView -List \"Demo List\"", + "Rank": 1, "CommandName": "Get-PnPView" }, { - "Rank": 2, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Id": 803, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "Rank": 2, "CommandName": "Get-PnPView" }, { - "Rank": 3, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Id": 804, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "Rank": 3, "CommandName": "Get-PnPView" }, { - "Rank": 1, - "Command": "Get-PnPVivaConnectionsDashboardACE", "Id": 805, + "Command": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 1, "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "Rank": 2, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Id": 806, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 2, "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "Rank": 1, - "Command": "Get-PnPWeb", "Id": 807, + "Command": "Get-PnPWeb", + "Rank": 1, "CommandName": "Get-PnPWeb" }, { - "Rank": 1, - "Command": "Get-PnPWebHeader", "Id": 808, + "Command": "Get-PnPWebHeader", + "Rank": 1, "CommandName": "Get-PnPWebHeader" }, { - "Rank": 1, - "Command": "Get-PnPWebhookSubscriptions -List MyList", "Id": 809, + "Command": "Get-PnPWebhookSubscriptions -List MyList", + "Rank": 1, "CommandName": "Get-PnPWebhookSubscriptions" }, { - "Rank": 1, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Id": 810, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "Rank": 1, "CommandName": "Get-PnPWebPart" }, { - "Rank": 2, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 811, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 2, "CommandName": "Get-PnPWebPart" }, { - "Rank": 1, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Id": 812, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "Rank": 1, "CommandName": "Get-PnPWebPartProperty" }, { - "Rank": 2, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Id": 813, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "Rank": 2, "CommandName": "Get-PnPWebPartProperty" }, { - "Rank": 1, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 814, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1, "CommandName": "Get-PnPWebPartXml" }, { - "Rank": 1, - "Command": "Get-PnPWebTemplates", "Id": 815, + "Command": "Get-PnPWebTemplates", + "Rank": 1, "CommandName": "Get-PnPWebTemplates" }, { - "Rank": 2, - "Command": "Get-PnPWebTemplates -LCID 1033", "Id": 816, + "Command": "Get-PnPWebTemplates -LCID 1033", + "Rank": 2, "CommandName": "Get-PnPWebTemplates" }, { - "Rank": 3, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Id": 817, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "Rank": 3, "CommandName": "Get-PnPWebTemplates" }, { - "Rank": 1, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Id": 818, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "Rank": 1, "CommandName": "Get-PnPWikiPageContent" }, { - "Rank": 1, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Id": 819, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "Rank": 1, "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", "Id": 820, + "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, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 821, + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, "CommandName": "Grant-PnPHubSiteRights" }, { - "Rank": 1, - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 822, + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, "CommandName": "Grant-PnPSiteDesignRights" }, { - "Rank": 1, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Id": 823, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1, "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { - "Rank": 1, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Id": 824, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "Rank": 1, "CommandName": "Import-PnPTaxonomy" }, { - "Rank": 2, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Id": 825, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "Rank": 2, "CommandName": "Import-PnPTaxonomy" }, { - "Rank": 3, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Id": 826, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "Rank": 3, "CommandName": "Import-PnPTaxonomy" }, { - "Rank": 1, - "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Id": 827, + "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "Rank": 1, "CommandName": "Import-PnPTermGroupFromXml" }, { - "Rank": 2, - "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Id": 828, + "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "Rank": 2, "CommandName": "Import-PnPTermGroupFromXml" }, { - "Rank": 1, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Id": 829, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "Rank": 1, "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}'", "Id": 830, + "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, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", "Id": 831, + "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, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 832, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Install-PnPApp" }, { - "Rank": 2, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 833, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Install-PnPApp" }, { - "Rank": 1, - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Id": 834, + "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, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Id": 835, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "Rank": 2, "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 3, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Id": 836, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "Rank": 3, "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 4, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Id": 837, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "Rank": 4, "CommandName": "Invoke-PnPGraphMethod" }, { - "Rank": 5, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Id": 838, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "Rank": 5, "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", "Id": 839, + "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, - "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": 840, + "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, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 841, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Invoke-PnPListDesign" }, { - "Rank": 2, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Id": 842, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Rank": 2, "CommandName": "Invoke-PnPListDesign" }, { - "Rank": 1, - "Command": "Invoke-PnPQuery -RetryCount 5", "Id": 843, + "Command": "Invoke-PnPQuery -RetryCount 5", + "Rank": 1, "CommandName": "Invoke-PnPQuery" }, { - "Rank": 1, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 844, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Invoke-PnPSiteDesign" }, { - "Rank": 2, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Id": 845, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Rank": 2, "CommandName": "Invoke-PnPSiteDesign" }, { - "Rank": 1, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Id": 846, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "Rank": 1, "CommandName": "Invoke-PnPSiteScript" }, { - "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": 847, + "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, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", "Id": 848, + "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, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", "Id": 849, + "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, - "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Id": 850, + "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "Rank": 1, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 2, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Id": 851, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "Rank": 2, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 3, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Id": 852, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 4, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Id": 853, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "Rank": 4, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 5, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Id": 854, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "Rank": 5, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 6, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Id": 855, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "Rank": 6, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 7, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Id": 856, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "Rank": 7, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 8, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Id": 857, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "Rank": 8, "CommandName": "Invoke-PnPSiteTemplate" }, { - "Rank": 1, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Id": 858, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "Rank": 1, "CommandName": "Invoke-PnPSPRestMethod" }, { - "Rank": 1, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Id": 859, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "Rank": 1, "CommandName": "Invoke-PnPTenantTemplate" }, { - "Rank": 2, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Id": 860, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "Rank": 2, "CommandName": "Invoke-PnPTenantTemplate" }, { - "Rank": 3, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Id": 861, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Rank": 3, "CommandName": "Invoke-PnPTenantTemplate" }, { - "Rank": 1, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Id": 862, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "Rank": 1, "CommandName": "Invoke-PnPWebAction" }, { - "Rank": 2, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Id": 863, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "Rank": 2, "CommandName": "Invoke-PnPWebAction" }, { - "Rank": 1, - "Command": "Measure-PnPList \"Documents\"", "Id": 864, + "Command": "Measure-PnPList \"Documents\"", + "Rank": 1, "CommandName": "Measure-PnPList" }, { - "Rank": 2, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Id": 865, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "Rank": 2, "CommandName": "Measure-PnPList" }, { - "Rank": 1, - "Command": "Measure-PnPWeb", "Id": 866, + "Command": "Measure-PnPWeb", + "Rank": 1, "CommandName": "Measure-PnPWeb" }, { - "Rank": 2, - "Command": "Measure-PnPWeb $web -Recursive", "Id": 867, + "Command": "Measure-PnPWeb $web -Recursive", + "Rank": 2, "CommandName": "Measure-PnPWeb" }, { - "Rank": 1, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Id": 868, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "Rank": 1, "CommandName": "Move-PnPFile" }, { - "Rank": 2, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Id": 869, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "Rank": 2, "CommandName": "Move-PnPFile" }, { - "Rank": 3, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Id": 870, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Rank": 3, "CommandName": "Move-PnPFile" }, { - "Rank": 4, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Id": 871, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Rank": 4, "CommandName": "Move-PnPFile" }, { - "Rank": 1, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Id": 872, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "Rank": 1, "CommandName": "Move-PnPFolder" }, { - "Rank": 2, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Id": 873, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "Rank": 2, "CommandName": "Move-PnPFolder" }, { - "Rank": 1, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Id": 874, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1, "CommandName": "Move-PnPListItemToRecycleBin" }, { - "Rank": 1, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "Id": 875, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "Rank": 1, "CommandName": "Move-PnPPageComponent" }, { - "Rank": 2, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "Id": 876, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "Rank": 2, "CommandName": "Move-PnPPageComponent" }, { - "Rank": 3, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "Id": 877, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "Rank": 3, "CommandName": "Move-PnPPageComponent" }, { - "Rank": 4, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Id": 878, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "Rank": 4, "CommandName": "Move-PnPPageComponent" }, { - "Rank": 1, - "Command": "Move-PnPRecycleBinItem", "Id": 879, + "Command": "Move-PnPRecycleBinItem", + "Rank": 1, "CommandName": "Move-PnpRecycleBinItem" }, { - "Rank": 2, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Id": 880, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "Rank": 2, "CommandName": "Move-PnpRecycleBinItem" }, { - "Rank": 3, - "Command": "Move-PnPRecycleBinItem -Force", "Id": 881, + "Command": "Move-PnPRecycleBinItem -Force", + "Rank": 3, "CommandName": "Move-PnpRecycleBinItem" }, { - "Rank": 1, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", "Id": 882, + "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, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Id": 883, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "Rank": 2, "CommandName": "Move-PnPTerm" }, { - "Rank": 3, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Id": 884, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "Rank": 3, "CommandName": "Move-PnPTerm" }, { - "Rank": 1, - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", "Id": 885, + "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, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Id": 886, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "Rank": 2, "CommandName": "Move-PnPTermSet" }, { - "Rank": 1, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Id": 887, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "Rank": 1, "CommandName": "New-PnPAzureADGroup" }, { - "Rank": 2, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Id": 888, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "Rank": 2, "CommandName": "New-PnPAzureADGroup" }, { - "Rank": 3, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Id": 889, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "Rank": 3, "CommandName": "New-PnPAzureADGroup" }, { - "Rank": 1, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Id": 890, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "Rank": 1, "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Rank": 2, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Id": 891, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "Rank": 2, "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Rank": 3, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Id": 892, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "Rank": 3, "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "Rank": 1, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Id": 893, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "Rank": 1, "CommandName": "New-PnPAzureCertificate" }, { - "Rank": 2, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Id": 894, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "Rank": 2, "CommandName": "New-PnPAzureCertificate" }, { - "Rank": 3, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Id": 895, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "Rank": 3, "CommandName": "New-PnPAzureCertificate" }, { - "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": 896, + "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, - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", "Id": 897, + "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, - "Command": "New-PnPGroup -Title \"My Site Users\"", "Id": 898, + "Command": "New-PnPGroup -Title \"My Site Users\"", + "Rank": 1, "CommandName": "New-PnPGroup" }, { - "Rank": 1, - "Command": "New-PnPList -Title Announcements -Template Announcements", "Id": 899, + "Command": "New-PnPList -Title Announcements -Template Announcements", + "Rank": 1, "CommandName": "New-PnPList" }, { - "Rank": 2, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Id": 900, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "Rank": 2, "CommandName": "New-PnPList" }, { - "Rank": 3, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Id": 901, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "Rank": 3, "CommandName": "New-PnPList" }, { - "Rank": 1, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Id": 902, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "Rank": 1, "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 2, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Id": 903, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "Rank": 2, "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 3, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Id": 904, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "Rank": 3, "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 4, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Id": 905, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "Rank": 4, "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 5, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Id": 906, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Rank": 5, "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 6, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Id": 907, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Rank": 6, "CommandName": "New-PnPMicrosoft365Group" }, { - "Rank": 1, - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", "Id": 908, + "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, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Id": 909, + "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, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Id": 910, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "Rank": 1, "CommandName": "New-PnPPersonalSite" }, { - "Rank": 1, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Id": 911, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "Rank": 1, "CommandName": "New-PnPPlannerPlan" }, { - "Rank": 1, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Id": 912, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "Rank": 1, "CommandName": "New-PnPSdnProvider" }, { - "Rank": 1, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Id": 913, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Rank": 1, "CommandName": "New-PnPSite" }, { - "Rank": 2, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "Id": 914, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "Rank": 2, "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", "Id": 915, + "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, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Id": 916, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Rank": 4, "CommandName": "New-PnPSite" }, { - "Rank": 5, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Id": 917, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Rank": 5, "CommandName": "New-PnPSite" }, { - "Rank": 6, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Id": 918, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Rank": 6, "CommandName": "New-PnPSite" }, { - "Rank": 7, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Id": 919, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "Rank": 7, "CommandName": "New-PnPSite" }, { - "Rank": 8, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Id": 920, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "Rank": 8, "CommandName": "New-PnPSite" }, { - "Rank": 9, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Id": 921, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "Rank": 9, "CommandName": "New-PnPSite" }, { - "Rank": 10, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Id": 922, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "Rank": 10, "CommandName": "New-PnPSite" }, { - "Rank": 11, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Id": 923, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Rank": 11, "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", "Id": 924, + "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, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Id": 925, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Rank": 13, "CommandName": "New-PnPSite" }, { - "Rank": 14, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Id": 926, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Rank": 14, "CommandName": "New-PnPSite" }, { - "Rank": 15, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Id": 927, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Rank": 15, "CommandName": "New-PnPSite" }, { - "Rank": 16, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Id": 928, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "Rank": 16, "CommandName": "New-PnPSite" }, { - "Rank": 1, - "Command": "New-PnPSiteCollectionTermStore", "Id": 929, + "Command": "New-PnPSiteCollectionTermStore", + "Rank": 1, "CommandName": "New-PnPSiteCollectionTermStore" }, { - "Rank": 1, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Id": 930, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "Rank": 1, "CommandName": "New-PnPSiteGroup" }, { - "Rank": 2, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Id": 931, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "Rank": 2, "CommandName": "New-PnPSiteGroup" }, { - "Rank": 1, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Id": 932, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "Rank": 1, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 2, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Id": 933, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "Rank": 2, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 3, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Id": 934, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "Rank": 3, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 4, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "Id": 935, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "Rank": 4, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 5, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "Id": 936, + "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, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 937, + "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, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Id": 938, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "Rank": 7, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 8, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Id": 939, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "Rank": 8, "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "Rank": 1, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Id": 940, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "Rank": 1, "CommandName": "New-PnPTeamsApp" }, { - "Rank": 1, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Id": 941, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "Rank": 1, "CommandName": "New-PnPTeamsTeam" }, { - "Rank": 2, - "Command": "New-PnPTeamsTeam -GroupId $groupId", "Id": 942, + "Command": "New-PnPTeamsTeam -GroupId $groupId", + "Rank": 2, "CommandName": "New-PnPTeamsTeam" }, { - "Rank": 3, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "Id": 943, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "Rank": 3, "CommandName": "New-PnPTeamsTeam" }, { - "Rank": 4, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Id": 944, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Rank": 4, "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\"", "Id": 945, + "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, - "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": 946, + "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, - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", "Id": 947, + "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, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Id": 948, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "Rank": 2, "CommandName": "New-PnPTenantSite" }, { - "Rank": 1, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Id": 949, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "Rank": 1, "CommandName": "New-PnPTerm" }, { - "Rank": 2, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Id": 950, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 2, "CommandName": "New-PnPTerm" }, { - "Rank": 1, - "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Id": 951, + "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "Rank": 1, "CommandName": "New-PnPTermGroup" }, { - "Rank": 1, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Id": 952, + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "Rank": 1, "CommandName": "New-PnPTermLabel" }, { - "Rank": 1, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Id": 953, + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "Rank": 1, "CommandName": "New-PnPTermSet" }, { - "Rank": 1, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Id": 954, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "Rank": 1, "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", "Id": 955, + "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, - "Command": "New-PnPUser -LoginName user@company.com", "Id": 956, + "Command": "New-PnPUser -LoginName user@company.com", + "Rank": 1, "CommandName": "New-PnPUser" }, { - "Rank": 1, - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Id": 957, + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", + "Rank": 1, "CommandName": "New-PnPWeb" }, { - "Rank": 1, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 958, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Rank": 1, "CommandName": "Publish-PnPApp" }, { - "Rank": 2, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Id": 959, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "Rank": 2, "CommandName": "Publish-PnPApp" }, { - "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": 960, + "Command": "Publish-PnPCompanyApp -PortalUrl https://contoso.sharepoint.com/sites/portal -AppName \"Contoso Portal\" -CompanyName \"Contoso\" -CompanyWebSite \"https://www.contoso.com\" -ColoredIconPath ./coloricon.png -OutlineIconPath ./outlinedicon", + "Rank": 1, "CommandName": "Publish-PnPCompanyApp" }, { - "Rank": 1, - "Command": "Publish-PnPContentType -ContentType 0x0101", "Id": 961, + "Command": "Publish-PnPContentType -ContentType 0x0101", + "Rank": 1, "CommandName": "Publish-PnPContentType" }, { - "Rank": 1, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Id": 962, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Rank": 1, "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", "Id": 963, + "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, - "Command": "Read-PnPSiteTemplate -Path template.pnp", "Id": 964, + "Command": "Read-PnPSiteTemplate -Path template.pnp", + "Rank": 1, "CommandName": "Read-PnPSiteTemplate" }, { - "Rank": 2, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Id": 965, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "Rank": 2, "CommandName": "Read-PnPSiteTemplate" }, { - "Rank": 3, - "Command": "Read-PnPSiteTemplate -Xml $xml", "Id": 966, + "Command": "Read-PnPSiteTemplate -Xml $xml", + "Rank": 3, "CommandName": "Read-PnPSiteTemplate" }, { - "Rank": 1, - "Command": "Read-PnPTenantTemplate -Path template.pnp", "Id": 967, + "Command": "Read-PnPTenantTemplate -Path template.pnp", + "Rank": 1, "CommandName": "Read-PnPTenantTemplate" }, { - "Rank": 1, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Id": 968, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "Rank": 1, "CommandName": "Register-PnPAppCatalogSite" }, { - "Rank": 1, - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", "Id": 969, + "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, - "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": 970, + "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, - "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": 971, + "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, - "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": 972, + "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, - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Id": 973, + "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, - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Id": 974, + "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, - "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": 975, + "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, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Id": 976, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Rank": 1, "CommandName": "Register-PnPHubSite" }, { - "Rank": 2, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Id": 977, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "Rank": 2, "CommandName": "Register-PnPHubSite" }, { - "Rank": 1, - "Command": "Register-PnPManagementShellAccess", "Id": 978, + "Command": "Register-PnPManagementShellAccess", + "Rank": 1, "CommandName": "Register-PnPManagementShellAccess" }, { - "Rank": 2, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Id": 979, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "Rank": 2, "CommandName": "Register-PnPManagementShellAccess" }, { - "Rank": 3, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Id": 980, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "Rank": 3, "CommandName": "Register-PnPManagementShellAccess" }, { - "Rank": 1, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Id": 981, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "Rank": 1, "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "Rank": 2, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Id": 982, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "Rank": 2, "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "Rank": 1, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Id": 983, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "Rank": 1, "CommandName": "Remove-PnPAlert" }, { - "Rank": 2, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 984, + "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, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 985, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Remove-PnPApp" }, { - "Rank": 2, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 986, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Remove-PnPApp" }, { - "Rank": 1, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 987, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1, "CommandName": "Remove-PnPApplicationCustomizer" }, { - "Rank": 2, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Id": 988, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2, "CommandName": "Remove-PnPApplicationCustomizer" }, { - "Rank": 1, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Id": 989, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Rank": 1, "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "Rank": 2, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Id": 990, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 2, "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "Rank": 1, - "Command": "Remove-PnPAzureADApp -Identity MyApp", "Id": 991, + "Command": "Remove-PnPAzureADApp -Identity MyApp", + "Rank": 1, "CommandName": "Remove-PnPAzureADApp" }, { - "Rank": 2, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 992, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Rank": 2, "CommandName": "Remove-PnPAzureADApp" }, { - "Rank": 1, - "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Id": 993, + "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "Rank": 1, "CommandName": "Remove-PnPAzureADGroup" }, { - "Rank": 2, - "Command": "Remove-PnPAzureADGroup -Identity $group", "Id": 994, + "Command": "Remove-PnPAzureADGroup -Identity $group", + "Rank": 2, "CommandName": "Remove-PnPAzureADGroup" }, { - "Rank": 1, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 995, + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPAzureADGroupMember" }, { - "Rank": 1, - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 996, + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPAzureADGroupOwner" }, { - "Rank": 1, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Id": 997, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "Rank": 1, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 2, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Id": 998, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "Rank": 2, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 3, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 999, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Rank": 3, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 4, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Id": 1000, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Rank": 4, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "Rank": 1, - "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Id": 1001, + "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "Rank": 1, "CommandName": "Remove-PnPContentType" }, { - "Rank": 2, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Id": 1002, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "Rank": 2, "CommandName": "Remove-PnPContentType" }, { - "Rank": 1, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Id": 1003, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Rank": 1, "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "Rank": 2, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Id": 1004, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Rank": 2, "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "Rank": 1, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Id": 1005, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "Rank": 1, "CommandName": "Remove-PnPContentTypeFromList" }, { - "Rank": 1, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1006, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1, "CommandName": "Remove-PnPCustomAction" }, { - "Rank": 2, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Id": 1007, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Rank": 2, "CommandName": "Remove-PnPCustomAction" }, { - "Rank": 3, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Id": 1008, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "Rank": 3, "CommandName": "Remove-PnPCustomAction" }, { - "Rank": 1, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 1009, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1, "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { - "Rank": 1, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 1010, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 1, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 2, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 1011, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Rank": 2, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 3, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Id": 1012, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "Rank": 3, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 4, - "Command": "Remove-PnPEventReceiver -List ProjectList", "Id": 1013, + "Command": "Remove-PnPEventReceiver -List ProjectList", + "Rank": 4, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 5, - "Command": "Remove-PnPEventReceiver", "Id": 1014, + "Command": "Remove-PnPEventReceiver", + "Rank": 5, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 6, - "Command": "Remove-PnPEventReceiver -Scope Site", "Id": 1015, + "Command": "Remove-PnPEventReceiver -Scope Site", + "Rank": 6, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 7, - "Command": "Remove-PnPEventReceiver -Scope Web", "Id": 1016, + "Command": "Remove-PnPEventReceiver -Scope Web", + "Rank": 7, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 8, - "Command": "Remove-PnPEventReceiver -Scope All", "Id": 1017, + "Command": "Remove-PnPEventReceiver -Scope All", + "Rank": 8, "CommandName": "Remove-PnPEventReceiver" }, { - "Rank": 1, - "Command": "Remove-PnPField -Identity \"Speakers\"", "Id": 1018, + "Command": "Remove-PnPField -Identity \"Speakers\"", + "Rank": 1, "CommandName": "Remove-PnPField" }, { - "Rank": 2, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Id": 1019, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Rank": 2, "CommandName": "Remove-PnPField" }, { - "Rank": 1, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Id": 1020, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Rank": 1, "CommandName": "Remove-PnPFieldFromContentType" }, { - "Rank": 2, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Id": 1021, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "Rank": 2, "CommandName": "Remove-PnPFieldFromContentType" }, { - "Rank": 1, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Id": 1022, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "Rank": 1, "CommandName": "Remove-PnPFile" }, { - "Rank": 2, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Id": 1023, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "Rank": 2, "CommandName": "Remove-PnPFile" }, { - "Rank": 3, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Id": 1024, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "Rank": 3, "CommandName": "Remove-PnPFile" }, { - "Rank": 1, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Id": 1025, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "Rank": 1, "CommandName": "Remove-PnPFileFromSiteTemplate" }, { - "Rank": 1, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 1026, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Rank": 1, "CommandName": "Remove-PnPFileSharingLink" }, { - "Rank": 2, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Id": 1027, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "Rank": 2, "CommandName": "Remove-PnPFileSharingLink" }, { - "Rank": 1, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Id": 1028, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1, "CommandName": "Remove-PnPFileVersion" }, { - "Rank": 2, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Id": 1029, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 2, "CommandName": "Remove-PnPFileVersion" }, { - "Rank": 3, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Id": 1030, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "Rank": 3, "CommandName": "Remove-PnPFileVersion" }, { - "Rank": 1, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Id": 1031, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Rank": 1, "CommandName": "Remove-PnPFolder" }, { - "Rank": 2, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Id": 1032, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "Rank": 2, "CommandName": "Remove-PnPFolder" }, { - "Rank": 1, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 1033, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Rank": 1, "CommandName": "Remove-PnPFolderSharingLink" }, { - "Rank": 2, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Id": 1034, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "Rank": 2, "CommandName": "Remove-PnPFolderSharingLink" }, { - "Rank": 1, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Id": 1035, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "Rank": 1, "CommandName": "Remove-PnPGraphSubscription" }, { - "Rank": 1, - "Command": "Remove-PnPGroup -Identity \"My Users\"", "Id": 1036, + "Command": "Remove-PnPGroup -Identity \"My Users\"", + "Rank": 1, "CommandName": "Remove-PnPGroup" }, { - "Rank": 1, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Id": 1037, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Rank": 1, "CommandName": "Remove-PnPGroupMember" }, { - "Rank": 1, - "Command": "Remove-PnPHomeSite", "Id": 1038, + "Command": "Remove-PnPHomeSite", + "Rank": 1, "CommandName": "Remove-PnPHomeSite" }, { - "Rank": 1, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Id": 1039, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1, "CommandName": "Remove-PnPHubSiteAssociation" }, { - "Rank": 1, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Id": 1040, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "Rank": 1, "CommandName": "Remove-PnPHubToHubAssociation" }, { - "Rank": 2, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Id": 1041, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "Rank": 2, "CommandName": "Remove-PnPHubToHubAssociation" }, { - "Rank": 1, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Id": 1042, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "Rank": 1, "CommandName": "Remove-PnPIndexedProperty" }, { - "Rank": 1, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Id": 1043, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "Rank": 1, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 2, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Id": 1044, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "Rank": 2, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 3, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Id": 1045, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "Rank": 3, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 4, - "Command": "Remove-PnPJavaScriptLink -Scope Site", "Id": 1046, + "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Rank": 4, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 5, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Id": 1047, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "Rank": 5, "CommandName": "Remove-PnPJavaScriptLink" }, { - "Rank": 1, - "Command": "Remove-PnPKnowledgeHubSite", "Id": 1048, + "Command": "Remove-PnPKnowledgeHubSite", + "Rank": 1, "CommandName": "Remove-PnPKnowledgeHubSite" }, { - "Rank": 1, - "Command": "Remove-PnPList -Identity Announcements", "Id": 1049, + "Command": "Remove-PnPList -Identity Announcements", + "Rank": 1, "CommandName": "Remove-PnPList" }, { - "Rank": 2, - "Command": "Remove-PnPList -Identity Announcements -Force", "Id": 1050, + "Command": "Remove-PnPList -Identity Announcements -Force", + "Rank": 2, "CommandName": "Remove-PnPList" }, { - "Rank": 3, - "Command": "Remove-PnPList -Identity Announcements -Recycle", "Id": 1051, + "Command": "Remove-PnPList -Identity Announcements -Recycle", + "Rank": 3, "CommandName": "Remove-PnPList" }, { - "Rank": 4, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Id": 1052, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "Rank": 4, "CommandName": "Remove-PnPList" }, { - "Rank": 1, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1053, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Remove-PnPListDesign" }, { - "Rank": 1, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Id": 1054, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "Rank": 1, "CommandName": "Remove-PnPListItem" }, { - "Rank": 2, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Id": 1055, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "Rank": 2, "CommandName": "Remove-PnPListItem" }, { - "Rank": 3, - "Command": "Remove-PnPListItem -List \"Demo List\"", "Id": 1056, + "Command": "Remove-PnPListItem -List \"Demo List\"", + "Rank": 3, "CommandName": "Remove-PnPListItem" }, { - "Rank": 1, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Id": 1057, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "Rank": 1, "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 2, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "Id": 1058, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "Rank": 2, "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 3, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Id": 1059, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "Rank": 3, "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 4, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Id": 1060, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "Rank": 4, "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 5, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Id": 1061, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "Rank": 5, "CommandName": "Remove-PnPListItemAttachment" }, { - "Rank": 1, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Id": 1062, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1, "CommandName": "Remove-PnPListItemVersion" }, { - "Rank": 2, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Id": 1063, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2, "CommandName": "Remove-PnPListItemVersion" }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Id": 1064, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365Group" }, { - "Rank": 2, - "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Id": 1065, + "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "Rank": 2, "CommandName": "Remove-PnPMicrosoft365Group" }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1066, + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1067, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { - "Rank": 1, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Id": 1068, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "Rank": 2, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Id": 1069, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "Rank": 2, "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "Rank": 1, - "Command": "Remove-PnPNavigationNode -Identity 1032", "Id": 1070, + "Command": "Remove-PnPNavigationNode -Identity 1032", + "Rank": 1, "CommandName": "Remove-PnPNavigationNode" }, { - "Rank": 2, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Id": 1071, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "Rank": 2, "CommandName": "Remove-PnPNavigationNode" }, { - "Rank": 3, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Id": 1072, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "Rank": 3, "CommandName": "Remove-PnPNavigationNode" }, { - "Rank": 1, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Id": 1073, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "Rank": 1, "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Rank": 2, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Id": 1074, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "Rank": 2, "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Rank": 3, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Id": 1075, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "Rank": 3, "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "Rank": 1, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Id": 1076, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "Rank": 1, "CommandName": "Remove-PnPOrgNewsSite" }, { - "Rank": 1, - "Command": "Remove-PnPPage -Identity \"MyPage\"", "Id": 1077, + "Command": "Remove-PnPPage -Identity \"MyPage\"", + "Rank": 1, "CommandName": "Remove-PnPPage" }, { - "Rank": 2, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Id": 1078, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "Rank": 2, "CommandName": "Remove-PnPPage" }, { - "Rank": 3, - "Command": "Remove-PnPPage $page", "Id": 1079, + "Command": "Remove-PnPPage $page", + "Rank": 3, "CommandName": "Remove-PnPPage" }, { - "Rank": 4, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Id": 1080, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "Rank": 4, "CommandName": "Remove-PnPPage" }, { - "Rank": 1, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 1081, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1, "CommandName": "Remove-PnPPageComponent" }, { - "Rank": 1, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Id": 1082, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "Rank": 1, "CommandName": "Remove-PnPPlannerBucket" }, { - "Rank": 1, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Id": 1083, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "Rank": 1, "CommandName": "Remove-PnPPlannerPlan" }, { - "Rank": 1, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Id": 1084, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Rank": 1, "CommandName": "Remove-PnPPlannerRoster" }, { - "Rank": 1, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 1085, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPPlannerRosterMember" }, { - "Rank": 1, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Id": 1086, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "Rank": 1, "CommandName": "Remove-PnPPlannerTask" }, { - "Rank": 1, - "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Id": 1087, + "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "Rank": 1, "CommandName": "Remove-PnPPropertyBagValue" }, { - "Rank": 2, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Id": 1088, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "Rank": 2, "CommandName": "Remove-PnPPropertyBagValue" }, { - "Rank": 3, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Id": 1089, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "Rank": 3, "CommandName": "Remove-PnPPropertyBagValue" }, { - "Rank": 1, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Id": 1090, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Rank": 1, "CommandName": "Remove-PnPPublishingImageRendition" }, { - "Rank": 1, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Id": 1091, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "Rank": 1, "CommandName": "Remove-PnPRoleDefinition" }, { - "Rank": 1, - "Command": "Remove-PnPSdnProvider -Confirm:false", "Id": 1092, + "Command": "Remove-PnPSdnProvider -Confirm:false", + "Rank": 1, "CommandName": "Remove-PnPSdnProvider" }, { - "Rank": 1, - "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Id": 1093, + "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "Rank": 1, "CommandName": "Remove-PnPSearchConfiguration" }, { - "Rank": 2, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Id": 1094, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2, "CommandName": "Remove-PnPSearchConfiguration" }, { - "Rank": 3, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Id": 1095, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3, "CommandName": "Remove-PnPSearchConfiguration" }, { - "Rank": 4, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 1096, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4, "CommandName": "Remove-PnPSearchConfiguration" }, { - "Rank": 1, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Id": 1097, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "Rank": 2, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 1098, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Rank": 2, "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "Rank": 1, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Id": 1099, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { - "Rank": 1, - "Command": "Remove-PnPSiteCollectionTermStore", "Id": 1100, + "Command": "Remove-PnPSiteCollectionTermStore", + "Rank": 1, "CommandName": "Remove-PnPSiteCollectionTermStore" }, { - "Rank": 1, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1101, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Remove-PnPSiteDesign" }, { - "Rank": 1, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1102, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Remove-PnPSiteDesignTask" }, { - "Rank": 1, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1103, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1, "CommandName": "Remove-PnPSiteGroup" }, { - "Rank": 2, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Id": 1104, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "Rank": 2, "CommandName": "Remove-PnPSiteGroup" }, { - "Rank": 1, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1105, + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Rank": 1, "CommandName": "Remove-PnPSiteScript" }, { - "Rank": 1, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Id": 1106, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Rank": 1, "CommandName": "Remove-PnPSiteUserInvitations" }, { - "Rank": 1, - "Command": "Remove-PnPStorageEntity -Key MyKey", "Id": 1107, + "Command": "Remove-PnPStorageEntity -Key MyKey", + "Rank": 1, "CommandName": "Remove-PnPStorageEntity" }, { - "Rank": 2, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Id": 1108, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "Rank": 2, "CommandName": "Remove-PnPStorageEntity" }, { - "Rank": 1, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Id": 1109, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Rank": 1, "CommandName": "Remove-PnPStoredCredential" }, { - "Rank": 1, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Id": 1110, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "Rank": 1, "CommandName": "Remove-PnPTaxonomyItem" }, { - "Rank": 2, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Id": 1111, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "Rank": 2, "CommandName": "Remove-PnPTaxonomyItem" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Id": 1112, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "Rank": 1, "CommandName": "Remove-PnPTeamsApp" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Id": 1113, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "Rank": 2, "CommandName": "Remove-PnPTeamsApp" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Id": 1114, + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "Rank": 1, "CommandName": "Remove-PnPTeamsChannel" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Id": 1115, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "Rank": 1, "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Id": 1116, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Rank": 2, "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Rank": 3, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Id": 1117, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "Rank": 3, "CommandName": "Remove-PnPTeamsChannelUser" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "Id": 1118, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "Rank": 1, "CommandName": "Remove-PnPTeamsTab" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "Id": 1119, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "Rank": 2, "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", "Id": 1120, + "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, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Id": 1121, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Rank": 1, "CommandName": "Remove-PnPTeamsTag" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Id": 1122, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Rank": 1, "CommandName": "Remove-PnPTeamsTeam" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsTeam -Identity testteam", "Id": 1123, + "Command": "Remove-PnPTeamsTeam -Identity testteam", + "Rank": 2, "CommandName": "Remove-PnPTeamsTeam" }, { - "Rank": 1, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Id": 1124, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "Rank": 1, "CommandName": "Remove-PnPTeamsUser" }, { - "Rank": 2, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 1125, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 2, "CommandName": "Remove-PnPTeamsUser" }, { - "Rank": 1, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Id": 1126, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Rank": 1, "CommandName": "Remove-PnPTenantCdnOrigin" }, { - "Rank": 1, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1127, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Remove-PnPTenantDeletedSite" }, { - "Rank": 2, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Id": 1128, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Rank": 2, "CommandName": "Remove-PnPTenantDeletedSite" }, { - "Rank": 1, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1129, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Remove-PnPTenantSite" }, { - "Rank": 2, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Id": 1130, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "Rank": 2, "CommandName": "Remove-PnPTenantSite" }, { - "Rank": 3, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Id": 1131, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "Rank": 3, "CommandName": "Remove-PnPTenantSite" }, { - "Rank": 1, - "Command": "Remove-PnPTenantSyncClientRestriction", "Id": 1132, + "Command": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1, "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { - "Rank": 1, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Id": 1133, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Rank": 1, "CommandName": "Remove-PnPTenantTheme" }, { - "Rank": 1, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Id": 1134, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1, "CommandName": "Remove-PnPTerm" }, { - "Rank": 2, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 1135, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, "CommandName": "Remove-PnPTerm" }, { - "Rank": 1, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Id": 1136, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Rank": 1, "CommandName": "Remove-PnPTermGroup" }, { - "Rank": 2, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Id": 1137, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "Rank": 2, "CommandName": "Remove-PnPTermGroup" }, { - "Rank": 3, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Id": 1138, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "Rank": 3, "CommandName": "Remove-PnPTermGroup" }, { - "Rank": 1, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Id": 1139, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "Rank": 1, "CommandName": "Remove-PnPTermLabel" }, { - "Rank": 2, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 1140, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Rank": 2, "CommandName": "Remove-PnPTermLabel" }, { - "Rank": 1, - "Command": "Remove-PnPUser -Identity 23", "Id": 1141, + "Command": "Remove-PnPUser -Identity 23", + "Rank": 1, "CommandName": "Remove-PnPUser" }, { - "Rank": 2, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "Id": 1142, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "Rank": 2, "CommandName": "Remove-PnPUser" }, { - "Rank": 3, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Id": 1143, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "Rank": 3, "CommandName": "Remove-PnPUser" }, { - "Rank": 1, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Id": 1144, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Rank": 1, "CommandName": "Remove-PnPUserInfo" }, { - "Rank": 1, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Id": 1145, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "Rank": 1, "CommandName": "Remove-PnPUserProfile" }, { - "Rank": 1, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Id": 1146, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "Rank": 1, "CommandName": "Remove-PnPView" }, { - "Rank": 1, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Id": 1147, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Rank": 1, "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { - "Rank": 1, - "Command": "Remove-PnPWeb -Identity projectA", "Id": 1148, + "Command": "Remove-PnPWeb -Identity projectA", + "Rank": 1, "CommandName": "Remove-PnPWeb" }, { - "Rank": 2, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Id": 1149, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "Rank": 2, "CommandName": "Remove-PnPWeb" }, { - "Rank": 1, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Id": 1150, + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "Rank": 1, "CommandName": "Remove-PnPWebhookSubscription" }, { - "Rank": 1, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 1151, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Rank": 1, "CommandName": "Remove-PnPWebPart" }, { - "Rank": 2, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Id": 1152, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "Rank": 2, "CommandName": "Remove-PnPWebPart" }, { - "Rank": 1, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Id": 1153, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "Rank": 1, "CommandName": "Remove-PnPWikiPage" }, { - "Rank": 1, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Id": 1154, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "Rank": 1, "CommandName": "Rename-PnPFile" }, { - "Rank": 2, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Id": 1155, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "Rank": 2, "CommandName": "Rename-PnPFile" }, { - "Rank": 3, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Id": 1156, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "Rank": 3, "CommandName": "Rename-PnPFile" }, { - "Rank": 1, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Id": 1157, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "Rank": 1, "CommandName": "Rename-PnPFolder" }, { - "Rank": 1, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1158, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1, "CommandName": "Repair-PnPSite" }, { - "Rank": 2, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Id": 1159, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2, "CommandName": "Repair-PnPSite" }, { - "Rank": 1, - "Command": "Request-PnPAccessToken", "Id": 1160, + "Command": "Request-PnPAccessToken", + "Rank": 1, "CommandName": "Request-PnPAccessToken" }, { - "Rank": 2, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Id": 1161, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "Rank": 2, "CommandName": "Request-PnPAccessToken" }, { - "Rank": 3, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "Id": 1162, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "Rank": 3, "CommandName": "Request-PnPAccessToken" }, { - "Rank": 4, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Id": 1163, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "Rank": 4, "CommandName": "Request-PnPAccessToken" }, { - "Rank": 1, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Id": 1164, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "Rank": 1, "CommandName": "Request-PnPPersonalSite" }, { - "Rank": 2, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Id": 1165, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "Rank": 2, "CommandName": "Request-PnPPersonalSite" }, { - "Rank": 1, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Id": 1166, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "Rank": 1, "CommandName": "Request-PnPReIndexList" }, { - "Rank": 1, - "Command": "Request-PnPReIndexWeb", "Id": 1167, + "Command": "Request-PnPReIndexWeb", + "Rank": 1, "CommandName": "Request-PnPReIndexWeb" }, { - "Rank": 1, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Id": 1168, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "Rank": 1, "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Rank": 2, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Id": 1169, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "Rank": 2, "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Rank": 3, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Id": 1170, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "Rank": 3, "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "Rank": 1, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Id": 1171, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "Rank": 1, "CommandName": "Reset-PnPFileVersion" }, { - "Rank": 2, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Id": 1172, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "Rank": 2, "CommandName": "Reset-PnPFileVersion" }, { - "Rank": 1, - "Command": "Reset-PnPLabel -List \"Demo List\"", "Id": 1173, + "Command": "Reset-PnPLabel -List \"Demo List\"", + "Rank": 1, "CommandName": "Reset-PnPLabel" }, { - "Rank": 2, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Id": 1174, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "Rank": 2, "CommandName": "Reset-PnPLabel" }, { - "Rank": 1, - "Command": "Reset-PnPMicrosoft365GroupExpiration", "Id": 1175, + "Command": "Reset-PnPMicrosoft365GroupExpiration", + "Rank": 1, "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { - "Rank": 1, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Id": 1176, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "Rank": 1, "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { - "Rank": 1, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Id": 1177, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "Rank": 1, "CommandName": "Resolve-PnPFolder" }, { - "Rank": 1, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 1178, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Rank": 1, "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { - "Rank": 1, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Id": 1179, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Rank": 1, "CommandName": "Restore-PnPFileVersion" }, { - "Rank": 2, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Id": 1180, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "Rank": 2, "CommandName": "Restore-PnPFileVersion" }, { - "Rank": 3, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Id": 1181, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Rank": 3, "CommandName": "Restore-PnPFileVersion" }, { - "Rank": 1, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Id": 1182, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Rank": 1, "CommandName": "Restore-PnPListItemVersion" }, { - "Rank": 2, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Id": 1183, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Rank": 2, "CommandName": "Restore-PnPListItemVersion" }, { - "Rank": 1, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Id": 1184, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Rank": 1, "CommandName": "Restore-PnPRecycleBinItem" }, { - "Rank": 1, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1185, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "Rank": 2, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Id": 1186, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Rank": 2, "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "Rank": 1, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1187, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Rank": 1, "CommandName": "Restore-PnPTenantSite" }, { - "Rank": 2, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Id": 1188, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Rank": 2, "CommandName": "Restore-PnPTenantSite" }, { - "Rank": 3, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Id": 1189, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "Rank": 3, "CommandName": "Restore-PnPTenantSite" }, { - "Rank": 1, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Id": 1190, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "Rank": 1, "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { - "Rank": 1, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 1191, + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, "CommandName": "Revoke-PnPHubSiteRights" }, { - "Rank": 1, - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 1192, + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Rank": 1, "CommandName": "Revoke-PnPSiteDesignRights" }, { - "Rank": 1, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Id": 1193, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Rank": 1, "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { - "Rank": 1, - "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Id": 1194, + "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "Rank": 1, "CommandName": "Revoke-PnPUserSession" }, { - "Rank": 1, - "Command": "Save-PnPPageConversionLog", "Id": 1195, + "Command": "Save-PnPPageConversionLog", + "Rank": 1, "CommandName": "Save-PnPPageConversionLog" }, { - "Rank": 1, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Id": 1196, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "Rank": 1, "CommandName": "Save-PnPSiteTemplate" }, { - "Rank": 1, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Id": 1197, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "Rank": 1, "CommandName": "Save-PnPTenantTemplate" }, { - "Rank": 1, - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Id": 1198, + "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, - "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": 1199, + "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, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Id": 1200, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "Rank": 3, "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", "Id": 1201, + "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, - "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": 1202, + "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, - "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": 1203, + "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, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Id": 1204, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "Rank": 1, "CommandName": "Set-PnPAdaptiveScopeProperty" }, { - "Rank": 1, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1205, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Rank": 1, "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`\"}\"", "Id": 1206, + "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, - "Command": "Set-PnPAppSideLoading -On", "Id": 1207, + "Command": "Set-PnPAppSideLoading -On", + "Rank": 1, "CommandName": "Set-PnPAppSideLoading" }, { - "Rank": 2, - "Command": "Set-PnPAppSideLoading -Off", "Id": 1208, + "Command": "Set-PnPAppSideLoading -Off", + "Rank": 2, "CommandName": "Set-PnPAppSideLoading" }, { - "Rank": 1, - "Command": "Set-PnPAuditing -EnableAll", "Id": 1209, + "Command": "Set-PnPAuditing -EnableAll", + "Rank": 1, "CommandName": "Set-PnPAuditing" }, { - "Rank": 2, - "Command": "Set-PnPAuditing -DisableAll", "Id": 1210, + "Command": "Set-PnPAuditing -DisableAll", + "Rank": 2, "CommandName": "Set-PnPAuditing" }, { - "Rank": 3, - "Command": "Set-PnPAuditing -RetentionTime 7", "Id": 1211, + "Command": "Set-PnPAuditing -RetentionTime 7", + "Rank": 3, "CommandName": "Set-PnPAuditing" }, { - "Rank": 4, - "Command": "Set-PnPAuditing -TrimAuditLog", "Id": 1212, + "Command": "Set-PnPAuditing -TrimAuditLog", + "Rank": 4, "CommandName": "Set-PnPAuditing" }, { - "Rank": 5, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Id": 1213, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "Rank": 5, "CommandName": "Set-PnPAuditing" }, { - "Rank": 1, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Id": 1214, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "Rank": 1, "CommandName": "Set-PnPAvailablePageLayouts" }, { - "Rank": 1, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Id": 1215, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "Rank": 1, "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "Rank": 2, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Id": 1216, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "Rank": 2, "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "Rank": 1, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Id": 1217, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1, "CommandName": "Set-PnPAzureADGroup" }, { - "Rank": 2, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Id": 1218, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2, "CommandName": "Set-PnPAzureADGroup" }, { - "Rank": 3, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Id": 1219, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "Rank": 3, "CommandName": "Set-PnPAzureADGroup" }, { - "Rank": 1, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Id": 1220, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "Rank": 1, "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Rank": 2, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Id": 1221, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "Rank": 2, "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Rank": 3, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Id": 1222, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "Rank": 3, "CommandName": "Set-PnPBrowserIdleSignout" }, { - "Rank": 1, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Id": 1223, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "Rank": 1, "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 2, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Id": 1224, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "Rank": 2, "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "Rank": 1, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Id": 1225, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "Rank": 1, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 2, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Id": 1226, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "Rank": 2, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 3, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Id": 1227, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "Rank": 3, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 4, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Id": 1228, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "Rank": 4, "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "Rank": 1, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Id": 1229, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Rank": 1, "CommandName": "Set-PnPContentType" }, { - "Rank": 2, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Id": 1230, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "Rank": 2, "CommandName": "Set-PnPContentType" }, { - "Rank": 3, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Id": 1231, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Rank": 3, "CommandName": "Set-PnPContentType" }, { - "Rank": 4, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Id": 1232, + "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, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Id": 1233, + "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, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Id": 1234, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "Rank": 1, "CommandName": "Set-PnPDefaultColumnValues" }, { - "Rank": 2, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Id": 1235, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "Rank": 2, "CommandName": "Set-PnPDefaultColumnValues" }, { - "Rank": 3, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Id": 1236, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "Rank": 3, "CommandName": "Set-PnPDefaultColumnValues" }, { - "Rank": 4, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Id": 1237, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "Rank": 4, "CommandName": "Set-PnPDefaultColumnValues" }, { - "Rank": 1, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Id": 1238, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "Rank": 1, "CommandName": "Set-PnPDefaultContentTypeToList" }, { - "Rank": 1, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Id": 1239, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "Rank": 1, "CommandName": "Set-PnPDefaultPageLayout" }, { - "Rank": 2, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Id": 1240, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "Rank": 2, "CommandName": "Set-PnPDefaultPageLayout" }, { - "Rank": 3, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Id": 1241, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "Rank": 3, "CommandName": "Set-PnPDefaultPageLayout" }, { - "Rank": 1, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Id": 1242, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "Rank": 1, "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Rank": 2, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Id": 1243, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Rank": 2, "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Rank": 3, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Id": 1244, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Rank": 3, "CommandName": "Set-PnPDisableSpacesActivation" }, { - "Rank": 1, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Id": 1245, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "Rank": 1, "CommandName": "Set-PnPDocumentSetField" }, { - "Rank": 2, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Id": 1246, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "Rank": 2, "CommandName": "Set-PnPDocumentSetField" }, { - "Rank": 1, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "Id": 1247, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "Rank": 1, "CommandName": "Set-PnPField" }, { - "Rank": 2, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Id": 1248, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "Rank": 2, "CommandName": "Set-PnPField" }, { - "Rank": 3, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Id": 1249, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "Rank": 3, "CommandName": "Set-PnPField" }, { - "Rank": 1, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Id": 1250, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "Rank": 1, "CommandName": "Set-PnPFileCheckedIn" }, { - "Rank": 2, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Id": 1251, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "Rank": 2, "CommandName": "Set-PnPFileCheckedIn" }, { - "Rank": 1, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Id": 1252, + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "Rank": 1, "CommandName": "Set-PnPFileCheckedOut" }, { - "Rank": 1, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Id": 1253, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1, "CommandName": "Set-PnPFolderPermission" }, { - "Rank": 2, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Id": 1254, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2, "CommandName": "Set-PnPFolderPermission" }, { - "Rank": 3, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Id": 1255, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3, "CommandName": "Set-PnPFolderPermission" }, { - "Rank": 1, - "Command": "Set-PnPFooter -Enabled:$true", "Id": 1256, + "Command": "Set-PnPFooter -Enabled:$true", + "Rank": 1, "CommandName": "Set-PnPFooter" }, { - "Rank": 2, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Id": 1257, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "Rank": 2, "CommandName": "Set-PnPFooter" }, { - "Rank": 3, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Id": 1258, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "Rank": 3, "CommandName": "Set-PnPFooter" }, { - "Rank": 4, - "Command": "Set-PnPFooter -LogoUrl \"\"", "Id": 1259, + "Command": "Set-PnPFooter -LogoUrl \"\"", + "Rank": 4, "CommandName": "Set-PnPFooter" }, { - "Rank": 1, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Id": 1260, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "Rank": 1, "CommandName": "Set-PnPGraphSubscription" }, { - "Rank": 1, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Id": 1261, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "Rank": 1, "CommandName": "Set-PnPGroup" }, { - "Rank": 2, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Id": 1262, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "Rank": 2, "CommandName": "Set-PnPGroup" }, { - "Rank": 1, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Id": 1263, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "Rank": 1, "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 2, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Id": 1264, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "Rank": 2, "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 3, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Id": 1265, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "Rank": 3, "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 4, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Id": 1266, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "Rank": 4, "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 5, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Id": 1267, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "Rank": 5, "CommandName": "Set-PnPGroupPermissions" }, { - "Rank": 1, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Id": 1268, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "Rank": 1, "CommandName": "Set-PnPHideDefaultThemes" }, { - "Rank": 2, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Id": 1269, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "Rank": 2, "CommandName": "Set-PnPHideDefaultThemes" }, { - "Rank": 1, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Id": 1270, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "Rank": 1, "CommandName": "Set-PnPHomePage" }, { - "Rank": 2, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Id": 1271, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "Rank": 2, "CommandName": "Set-PnPHomePage" }, { - "Rank": 1, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Id": 1272, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "Rank": 1, "CommandName": "Set-PnPHomeSite" }, { - "Rank": 2, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Id": 1273, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "Rank": 2, "CommandName": "Set-PnPHomeSite" }, { - "Rank": 1, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "Id": 1274, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "Rank": 1, "CommandName": "Set-PnPHubSite" }, { - "Rank": 2, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "Id": 1275, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "Rank": 2, "CommandName": "Set-PnPHubSite" }, { - "Rank": 3, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Id": 1276, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "Rank": 3, "CommandName": "Set-PnPHubSite" }, { - "Rank": 4, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Id": 1277, + "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, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Id": 1278, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "Rank": 5, "CommandName": "Set-PnPHubSite" }, { - "Rank": 6, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Id": 1279, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "Rank": 6, "CommandName": "Set-PnPHubSite" }, { - "Rank": 1, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Id": 1280, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "Rank": 1, "CommandName": "Set-PnPImageListItemColumn" }, { - "Rank": 2, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Id": 1281, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "Rank": 2, "CommandName": "Set-PnPImageListItemColumn" }, { - "Rank": 1, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Id": 1282, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "Rank": 1, "CommandName": "Set-PnPIndexedProperties" }, { - "Rank": 1, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Id": 1283, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "Rank": 1, "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "Rank": 2, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Id": 1284, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "Rank": 2, "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "Rank": 1, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Id": 1285, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "Rank": 1, "CommandName": "Set-PnPKnowledgeHubSite" }, { - "Rank": 1, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Id": 1286, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "Rank": 1, "CommandName": "Set-PnPLabel" }, { - "Rank": 2, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Id": 1287, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "Rank": 2, "CommandName": "Set-PnPLabel" }, { - "Rank": 1, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Id": 1288, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "Rank": 1, "CommandName": "Set-PnPList" }, { - "Rank": 2, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Id": 1289, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "Rank": 2, "CommandName": "Set-PnPList" }, { - "Rank": 3, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Id": 1290, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "Rank": 3, "CommandName": "Set-PnPList" }, { - "Rank": 4, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Id": 1291, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "Rank": 4, "CommandName": "Set-PnPList" }, { - "Rank": 5, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Id": 1292, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "Rank": 5, "CommandName": "Set-PnPList" }, { - "Rank": 6, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Id": 1293, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "Rank": 6, "CommandName": "Set-PnPList" }, { - "Rank": 7, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Id": 1294, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "Rank": 7, "CommandName": "Set-PnPList" }, { - "Rank": 8, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", "Id": 1295, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Rank": 8, "CommandName": "Set-PnPList" }, { - "Rank": 9, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", "Id": 1296, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "Rank": 9, "CommandName": "Set-PnPList" }, { - "Rank": 10, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", "Id": 1297, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Rank": 10, "CommandName": "Set-PnPList" }, { - "Rank": 11, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", "Id": 1298, + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Rank": 11, "CommandName": "Set-PnPList" }, { - "Rank": 1, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", "Id": 1299, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Rank": 1, "CommandName": "Set-PnPListInformationRightsManagement" }, { - "Rank": 2, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", "Id": 1300, + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "Rank": 2, "CommandName": "Set-PnPListInformationRightsManagement" }, { - "Rank": 1, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 1301, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 1, "CommandName": "Set-PnPListItem" }, { - "Rank": 2, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 1302, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 2, "CommandName": "Set-PnPListItem" }, { - "Rank": 3, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 1303, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Rank": 3, "CommandName": "Set-PnPListItem" }, { - "Rank": 4, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", "Id": 1304, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "Rank": 4, "CommandName": "Set-PnPListItem" }, { - "Rank": 5, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", "Id": 1305, + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Rank": 5, "CommandName": "Set-PnPListItem" }, { - "Rank": 1, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Id": 1306, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Rank": 1, "CommandName": "Set-PnPListItemAsRecord" }, { - "Rank": 2, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", "Id": 1307, + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Rank": 2, "CommandName": "Set-PnPListItemAsRecord" }, { - "Rank": 1, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", "Id": 1308, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1, "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 2, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", "Id": 1309, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2, "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 3, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Id": 1310, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Rank": 3, "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 4, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", "Id": 1311, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "Rank": 4, "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 5, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", "Id": 1312, + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "Rank": 5, "CommandName": "Set-PnPListItemPermission" }, { - "Rank": 1, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", "Id": 1313, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Rank": 1, "CommandName": "Set-PnPListPermission" }, { - "Rank": 2, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Id": 1314, + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Rank": 2, "CommandName": "Set-PnPListPermission" }, { - "Rank": 1, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", "Id": 1315, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Rank": 1, "CommandName": "Set-PnPListRecordDeclaration" }, { - "Rank": 2, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", "Id": 1316, + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Rank": 2, "CommandName": "Set-PnPListRecordDeclaration" }, { - "Rank": 1, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Id": 1317, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Rank": 1, "CommandName": "Set-PnPMasterPage" }, { - "Rank": 2, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", "Id": 1318, + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Rank": 2, "CommandName": "Set-PnPMasterPage" }, { - "Rank": 3, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Id": 1319, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 3, "CommandName": "Set-PnPMasterPage" }, { - "Rank": 4, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", "Id": 1320, + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Rank": 4, "CommandName": "Set-PnPMasterPage" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", "Id": 1321, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", "Id": 1322, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", "Id": 1323, + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", "Id": 1324, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", "Id": 1325, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", "Id": 1326, + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", "Id": 1327, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", "Id": 1328, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Id": 1329, + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", "Id": 1330, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", "Id": 1331, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Id": 1332, + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", "Id": 1333, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", "Id": 1334, + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsRead", "Id": 1335, + "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "Rank": 1, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", "Id": 1336, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Rank": 2, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", "Id": 1337, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Rank": 3, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", "Id": 1338, + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "Rank": 1, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", "Id": 1339, + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Rank": 1, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 2, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Id": 1340, + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Rank": 2, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 3, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", "Id": 1341, + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Rank": 3, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 4, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", "Id": 1342, + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Rank": 4, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 5, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", "Id": 1343, + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Rank": 5, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 6, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Id": 1344, + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Rank": 6, "CommandName": "Set-PnPMicrosoft365Group" }, { - "Rank": 1, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", "Id": 1345, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Rank": 1, "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "Rank": 2, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", "Id": 1346, + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Rank": 2, "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "Rank": 1, - "Command": "Set-PnPMinimalDownloadStrategy -Off", "Id": 1347, + "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Rank": 1, "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "Rank": 2, - "Command": "Set-PnPMinimalDownloadStrategy -On", "Id": 1348, + "Command": "Set-PnPMinimalDownloadStrategy -On", + "Rank": 2, "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "Rank": 1, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", "Id": 1349, + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Rank": 1, "CommandName": "Set-PnPPage" }, { - "Rank": 2, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", "Id": 1350, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Rank": 2, "CommandName": "Set-PnPPage" }, { - "Rank": 3, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", "Id": 1351, + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Rank": 3, "CommandName": "Set-PnPPage" }, { - "Rank": 4, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", "Id": 1352, + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Rank": 4, "CommandName": "Set-PnPPage" }, { - "Rank": 5, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", "Id": 1353, + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "Rank": 5, "CommandName": "Set-PnPPage" }, { - "Rank": 6, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", "Id": 1354, + "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, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", "Id": 1355, + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Rank": 7, "CommandName": "Set-PnPPage" }, { - "Rank": 8, - "Command": "Set-PnPPage -Name \"NewPage\" -Translate", "Id": 1356, + "Command": "Set-PnPPage -Name \"NewPage\" -Translate", + "Rank": 8, "CommandName": "Set-PnPPage" }, { - "Rank": 9, - "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Id": 1357, + "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Rank": 9, "CommandName": "Set-PnPPage" }, { - "Rank": 10, - "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Id": 1358, + "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Rank": 10, "CommandName": "Set-PnPPage" }, { - "Rank": 1, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", "Id": 1359, + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "Rank": 1, "CommandName": "Set-PnPPageTextPart" }, { - "Rank": 1, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", "Id": 1360, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "Rank": 1, "CommandName": "Set-PnPPageWebPart" }, { - "Rank": 2, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", "Id": 1361, + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "Rank": 2, "CommandName": "Set-PnPPageWebPart" }, { - "Rank": 1, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", "Id": 1362, + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Rank": 1, "CommandName": "Set-PnPPlannerBucket" }, { - "Rank": 1, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", "Id": 1363, + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Rank": 1, "CommandName": "Set-PnPPlannerConfiguration" }, { - "Rank": 2, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", "Id": 1364, + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Rank": 2, "CommandName": "Set-PnPPlannerConfiguration" }, { - "Rank": 1, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", "Id": 1365, + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "Rank": 1, "CommandName": "Set-PnPPlannerPlan" }, { - "Rank": 1, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", "Id": 1366, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "Rank": 1, "CommandName": "Set-PnPPlannerTask" }, { - "Rank": 2, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", "Id": 1367, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "Rank": 2, "CommandName": "Set-PnPPlannerTask" }, { - "Rank": 3, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Id": 1368, + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Rank": 3, "CommandName": "Set-PnPPlannerTask" }, { - "Rank": 1, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Id": 1369, + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Rank": 1, "CommandName": "Set-PnPPlannerUserPolicy" }, { - "Rank": 1, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", "Id": 1370, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Rank": 1, "CommandName": "Set-PnPPropertyBagValue" }, { - "Rank": 2, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", "Id": 1371, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Rank": 2, "CommandName": "Set-PnPPropertyBagValue" }, { - "Rank": 3, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", "Id": 1372, + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Rank": 3, "CommandName": "Set-PnPPropertyBagValue" }, { - "Rank": 1, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", "Id": 1373, + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Rank": 1, "CommandName": "Set-PnPRequestAccessEmails" }, { - "Rank": 2, - "Command": "Set-PnPRequestAccessEmails -Disabled", "Id": 1374, + "Command": "Set-PnPRequestAccessEmails -Disabled", + "Rank": 2, "CommandName": "Set-PnPRequestAccessEmails" }, { - "Rank": 3, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", "Id": 1375, + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Rank": 3, "CommandName": "Set-PnPRequestAccessEmails" }, { - "Rank": 1, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", "Id": 1376, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Rank": 1, "CommandName": "Set-PnPRoleDefinition" }, { - "Rank": 2, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", "Id": 1377, + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Rank": 2, "CommandName": "Set-PnPRoleDefinition" }, { - "Rank": 3, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", "Id": 1378, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Rank": 3, "CommandName": "Set-PnPRoleDefinition" }, { - "Rank": 4, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", "Id": 1379, + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Rank": 4, "CommandName": "Set-PnPRoleDefinition" }, { - "Rank": 1, - "Command": "Set-PnPSearchConfiguration -Configuration $config", "Id": 1380, + "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Rank": 1, "CommandName": "Set-PnPSearchConfiguration" }, { - "Rank": 2, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", "Id": 1381, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Rank": 2, "CommandName": "Set-PnPSearchConfiguration" }, { - "Rank": 3, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Id": 1382, + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Rank": 3, "CommandName": "Set-PnPSearchConfiguration" }, { - "Rank": 4, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 1383, + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Rank": 4, "CommandName": "Set-PnPSearchConfiguration" }, { - "Rank": 1, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", "Id": 1384, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Rank": 1, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 2, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", "Id": 1385, + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Rank": 2, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 3, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", "Id": 1386, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Rank": 3, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 4, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", "Id": 1387, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Rank": 4, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 5, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", "Id": 1388, + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Rank": 5, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 6, - "Command": "Set-PnPSearchSettings -SearchScope Tenant", "Id": 1389, + "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Rank": 6, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 7, - "Command": "Set-PnPSearchSettings -SearchScope Hub", "Id": 1390, + "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Rank": 7, "CommandName": "Set-PnPSearchSettings" }, { - "Rank": 1, - "Command": "Set-PnPSite -Classification \"HBI\"", "Id": 1391, + "Command": "Set-PnPSite -Classification \"HBI\"", + "Rank": 1, "CommandName": "Set-PnPSite" }, { - "Rank": 2, - "Command": "Set-PnPSite -Classification $null", "Id": 1392, + "Command": "Set-PnPSite -Classification $null", + "Rank": 2, "CommandName": "Set-PnPSite" }, { - "Rank": 3, - "Command": "Set-PnPSite -DisableFlows", "Id": 1393, + "Command": "Set-PnPSite -DisableFlows", + "Rank": 3, "CommandName": "Set-PnPSite" }, { - "Rank": 4, - "Command": "Set-PnPSite -DisableFlows:$false", "Id": 1394, + "Command": "Set-PnPSite -DisableFlows:$false", + "Rank": 4, "CommandName": "Set-PnPSite" }, { - "Rank": 5, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", "Id": 1395, + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Rank": 5, "CommandName": "Set-PnPSite" }, { - "Rank": 6, - "Command": "Set-PnPSite -NoScriptSite $false", "Id": 1396, + "Command": "Set-PnPSite -NoScriptSite $false", + "Rank": 6, "CommandName": "Set-PnPSite" }, { - "Rank": 1, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", "Id": 1397, + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Rank": 1, "CommandName": "Set-PnPSiteClassification" }, { - "Rank": 1, - "Command": "Set-PnPSiteClosure -State Open", "Id": 1398, + "Command": "Set-PnPSiteClosure -State Open", + "Rank": 1, "CommandName": "Set-PnPSiteClosure" }, { - "Rank": 2, - "Command": "Set-PnPSiteClosure -State Closed", "Id": 1399, + "Command": "Set-PnPSiteClosure -State Closed", + "Rank": 2, "CommandName": "Set-PnPSiteClosure" }, { - "Rank": 1, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", "Id": 1400, + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "Rank": 1, "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\"", "Id": 1401, + "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, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", "Id": 1402, + "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, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", "Id": 1403, + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Rank": 2, "CommandName": "Set-PnPSiteGroup" }, { - "Rank": 1, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", "Id": 1404, + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Rank": 1, "CommandName": "Set-PnPSitePolicy" }, { - "Rank": 1, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Id": 1405, + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Rank": 1, "CommandName": "Set-PnPSiteScript" }, { - "Rank": 1, - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", "Id": 1406, + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Rank": 1, "CommandName": "Set-PnPSiteScriptPackage" }, { - "Rank": 1, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", "Id": 1407, + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Rank": 1, "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "Rank": 2, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", "Id": 1408, + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Rank": 2, "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "Rank": 1, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", "Id": 1409, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 1, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 2, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", "Id": 1410, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Rank": 2, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 3, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Id": 1411, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Rank": 3, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 4, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", "Id": 1412, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Rank": 4, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 5, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Id": 1413, + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Rank": 5, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 6, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", "Id": 1414, + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Rank": 6, "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "Rank": 1, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Id": 1415, + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Rank": 1, "CommandName": "Set-PnPStorageEntity" }, { - "Rank": 2, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", "Id": 1416, + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Rank": 2, "CommandName": "Set-PnPStorageEntity" }, { - "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 1417, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 1418, + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "Rank": 1, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 1419, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "Rank": 2, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 1420, + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "Rank": 1, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", "Id": 1421, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Rank": 1, "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "Rank": 2, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", "Id": 1422, + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Rank": 2, "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "Rank": 1, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", "Id": 1423, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "Rank": 1, "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Rank": 2, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", "Id": 1424, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "Rank": 2, "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Rank": 3, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", "Id": 1425, + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Rank": 3, "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "Rank": 1, - "Command": "Set-PnPTeamifyPromptHidden", "Id": 1426, + "Command": "Set-PnPTeamifyPromptHidden", + "Rank": 1, "CommandName": "Set-PnPTeamifyPromptHidden" }, { - "Rank": 1, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", "Id": 1427, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Rank": 1, "CommandName": "Set-PnPTeamsChannel" }, { - "Rank": 2, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", "Id": 1428, + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "Rank": 2, "CommandName": "Set-PnPTeamsChannel" }, { - "Rank": 1, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", "Id": 1429, + "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, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", "Id": 1430, + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "Rank": 2, "CommandName": "Set-PnpTeamsChannelUser" }, { - "Rank": 1, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", "Id": 1431, + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "Rank": 1, "CommandName": "Set-PnPTeamsTab" }, { - "Rank": 1, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", "Id": 1432, + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Rank": 1, "CommandName": "Set-PnPTeamsTag" }, { - "Rank": 1, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", "Id": 1433, + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Rank": 1, "CommandName": "Set-PnPTeamsTeam" }, { - "Rank": 2, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", "Id": 1434, + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "Rank": 2, "CommandName": "Set-PnPTeamsTeam" }, { - "Rank": 3, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", "Id": 1435, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Rank": 3, "CommandName": "Set-PnPTeamsTeam" }, { - "Rank": 4, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", "Id": 1436, + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Rank": 4, "CommandName": "Set-PnPTeamsTeam" }, { - "Rank": 1, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", "Id": 1437, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Rank": 1, "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Rank": 2, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", "Id": 1438, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Rank": 2, "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Rank": 3, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", "Id": 1439, + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Rank": 3, "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "Rank": 1, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", "Id": 1440, + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Rank": 1, "CommandName": "Set-PnPTeamsTeamPicture" }, { - "Rank": 1, - "Command": "Set-PnPTemporarilyDisableAppBar $true", "Id": 1441, + "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Rank": 1, "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "Rank": 2, - "Command": "Set-PnPTemporarilyDisableAppBar $false", "Id": 1442, + "Command": "Set-PnPTemporarilyDisableAppBar $false", + "Rank": 2, "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "Rank": 1, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", "Id": 1443, + "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, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", "Id": 1444, + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Rank": 2, "CommandName": "Set-PnPTenant" }, { - "Rank": 3, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", "Id": 1445, + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Rank": 3, "CommandName": "Set-PnPTenant" }, { - "Rank": 4, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", "Id": 1446, + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Rank": 4, "CommandName": "Set-PnPTenant" }, { - "Rank": 1, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", "Id": 1447, + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Rank": 1, "CommandName": "Set-PnPTenantAppCatalogUrl" }, { - "Rank": 1, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", "Id": 1448, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Rank": 1, "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Rank": 2, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", "Id": 1449, + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Rank": 2, "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Rank": 3, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", "Id": 1450, + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "Rank": 3, "CommandName": "Set-PnPTenantCdnEnabled" }, { - "Rank": 1, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", "Id": 1451, + "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, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", "Id": 1452, + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "Rank": 2, "CommandName": "Set-PnPTenantCdnPolicy" }, { - "Rank": 1, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", "Id": 1453, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "Rank": 1, "CommandName": "Set-PnPTenantSite" }, { - "Rank": 2, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", "Id": 1454, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "Rank": 2, "CommandName": "Set-PnPTenantSite" }, { - "Rank": 3, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", "Id": 1455, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "Rank": 3, "CommandName": "Set-PnPTenantSite" }, { - "Rank": 4, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 1456, + "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, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", "Id": 1457, + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Rank": 5, "CommandName": "Set-PnPTenantSite" }, { - "Rank": 1, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", "Id": 1458, + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Rank": 1, "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "Rank": 2, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", "Id": 1459, + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Rank": 2, "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "Rank": 1, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", "Id": 1460, + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "Rank": 1, "CommandName": "Set-PnPTerm" }, { - "Rank": 2, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Id": 1461, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 2, "CommandName": "Set-PnPTerm" }, { - "Rank": 3, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", "Id": 1462, + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Rank": 3, "CommandName": "Set-PnPTerm" }, { - "Rank": 1, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", "Id": 1463, + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Rank": 1, "CommandName": "Set-PnPTermGroup" }, { - "Rank": 1, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", "Id": 1464, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Rank": 1, "CommandName": "Set-PnPTermSet" }, { - "Rank": 2, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", "Id": 1465, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Rank": 2, "CommandName": "Set-PnPTermSet" }, { - "Rank": 3, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", "Id": 1466, + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Rank": 3, "CommandName": "Set-PnPTermSet" }, { - "Rank": 1, - "Command": "Set-PnPTheme", "Id": 1467, + "Command": "Set-PnPTheme", + "Rank": 1, "CommandName": "Set-PnPTheme" }, { - "Rank": 2, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", "Id": 1468, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "Rank": 2, "CommandName": "Set-PnPTheme" }, { - "Rank": 3, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", "Id": 1469, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "Rank": 3, "CommandName": "Set-PnPTheme" }, { - "Rank": 4, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", "Id": 1470, + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Rank": 4, "CommandName": "Set-PnPTheme" }, { - "Rank": 1, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", "Id": 1471, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Rank": 1, "CommandName": "Set-PnPTraceLog" }, { - "Rank": 2, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", "Id": 1472, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Rank": 2, "CommandName": "Set-PnPTraceLog" }, { - "Rank": 3, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", "Id": 1473, + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Rank": 3, "CommandName": "Set-PnPTraceLog" }, { - "Rank": 4, - "Command": "Set-PnPTraceLog -Off", "Id": 1474, + "Command": "Set-PnPTraceLog -Off", + "Rank": 4, "CommandName": "Set-PnPTraceLog" }, { - "Rank": 1, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", "Id": 1475, + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "Rank": 1, "CommandName": "Set-PnPUserOneDriveQuota" }, { - "Rank": 1, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", "Id": 1476, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "Rank": 1, "CommandName": "Set-PnPUserProfileProperty" }, { - "Rank": 2, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", "Id": 1477, + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "Rank": 2, "CommandName": "Set-PnPUserProfileProperty" }, { - "Rank": 1, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", "Id": 1478, + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "Rank": 1, "CommandName": "Set-PnPView" }, { - "Rank": 2, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", "Id": 1479, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "Rank": 2, "CommandName": "Set-PnPView" }, { - "Rank": 3, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", "Id": 1480, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "Rank": 3, "CommandName": "Set-PnPView" }, { - "Rank": 4, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", "Id": 1481, + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "Rank": 4, "CommandName": "Set-PnPView" }, { - "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": 1482, + "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, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", "Id": 1483, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "Rank": 2, "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", "Id": 1484, + "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, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", "Id": 1485, + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Rank": 4, "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "Rank": 1, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", "Id": 1486, + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Rank": 1, "CommandName": "Set-PnPWeb" }, { - "Rank": 2, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", "Id": 1487, + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Rank": 2, "CommandName": "Set-PnPWeb" }, { - "Rank": 3, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", "Id": 1488, + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Rank": 3, "CommandName": "Set-PnPWeb" }, { - "Rank": 4, - "Command": "Set-PnPWeb -NoCrawl:$true", "Id": 1489, + "Command": "Set-PnPWeb -NoCrawl:$true", + "Rank": 4, "CommandName": "Set-PnPWeb" }, { - "Rank": 1, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", "Id": 1490, + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Rank": 1, "CommandName": "Set-PnPWebHeader" }, { - "Rank": 2, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", "Id": 1491, + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Rank": 2, "CommandName": "Set-PnPWebHeader" }, { - "Rank": 3, - "Command": "Set-PnPWebHeader -LogoAlignment Middle", "Id": 1492, + "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "Rank": 3, "CommandName": "Set-PnPWebHeader" }, { - "Rank": 1, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", "Id": 1493, + "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, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Id": 1494, + "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, - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", "Id": 1495, + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", + "Rank": 1, "CommandName": "Set-PnPWebPartProperty" }, { - "Rank": 1, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", "Id": 1496, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Rank": 1, "CommandName": "Set-PnPWebPermission" }, { - "Rank": 2, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", "Id": 1497, + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Rank": 2, "CommandName": "Set-PnPWebPermission" }, { - "Rank": 3, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", "Id": 1498, + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Rank": 3, "CommandName": "Set-PnPWebPermission" }, { - "Rank": 4, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", "Id": 1499, + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Rank": 4, "CommandName": "Set-PnPWebPermission" }, { - "Rank": 1, - "Command": "Set-PnPWebTheme -Theme MyTheme", "Id": 1500, + "Command": "Set-PnPWebTheme -Theme MyTheme", + "Rank": 1, "CommandName": "Set-PnPWebTheme" }, { - "Rank": 2, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", "Id": 1501, + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "Rank": 2, "CommandName": "Set-PnPWebTheme" }, { - "Rank": 1, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", "Id": 1502, + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Rank": 1, "CommandName": "Set-PnPWikiPageContent" }, { - "Rank": 1, - "Command": "Submit-PnPSearchQuery -Query \"finance\"", "Id": 1503, + "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Rank": 1, "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 2, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", "Id": 1504, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Rank": 2, "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 3, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", "Id": 1505, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Rank": 3, "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 4, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", "Id": 1506, + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "Rank": 4, "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 5, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", "Id": 1507, + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "Rank": 5, "CommandName": "Submit-PnPSearchQuery" }, { - "Rank": 1, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", "Id": 1508, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Rank": 1, "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "Rank": 2, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", "Id": 1509, + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "Rank": 2, "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "Rank": 1, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1510, + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Sync-PnPAppToTeams" }, { - "Rank": 1, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", "Id": 1511, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Rank": 1, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Rank": 2, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", "Id": 1512, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "Rank": 2, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Rank": 3, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", "Id": 1513, + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Rank": 3, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "Rank": 1, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", "Id": 1514, + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Rank": 1, "CommandName": "Test-PnPListItemIsRecord" }, { - "Rank": 1, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", "Id": 1515, + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Rank": 1, "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { - "Rank": 1, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1516, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Rank": 1, "CommandName": "Test-PnPSite" }, { - "Rank": 2, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Id": 1517, + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Rank": 2, "CommandName": "Test-PnPSite" }, { - "Rank": 1, - "Command": "Test-PnPTenantTemplate -Template $myTemplate", "Id": 1518, + "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Rank": 1, "CommandName": "Test-PnPTenantTemplate" }, { - "Rank": 1, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", "Id": 1519, + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Rank": 1, "CommandName": "Undo-PnPFileCheckedOut" }, { - "Rank": 1, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1520, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Uninstall-PnPApp" }, { - "Rank": 2, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1521, + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Uninstall-PnPApp" }, { - "Rank": 1, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1522, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Unpublish-PnPApp" }, { - "Rank": 2, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1523, + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Unpublish-PnPApp" }, { - "Rank": 1, - "Command": "Unpublish-PnPContentType -ContentType 0x0101", "Id": 1524, + "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Rank": 1, "CommandName": "Unpublish-PnPContentType" }, { - "Rank": 1, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Id": 1525, + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Rank": 1, "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", "Id": 1526, + "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, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Id": 1527, + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Rank": 1, "CommandName": "Unregister-PnPHubSite" }, { - "Rank": 1, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1528, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Rank": 1, "CommandName": "Update-PnPApp" }, { - "Rank": 2, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1529, + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Rank": 2, "CommandName": "Update-PnPApp" }, { - "Rank": 1, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Id": 1530, + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Rank": 1, "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Rank": 2, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", "Id": 1531, + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Rank": 2, "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Rank": 3, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", "Id": 1532, + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Rank": 3, "CommandName": "Update-PnPAvailableSiteClassification" }, { - "Rank": 1, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", "Id": 1533, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Rank": 1, "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Rank": 2, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Id": 1534, + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Rank": 2, "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Rank": 3, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", "Id": 1535, + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "Rank": 3, "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "Rank": 1, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", "Id": 1536, + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "Rank": 1, "CommandName": "Update-PnPTeamsApp" }, { - "Rank": 1, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 1537, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Rank": 1, "CommandName": "Update-PnPTeamsUser" }, { - "Rank": 2, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Id": 1538, + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Rank": 2, "CommandName": "Update-PnPTeamsUser" }, { - "Rank": 3, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", "Id": 1539, + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "Rank": 3, "CommandName": "Update-PnPTeamsUser" }, { - "Rank": 1, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", "Id": 1540, + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Rank": 1, "CommandName": "Update-PnPUserType" } ] diff --git a/version.txt b/version.txt index ab554c550..587927f94 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.18 \ No newline at end of file +2.2.19 \ No newline at end of file From 1e7ed457f194fc147db67f35ad7be00703ef6ed3 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Thu, 20 Jul 2023 02:48:19 +0000 Subject: [PATCH 09/21] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 9240 ++++++++--------- version.txt | 2 +- 3 files changed, 4622 insertions(+), 4622 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index a304590aa..0edcd1b70 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -6bc4fd4b2d37e8c46b94742d0f52756e1b275393 \ No newline at end of file +697a27179fae065b17a55788a92947bae852b052 \ 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 1088d76f6..2e1ef28bb 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9242 +1,9242 @@ [ { - "Id": 1, + "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -List \"Demo List\"", - "Rank": 1, - "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)", - "Rank": 2, - "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\"", - "Rank": 3, - "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))", - "Rank": 4, - "CommandName": "Add-PnPAlert" + "Id": 4, + "Rank": 4 }, { - "Id": 5, + "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Rank": 1, - "CommandName": "Add-PnPApp" + "Id": 5, + "Rank": 1 }, { - "Id": 6, + "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Rank": 2, - "CommandName": "Add-PnPApp" + "Id": 6, + "Rank": 2 }, { - "Id": 7, + "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Rank": 3, - "CommandName": "Add-PnPApp" + "Id": 7, + "Rank": 3 }, { - "Id": 8, + "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "Rank": 4, - "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`\"}", - "Rank": 1, - "CommandName": "Add-PnPApplicationCustomizer" + "Id": 9, + "Rank": 1 }, { - "Id": 10, + "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "Rank": 1, - "CommandName": "Add-PnPAvailableSiteClassification" + "Id": 10, + "Rank": 1 }, { - "Id": 11, + "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Rank": 2, - "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\"", - "Rank": 1, - "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", - "Rank": 2, - "CommandName": "Add-PnPAzureADGroupMember" + "Id": 13, + "Rank": 2 }, { - "Id": 14, + "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3, - "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\"", - "Rank": 1, - "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", - "Rank": 2, - "CommandName": "Add-PnPAzureADGroupOwner" + "Id": 16, + "Rank": 2 }, { - "Id": 17, + "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3, - "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", - "Rank": 1, - "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\"", - "Rank": 2, - "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", - "Rank": 1, - "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\"", - "Rank": 2, - "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\"", - "Rank": 3, - "CommandName": "Add-PnPContentType" + "Id": 22, + "Rank": 3 }, { - "Id": 23, + "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\"", - "Rank": 4, - "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", - "Rank": 5, - "CommandName": "Add-PnPContentType" + "Id": 24, + "Rank": 5 }, { - "Id": 25, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "Rank": 1, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "Id": 25, + "Rank": 1 }, { - "Id": 26, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Rank": 2, - "CommandName": "Add-PnPContentTypesFromContentTypeHub" + "Id": 26, + "Rank": 2 }, { - "Id": 27, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "Id": 27, + "Rank": 1 }, { - "Id": 28, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, - "CommandName": "Add-PnPContentTypeToDocumentSet" + "Id": 28, + "Rank": 2 }, { - "Id": 29, + "CommandName": "Add-PnPContentTypeToList", "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "Rank": 1, - "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`\"}\"", - "Rank": 1, - "CommandName": "Add-PnPCustomAction" + "Id": 30, + "Rank": 1 }, { - "Id": 31, + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "Rank": 1, - "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", - "Rank": 2, - "CommandName": "Add-PnPDataRowsToSiteTemplate" + "Id": 32, + "Rank": 2 }, { - "Id": 33, + "CommandName": "Add-PnPDocumentSet", "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Rank": 1, - "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", - "Rank": 1, - "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", - "Rank": 2, - "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", - "Rank": 3, - "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", - "Rank": 4, - "CommandName": "Add-PnPEventReceiver" + "Id": 37, + "Rank": 4 }, { - "Id": 38, + "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "Rank": 1, - "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\"", - "Rank": 2, - "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\"", - "Rank": 3, - "CommandName": "Add-PnPField" + "Id": 40, + "Rank": 3 }, { - "Id": 41, + "CommandName": "Add-PnPField", "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "Rank": 4, - "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\"", - "Rank": 5, - "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()\"", - "Rank": 6, - "CommandName": "Add-PnPField" + "Id": 43, + "Rank": 6 }, { - "Id": 44, + "CommandName": "Add-PnPFieldToContentType", "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1, - "CommandName": "Add-PnPFieldToContentType" + "Id": 44, + "Rank": 1 }, { - "Id": 45, + "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Rank": 1, - "CommandName": "Add-PnPFile" + "Id": 45, + "Rank": 1 }, { - "Id": 46, + "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "Rank": 2, - "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\"}", - "Rank": 3, - "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\"}", - "Rank": 4, - "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\"}", - "Rank": 5, - "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}", - "Rank": 6, - "CommandName": "Add-PnPFile" + "Id": 50, + "Rank": 6 }, { - "Id": 51, + "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Rank": 7, - "CommandName": "Add-PnPFile" + "Id": 51, + "Rank": 7 }, { - "Id": 52, + "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 8, - "CommandName": "Add-PnPFile" + "Id": 52, + "Rank": 8 }, { - "Id": 53, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "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!\"", - "Rank": 2, - "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)", - "Rank": 3, - "CommandName": "Add-PnPFileAnonymousSharingLink" + "Id": 55, + "Rank": 3 }, { - "Id": 56, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "CommandName": "Add-PnPFileOrganizationalSharingLink" + "Id": 56, + "Rank": 1 }, { - "Id": 57, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "Rank": 2, - "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", - "Rank": 1, - "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", - "Rank": 2, - "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)", - "Rank": 3, - "CommandName": "Add-PnPFileSharingInvite" + "Id": 60, + "Rank": 3 }, { - "Id": 61, + "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "Rank": 1, - "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\"", - "Rank": 2, - "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", - "Rank": 3, - "CommandName": "Add-PnPFileToSiteTemplate" + "Id": 63, + "Rank": 3 }, { - "Id": 64, + "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "Rank": 4, - "CommandName": "Add-PnPFileToSiteTemplate" + "Id": 64, + "Rank": 4 }, { - "Id": 65, + "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "Rank": 5, - "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\"", - "Rank": 1, - "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\"", - "Rank": 2, - "CommandName": "Add-PnPFileUserSharingLink" + "Id": 67, + "Rank": 2 }, { - "Id": 68, + "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1, - "CommandName": "Add-PnPFolder" + "Id": 68, + "Rank": 1 }, { - "Id": 69, + "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Rank": 2, - "CommandName": "Add-PnPFolder" + "Id": 69, + "Rank": 2 }, { - "Id": 70, + "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Rank": 3, - "CommandName": "Add-PnPFolder" + "Id": 70, + "Rank": 3 }, { - "Id": 71, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "Id": 71, + "Rank": 1 }, { - "Id": 72, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2, - "CommandName": "Add-PnPFolderAnonymousSharingLink" + "Id": 72, + "Rank": 2 }, { - "Id": 73, + "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": 73, + "Rank": 3 }, { - "Id": 74, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "Id": 74, + "Rank": 1 }, { - "Id": 75, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Rank": 2, - "CommandName": "Add-PnPFolderOrganizationalSharingLink" + "Id": 75, + "Rank": 2 }, { - "Id": 76, + "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1, - "CommandName": "Add-PnPFolderSharingInvite" + "Id": 76, + "Rank": 1 }, { - "Id": 77, + "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": 77, + "Rank": 2 }, { - "Id": 78, + "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": 78, + "Rank": 3 }, { - "Id": 79, + "CommandName": "Add-PnPFolderUserSharingLink", "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Add-PnPFolderUserSharingLink" + "Id": 79, + "Rank": 1 }, { - "Id": 80, + "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": 80, + "Rank": 2 }, { - "Id": 81, + "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1, - "CommandName": "Add-PnPGroupMember" + "Id": 81, + "Rank": 1 }, { - "Id": 82, + "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Rank": 2, - "CommandName": "Add-PnPGroupMember" + "Id": 82, + "Rank": 2 }, { - "Id": 83, + "CommandName": "Add-PnPHtmlPublishingPageLayout", "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Rank": 1, - "CommandName": "Add-PnPHtmlPublishingPageLayout" + "Id": 83, + "Rank": 1 }, { - "Id": 84, + "CommandName": "Add-PnPHubSiteAssociation", "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "Rank": 1, - "CommandName": "Add-PnPHubSiteAssociation" + "Id": 84, + "Rank": 1 }, { - "Id": 85, + "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "Rank": 1, - "CommandName": "Add-PnPHubToHubAssociation" + "Id": 85, + "Rank": 1 }, { - "Id": 86, + "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": 86, + "Rank": 2 }, { - "Id": 87, + "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": 87, + "Rank": 3 }, { - "Id": 88, + "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "Rank": 1, - "CommandName": "Add-PnPJavaScriptBlock" + "Id": 88, + "Rank": 1 }, { - "Id": 89, + "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Rank": 2, - "CommandName": "Add-PnPJavaScriptBlock" + "Id": 89, + "Rank": 2 }, { - "Id": 90, + "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Rank": 1, - "CommandName": "Add-PnPJavaScriptLink" + "Id": 90, + "Rank": 1 }, { - "Id": 91, + "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "Rank": 2, - "CommandName": "Add-PnPJavaScriptLink" + "Id": 91, + "Rank": 2 }, { - "Id": 92, + "CommandName": "Add-PnPListDesign", "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "Rank": 1, - "CommandName": "Add-PnPListDesign" + "Id": 92, + "Rank": 1 }, { - "Id": 93, + "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": 93, + "Rank": 2 }, { - "Id": 94, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Rank": 1, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "Id": 94, + "Rank": 1 }, { - "Id": 95, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Rank": 2, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "Id": 95, + "Rank": 2 }, { - "Id": 96, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Rank": 3, - "CommandName": "Add-PnPListFoldersToSiteTemplate" + "Id": 96, + "Rank": 3 }, { - "Id": 97, + "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1, - "CommandName": "Add-PnPListItem" + "Id": 97, + "Rank": 1 }, { - "Id": 98, + "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2, - "CommandName": "Add-PnPListItem" + "Id": 98, + "Rank": 2 }, { - "Id": 99, + "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "Rank": 3, - "CommandName": "Add-PnPListItem" + "Id": 99, + "Rank": 3 }, { - "Id": 100, + "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "Rank": 4, - "CommandName": "Add-PnPListItem" + "Id": 100, + "Rank": 4 }, { - "Id": 101, + "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "Rank": 5, - "CommandName": "Add-PnPListItem" + "Id": 101, + "Rank": 5 }, { - "Id": 102, + "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "Rank": 1, - "CommandName": "Add-PnPListItemAttachment" + "Id": 102, + "Rank": 1 }, { - "Id": 103, + "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 2, - "CommandName": "Add-PnPListItemAttachment" + "Id": 103, + "Rank": 2 }, { - "Id": 104, + "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "Rank": 3, - "CommandName": "Add-PnPListItemAttachment" + "Id": 104, + "Rank": 3 }, { - "Id": 105, + "CommandName": "Add-PnPListItemComment", "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Rank": 1, - "CommandName": "Add-PnPListItemComment" + "Id": 105, + "Rank": 1 }, { - "Id": 106, + "CommandName": "Add-PnPMasterPage", "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "Rank": 1, - "CommandName": "Add-PnPMasterPage" + "Id": 106, + "Rank": 1 }, { - "Id": 107, + "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupMember" + "Id": 107, + "Rank": 1 }, { - "Id": 108, + "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": 108, + "Rank": 2 }, { - "Id": 109, + "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupOwner" + "Id": 109, + "Rank": 1 }, { - "Id": 110, + "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": 110, + "Rank": 2 }, { - "Id": 111, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "Rank": 1, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "Id": 111, + "Rank": 1 }, { - "Id": 112, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Rank": 2, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "Id": 112, + "Rank": 2 }, { - "Id": 113, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Rank": 3, - "CommandName": "Add-PnPMicrosoft365GroupToSite" + "Id": 113, + "Rank": 3 }, { - "Id": 114, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "Rank": 1, - "CommandName": "Add-PnPNavigationNode" + "Id": 114, + "Rank": 1 }, { - "Id": 115, + "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": 115, + "Rank": 2 }, { - "Id": 116, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "Rank": 3, - "CommandName": "Add-PnPNavigationNode" + "Id": 116, + "Rank": 3 }, { - "Id": 117, + "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": 117, + "Rank": 4 }, { - "Id": 118, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Rank": 5, - "CommandName": "Add-PnPNavigationNode" + "Id": 118, + "Rank": 5 }, { - "Id": 119, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Rank": 6, - "CommandName": "Add-PnPNavigationNode" + "Id": 119, + "Rank": 6 }, { - "Id": 120, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Rank": 7, - "CommandName": "Add-PnPNavigationNode" + "Id": 120, + "Rank": 7 }, { - "Id": 121, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "Rank": 8, - "CommandName": "Add-PnPNavigationNode" + "Id": 121, + "Rank": 8 }, { - "Id": 122, + "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Rank": 1, - "CommandName": "Add-PnPOrgAssetsLibrary" + "Id": 122, + "Rank": 1 }, { - "Id": 123, + "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": 123, + "Rank": 2 }, { - "Id": 124, + "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "Rank": 3, - "CommandName": "Add-PnPOrgAssetsLibrary" + "Id": 124, + "Rank": 3 }, { - "Id": 125, + "CommandName": "Add-PnPOrgNewsSite", "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Rank": 1, - "CommandName": "Add-PnPOrgNewsSite" + "Id": 125, + "Rank": 1 }, { - "Id": 126, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\"", - "Rank": 1, - "CommandName": "Add-PnPPage" + "Id": 126, + "Rank": 1 }, { - "Id": 127, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Rank": 2, - "CommandName": "Add-PnPPage" + "Id": 127, + "Rank": 2 }, { - "Id": 128, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Rank": 3, - "CommandName": "Add-PnPPage" + "Id": 128, + "Rank": 3 }, { - "Id": 129, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Rank": 4, - "CommandName": "Add-PnPPage" + "Id": 129, + "Rank": 4 }, { - "Id": 130, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Rank": 5, - "CommandName": "Add-PnPPage" + "Id": 130, + "Rank": 5 }, { - "Id": 131, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Rank": 6, - "CommandName": "Add-PnPPage" + "Id": 131, + "Rank": 6 }, { - "Id": 132, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7, - "CommandName": "Add-PnPPage" + "Id": 132, + "Rank": 7 }, { - "Id": 133, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8, - "CommandName": "Add-PnPPage" + "Id": 133, + "Rank": 8 }, { - "Id": 134, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, - "CommandName": "Add-PnPPage" + "Id": 134, + "Rank": 9 }, { - "Id": 135, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, - "CommandName": "Add-PnPPage" + "Id": 135, + "Rank": 10 }, { - "Id": 136, + "CommandName": "Add-PnPPageImageWebPart", "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Rank": 1, - "CommandName": "Add-PnPPageImageWebPart" + "Id": 136, + "Rank": 1 }, { - "Id": 137, + "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": 137, + "Rank": 2 }, { - "Id": 138, + "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Rank": 1, - "CommandName": "Add-PnPPageSection" + "Id": 138, + "Rank": 1 }, { - "Id": 139, + "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Rank": 2, - "CommandName": "Add-PnPPageSection" + "Id": 139, + "Rank": 2 }, { - "Id": 140, + "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Rank": 1, - "CommandName": "Add-PnPPageTextPart" + "Id": 140, + "Rank": 1 }, { - "Id": 141, + "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 2, - "CommandName": "Add-PnPPageTextPart" + "Id": 141, + "Rank": 2 }, { - "Id": 142, + "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": 142, + "Rank": 3 }, { - "Id": 143, + "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Rank": 1, - "CommandName": "Add-PnPPageWebPart" + "Id": 143, + "Rank": 1 }, { - "Id": 144, + "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Rank": 2, - "CommandName": "Add-PnPPageWebPart" + "Id": 144, + "Rank": 2 }, { - "Id": 145, + "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Rank": 3, - "CommandName": "Add-PnPPageWebPart" + "Id": 145, + "Rank": 3 }, { - "Id": 146, + "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Rank": 1, - "CommandName": "Add-PnPPlannerBucket" + "Id": 146, + "Rank": 1 }, { - "Id": 147, + "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Rank": 2, - "CommandName": "Add-PnPPlannerBucket" + "Id": 147, + "Rank": 2 }, { - "Id": 148, + "CommandName": "Add-PnPPlannerRoster", "Command": "Add-PnPPlannerRoster", - "Rank": 1, - "CommandName": "Add-PnPPlannerRoster" + "Id": 148, + "Rank": 1 }, { - "Id": 149, + "CommandName": "Add-PnPPlannerRosterMember", "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Add-PnPPlannerRosterMember" + "Id": 149, + "Rank": 1 }, { - "Id": 150, + "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 1, - "CommandName": "Add-PnPPlannerTask" + "Id": 150, + "Rank": 1 }, { - "Id": 151, + "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 2, - "CommandName": "Add-PnPPlannerTask" + "Id": 151, + "Rank": 2 }, { - "Id": 152, + "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": 152, + "Rank": 3 }, { - "Id": 153, + "CommandName": "Add-PnPPublishingImageRendition", "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1, - "CommandName": "Add-PnPPublishingImageRendition" + "Id": 153, + "Rank": 1 }, { - "Id": 154, + "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Rank": 1, - "CommandName": "Add-PnPPublishingPage" + "Id": 154, + "Rank": 1 }, { - "Id": 155, + "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "Rank": 2, - "CommandName": "Add-PnPPublishingPage" + "Id": 155, + "Rank": 2 }, { - "Id": 156, + "CommandName": "Add-PnPPublishingPageLayout", "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Rank": 1, - "CommandName": "Add-PnPPublishingPageLayout" + "Id": 156, + "Rank": 1 }, { - "Id": 157, + "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Rank": 1, - "CommandName": "Add-PnPRoleDefinition" + "Id": 157, + "Rank": 1 }, { - "Id": 158, + "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Rank": 2, - "CommandName": "Add-PnPRoleDefinition" + "Id": 158, + "Rank": 2 }, { - "Id": 159, + "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Rank": 3, - "CommandName": "Add-PnPRoleDefinition" + "Id": 159, + "Rank": 3 }, { - "Id": 160, + "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAdmin" + "Id": 160, + "Rank": 1 }, { - "Id": 161, + "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAdmin" + "Id": 161, + "Rank": 2 }, { - "Id": 162, + "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Rank": 3, - "CommandName": "Add-PnPSiteCollectionAdmin" + "Id": 162, + "Rank": 3 }, { - "Id": 163, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "Id": 163, + "Rank": 1 }, { - "Id": 164, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 2, - "CommandName": "Add-PnPSiteCollectionAppCatalog" + "Id": 164, + "Rank": 2 }, { - "Id": 165, + "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, - "CommandName": "Add-PnPSiteDesign" + "Id": 165, + "Rank": 1 }, { - "Id": 166, + "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": 166, + "Rank": 2 }, { - "Id": 167, + "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": 167, + "Rank": 3 }, { - "Id": 168, + "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Rank": 1, - "CommandName": "Add-PnPSiteDesignFromWeb" + "Id": 168, + "Rank": 1 }, { - "Id": 169, + "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": 169, + "Rank": 2 }, { - "Id": 170, + "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": 170, + "Rank": 3 }, { - "Id": 171, + "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, - "CommandName": "Add-PnPSiteDesignTask" + "Id": 171, + "Rank": 1 }, { - "Id": 172, + "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": 172, + "Rank": 2 }, { - "Id": 173, + "CommandName": "Add-PnPSiteScript", "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "Rank": 1, - "CommandName": "Add-PnPSiteScript" + "Id": 173, + "Rank": 1 }, { - "Id": 174, + "CommandName": "Add-PnPSiteScriptPackage", "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "Rank": 1, - "CommandName": "Add-PnPSiteScriptPackage" + "Id": 174, + "Rank": 1 }, { - "Id": 175, + "CommandName": "Add-PnPSiteTemplate", "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Rank": 1, - "CommandName": "Add-PnPSiteTemplate" + "Id": 175, + "Rank": 1 }, { - "Id": 176, + "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Rank": 1, - "CommandName": "Add-PnPStoredCredential" + "Id": 176, + "Rank": 1 }, { - "Id": 177, + "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": 177, + "Rank": 2 }, { - "Id": 178, + "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": 178, + "Rank": 3 }, { - "Id": 179, + "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Rank": 1, - "CommandName": "Add-PnPTaxonomyField" + "Id": 179, + "Rank": 1 }, { - "Id": 180, + "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "Rank": 2, - "CommandName": "Add-PnPTaxonomyField" + "Id": 180, + "Rank": 2 }, { - "Id": 181, + "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "Rank": 1, - "CommandName": "Add-PnPTeamsChannel" + "Id": 181, + "Rank": 1 }, { - "Id": 182, + "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Rank": 2, - "CommandName": "Add-PnPTeamsChannel" + "Id": 182, + "Rank": 2 }, { - "Id": 183, + "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "Rank": 3, - "CommandName": "Add-PnPTeamsChannel" + "Id": 183, + "Rank": 3 }, { - "Id": 184, + "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": 184, + "Rank": 4 }, { - "Id": 185, + "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, - "CommandName": "Add-PnpTeamsChannelUser" + "Id": 185, + "Rank": 1 }, { - "Id": 186, + "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": 186, + "Rank": 2 }, { - "Id": 187, + "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, - "CommandName": "Add-PnPTeamsTab" + "Id": 187, + "Rank": 1 }, { - "Id": 188, + "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": 188, + "Rank": 2 }, { - "Id": 189, + "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": 189, + "Rank": 3 }, { - "Id": 190, + "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": 190, + "Rank": 4 }, { - "Id": 191, + "CommandName": "Add-PnPTeamsTeam", "Command": "Add-PnPTeamsTeam", - "Rank": 1, - "CommandName": "Add-PnPTeamsTeam" + "Id": 191, + "Rank": 1 }, { - "Id": 192, + "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1, - "CommandName": "Add-PnPTeamsUser" + "Id": 192, + "Rank": 1 }, { - "Id": 193, + "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, - "CommandName": "Add-PnPTeamsUser" + "Id": 193, + "Rank": 2 }, { - "Id": 194, + "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "Rank": 3, - "CommandName": "Add-PnPTeamsUser" + "Id": 194, + "Rank": 3 }, { - "Id": 195, + "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "Rank": 4, - "CommandName": "Add-PnPTeamsUser" + "Id": 195, + "Rank": 4 }, { - "Id": 196, + "CommandName": "Add-PnPTenantCdnOrigin", "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, - "CommandName": "Add-PnPTenantCdnOrigin" + "Id": 196, + "Rank": 1 }, { - "Id": 197, + "CommandName": "Add-PnPTenantSequence", "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Rank": 1, - "CommandName": "Add-PnPTenantSequence" + "Id": 197, + "Rank": 1 }, { - "Id": 198, + "CommandName": "Add-PnPTenantSequenceSite", "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSite" + "Id": 198, + "Rank": 1 }, { - "Id": 199, + "CommandName": "Add-PnPTenantSequenceSubSite", "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Rank": 1, - "CommandName": "Add-PnPTenantSequenceSubSite" + "Id": 199, + "Rank": 1 }, { - "Id": 200, + "CommandName": "Add-PnPTermToTerm", "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Rank": 1, - "CommandName": "Add-PnPTermToTerm" + "Id": 200, + "Rank": 1 }, { - "Id": 201, + "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Rank": 1, - "CommandName": "Add-PnPView" + "Id": 201, + "Rank": 1 }, { - "Id": 202, + "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "Rank": 2, - "CommandName": "Add-PnPView" + "Id": 202, + "Rank": 2 }, { - "Id": 203, + "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "Rank": 3, - "CommandName": "Add-PnPView" + "Id": 203, + "Rank": 3 }, { - "Id": 204, + "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, - "CommandName": "Add-PnPVivaConnectionsDashboardACE" + "Id": 204, + "Rank": 1 }, { - "Id": 205, + "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": 205, + "Rank": 2 }, { - "Id": 206, + "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": 206, + "Rank": 3 }, { - "Id": 207, + "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1, - "CommandName": "Add-PnPWebhookSubscription" + "Id": 207, + "Rank": 1 }, { - "Id": 208, + "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": 208, + "Rank": 2 }, { - "Id": 209, + "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": 209, + "Rank": 3 }, { - "Id": 210, + "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "Rank": 1, - "CommandName": "Add-PnPWebPartToWebPartPage" + "Id": 210, + "Rank": 1 }, { - "Id": 211, + "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "Rank": 2, - "CommandName": "Add-PnPWebPartToWebPartPage" + "Id": 211, + "Rank": 2 }, { - "Id": 212, + "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "Rank": 1, - "CommandName": "Add-PnPWebPartToWikiPage" + "Id": 212, + "Rank": 1 }, { - "Id": 213, + "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "Rank": 2, - "CommandName": "Add-PnPWebPartToWikiPage" + "Id": 213, + "Rank": 2 }, { - "Id": 214, + "CommandName": "Add-PnPWikiPage", "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Rank": 1, - "CommandName": "Add-PnPWikiPage" + "Id": 214, + "Rank": 1 }, { - "Id": 215, + "CommandName": "Clear-PnPAzureADGroupMember", "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupMember" + "Id": 215, + "Rank": 1 }, { - "Id": 216, + "CommandName": "Clear-PnPAzureADGroupOwner", "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Rank": 1, - "CommandName": "Clear-PnPAzureADGroupOwner" + "Id": 216, + "Rank": 1 }, { - "Id": 217, + "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Rank": 1, - "CommandName": "Clear-PnPDefaultColumnValues" + "Id": 217, + "Rank": 1 }, { - "Id": 218, + "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Rank": 2, - "CommandName": "Clear-PnPDefaultColumnValues" + "Id": 218, + "Rank": 2 }, { - "Id": 219, + "CommandName": "Clear-PnPListItemAsRecord", "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, - "CommandName": "Clear-PnPListItemAsRecord" + "Id": 219, + "Rank": 1 }, { - "Id": 220, + "CommandName": "Clear-PnPMicrosoft365GroupMember", "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupMember" + "Id": 220, + "Rank": 1 }, { - "Id": 221, + "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Rank": 1, - "CommandName": "Clear-PnPMicrosoft365GroupOwner" + "Id": 221, + "Rank": 1 }, { - "Id": 222, + "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, - "CommandName": "Clear-PnpRecycleBinItem" + "Id": 222, + "Rank": 1 }, { - "Id": 223, + "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Rank": 2, - "CommandName": "Clear-PnpRecycleBinItem" + "Id": 223, + "Rank": 2 }, { - "Id": 224, + "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Rank": 3, - "CommandName": "Clear-PnpRecycleBinItem" + "Id": 224, + "Rank": 3 }, { - "Id": 225, + "CommandName": "Clear-PnPTenantAppCatalogUrl", "Command": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1, - "CommandName": "Clear-PnPTenantAppCatalogUrl" + "Id": 225, + "Rank": 1 }, { - "Id": 226, + "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "Id": 226, + "Rank": 1 }, { - "Id": 227, + "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, - "CommandName": "Clear-PnPTenantRecycleBinItem" + "Id": 227, + "Rank": 2 }, { - "Id": 228, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Rank": 1, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "Id": 228, + "Rank": 1 }, { - "Id": 229, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Rank": 2, - "CommandName": "Convert-PnPFolderToSiteTemplate" + "Id": 229, + "Rank": 2 }, { - "Id": 230, + "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Rank": 1, - "CommandName": "Convert-PnPSiteTemplate" + "Id": 230, + "Rank": 1 }, { - "Id": 231, + "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Rank": 2, - "CommandName": "Convert-PnPSiteTemplate" + "Id": 231, + "Rank": 2 }, { - "Id": 232, + "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Rank": 3, - "CommandName": "Convert-PnPSiteTemplate" + "Id": 232, + "Rank": 3 }, { - "Id": 233, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Rank": 1, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "Id": 233, + "Rank": 1 }, { - "Id": 234, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Rank": 2, - "CommandName": "Convert-PnPSiteTemplateToMarkdown" + "Id": 234, + "Rank": 2 }, { - "Id": 235, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Rank": 1, - "CommandName": "ConvertTo-PnPPage" + "Id": 235, + "Rank": 1 }, { - "Id": 236, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Rank": 2, - "CommandName": "ConvertTo-PnPPage" + "Id": 236, + "Rank": 2 }, { - "Id": 237, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Rank": 3, - "CommandName": "ConvertTo-PnPPage" + "Id": 237, + "Rank": 3 }, { - "Id": 238, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Rank": 4, - "CommandName": "ConvertTo-PnPPage" + "Id": 238, + "Rank": 4 }, { - "Id": 239, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 5, - "CommandName": "ConvertTo-PnPPage" + "Id": 239, + "Rank": 5 }, { - "Id": 240, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Rank": 6, - "CommandName": "ConvertTo-PnPPage" + "Id": 240, + "Rank": 6 }, { - "Id": 241, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Rank": 7, - "CommandName": "ConvertTo-PnPPage" + "Id": 241, + "Rank": 7 }, { - "Id": 242, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Rank": 8, - "CommandName": "ConvertTo-PnPPage" + "Id": 242, + "Rank": 8 }, { - "Id": 243, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 9, - "CommandName": "ConvertTo-PnPPage" + "Id": 243, + "Rank": 9 }, { - "Id": 244, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Rank": 10, - "CommandName": "ConvertTo-PnPPage" + "Id": 244, + "Rank": 10 }, { - "Id": 245, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Rank": 11, - "CommandName": "ConvertTo-PnPPage" + "Id": 245, + "Rank": 11 }, { - "Id": 246, + "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": 246, + "Rank": 12 }, { - "Id": 247, + "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": 247, + "Rank": 13 }, { - "Id": 248, + "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": 248, + "Rank": 14 }, { - "Id": 249, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1, - "CommandName": "Copy-PnPFile" + "Id": 249, + "Rank": 1 }, { - "Id": 250, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2, - "CommandName": "Copy-PnPFile" + "Id": 250, + "Rank": 2 }, { - "Id": 251, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3, - "CommandName": "Copy-PnPFile" + "Id": 251, + "Rank": 3 }, { - "Id": 252, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4, - "CommandName": "Copy-PnPFile" + "Id": 252, + "Rank": 4 }, { - "Id": 253, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5, - "CommandName": "Copy-PnPFile" + "Id": 253, + "Rank": 5 }, { - "Id": 254, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6, - "CommandName": "Copy-PnPFile" + "Id": 254, + "Rank": 6 }, { - "Id": 255, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7, - "CommandName": "Copy-PnPFile" + "Id": 255, + "Rank": 7 }, { - "Id": 256, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8, - "CommandName": "Copy-PnPFile" + "Id": 256, + "Rank": 8 }, { - "Id": 257, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9, - "CommandName": "Copy-PnPFile" + "Id": 257, + "Rank": 9 }, { - "Id": 258, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10, - "CommandName": "Copy-PnPFile" + "Id": 258, + "Rank": 10 }, { - "Id": 259, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1, - "CommandName": "Copy-PnPFolder" + "Id": 259, + "Rank": 1 }, { - "Id": 260, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2, - "CommandName": "Copy-PnPFolder" + "Id": 260, + "Rank": 2 }, { - "Id": 261, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3, - "CommandName": "Copy-PnPFolder" + "Id": 261, + "Rank": 3 }, { - "Id": 262, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4, - "CommandName": "Copy-PnPFolder" + "Id": 262, + "Rank": 4 }, { - "Id": 263, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5, - "CommandName": "Copy-PnPFolder" + "Id": 263, + "Rank": 5 }, { - "Id": 264, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6, - "CommandName": "Copy-PnPFolder" + "Id": 264, + "Rank": 6 }, { - "Id": 265, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7, - "CommandName": "Copy-PnPFolder" + "Id": 265, + "Rank": 7 }, { - "Id": 266, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8, - "CommandName": "Copy-PnPFolder" + "Id": 266, + "Rank": 8 }, { - "Id": 267, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9, - "CommandName": "Copy-PnPFolder" + "Id": 267, + "Rank": 9 }, { - "Id": 268, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10, - "CommandName": "Copy-PnPFolder" + "Id": 268, + "Rank": 10 }, { - "Id": 269, + "CommandName": "Copy-PnPItemProxy", "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Rank": 1, - "CommandName": "Copy-PnPItemProxy" + "Id": 269, + "Rank": 1 }, { - "Id": 270, + "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Rank": 1, - "CommandName": "Copy-PnPList" + "Id": 270, + "Rank": 1 }, { - "Id": 271, + "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Rank": 2, - "CommandName": "Copy-PnPList" + "Id": 271, + "Rank": 2 }, { - "Id": 272, + "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": 272, + "Rank": 3 }, { - "Id": 273, + "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": 273, + "Rank": 4 }, { - "Id": 274, + "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "Rank": 1, - "CommandName": "Copy-PnPTeamsTeam" + "Id": 274, + "Rank": 1 }, { - "Id": 275, + "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Rank": 2, - "CommandName": "Copy-PnPTeamsTeam" + "Id": 275, + "Rank": 2 }, { - "Id": 276, + "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": 276, + "Rank": 3 }, { - "Id": 277, + "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": 277, + "Rank": 4 }, { - "Id": 278, + "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Disable-PnPFeature" + "Id": 278, + "Rank": 1 }, { - "Id": 279, + "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, - "CommandName": "Disable-PnPFeature" + "Id": 279, + "Rank": 2 }, { - "Id": 280, + "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, - "CommandName": "Disable-PnPFeature" + "Id": 280, + "Rank": 3 }, { - "Id": 281, + "CommandName": "Disable-PnPPageScheduling", "Command": "Disable-PnPPageScheduling", - "Rank": 1, - "CommandName": "Disable-PnPPageScheduling" + "Id": 281, + "Rank": 1 }, { - "Id": 282, + "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry", - "Rank": 1, - "CommandName": "Disable-PnPPowerShellTelemetry" + "Id": 282, + "Rank": 1 }, { - "Id": 283, + "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry -Force", - "Rank": 2, - "CommandName": "Disable-PnPPowerShellTelemetry" + "Id": 283, + "Rank": 2 }, { - "Id": 284, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite" + "Id": 284, + "Rank": 1 }, { - "Id": 285, + "CommandName": "Disable-PnPSiteClassification", "Command": "Disable-PnPSiteClassification", - "Rank": 1, - "CommandName": "Disable-PnPSiteClassification" + "Id": 285, + "Rank": 1 }, { - "Id": 286, + "CommandName": "Disconnect-PnPOnline", "Command": "Disconnect-PnPOnline", - "Rank": 1, - "CommandName": "Disconnect-PnPOnline" + "Id": 286, + "Rank": 1 }, { - "Id": 287, + "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite", - "Rank": 1, - "CommandName": "Enable-PnPCommSite" + "Id": 287, + "Rank": 1 }, { - "Id": 288, + "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Rank": 2, - "CommandName": "Enable-PnPCommSite" + "Id": 288, + "Rank": 2 }, { - "Id": 289, + "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Enable-PnPFeature" + "Id": 289, + "Rank": 1 }, { - "Id": 290, + "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, - "CommandName": "Enable-PnPFeature" + "Id": 290, + "Rank": 2 }, { - "Id": 291, + "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, - "CommandName": "Enable-PnPFeature" + "Id": 291, + "Rank": 3 }, { - "Id": 292, + "CommandName": "Enable-PnPPageScheduling", "Command": "Enable-PnPPageScheduling", - "Rank": 1, - "CommandName": "Enable-PnPPageScheduling" + "Id": 292, + "Rank": 1 }, { - "Id": 293, + "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry", - "Rank": 1, - "CommandName": "Enable-PnPPowerShellTelemetry" + "Id": 293, + "Rank": 1 }, { - "Id": 294, + "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry -Force", - "Rank": 2, - "CommandName": "Enable-PnPPowerShellTelemetry" + "Id": 294, + "Rank": 2 }, { - "Id": 295, + "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Rank": 1, - "CommandName": "Enable-PnPSiteClassification" + "Id": 295, + "Rank": 1 }, { - "Id": 296, + "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 2, - "CommandName": "Enable-PnPSiteClassification" + "Id": 296, + "Rank": 2 }, { - "Id": 297, + "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Rank": 1, - "CommandName": "Export-PnPListToSiteTemplate" + "Id": 297, + "Rank": 1 }, { - "Id": 298, + "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Rank": 2, - "CommandName": "Export-PnPListToSiteTemplate" + "Id": 298, + "Rank": 2 }, { - "Id": 299, + "CommandName": "Export-PnPPage", "Command": "Export-PnPPage -Identity Home.aspx", - "Rank": 1, - "CommandName": "Export-PnPPage" + "Id": 299, + "Rank": 1 }, { - "Id": 300, + "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Rank": 1, - "CommandName": "Export-PnPPageMapping" + "Id": 300, + "Rank": 1 }, { - "Id": 301, + "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Rank": 2, - "CommandName": "Export-PnPPageMapping" + "Id": 301, + "Rank": 2 }, { - "Id": 302, + "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Rank": 3, - "CommandName": "Export-PnPPageMapping" + "Id": 302, + "Rank": 3 }, { - "Id": 303, + "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy", - "Rank": 1, - "CommandName": "Export-PnPTaxonomy" + "Id": 303, + "Rank": 1 }, { - "Id": 304, + "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Rank": 2, - "CommandName": "Export-PnPTaxonomy" + "Id": 304, + "Rank": 2 }, { - "Id": 305, + "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Rank": 3, - "CommandName": "Export-PnPTaxonomy" + "Id": 305, + "Rank": 3 }, { - "Id": 306, + "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Rank": 4, - "CommandName": "Export-PnPTaxonomy" + "Id": 306, + "Rank": 4 }, { - "Id": 307, + "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml", - "Rank": 1, - "CommandName": "Export-PnPTermGroupToXml" + "Id": 307, + "Rank": 1 }, { - "Id": 308, + "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Rank": 2, - "CommandName": "Export-PnPTermGroupToXml" + "Id": 308, + "Rank": 2 }, { - "Id": 309, + "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Rank": 3, - "CommandName": "Export-PnPTermGroupToXml" + "Id": 309, + "Rank": 3 }, { - "Id": 310, + "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1, - "CommandName": "Export-PnPUserInfo" + "Id": 310, + "Rank": 1 }, { - "Id": 311, + "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": 311, + "Rank": 2 }, { - "Id": 312, + "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, - "CommandName": "Export-PnPUserProfile" + "Id": 312, + "Rank": 1 }, { - "Id": 313, + "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2, - "CommandName": "Export-PnPUserProfile" + "Id": 313, + "Rank": 2 }, { - "Id": 314, + "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Match *.master", - "Rank": 1, - "CommandName": "Find-PnPFile" + "Id": 314, + "Rank": 1 }, { - "Id": 315, + "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Rank": 2, - "CommandName": "Find-PnPFile" + "Id": 315, + "Rank": 2 }, { - "Id": 316, + "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Rank": 3, - "CommandName": "Find-PnPFile" + "Id": 316, + "Rank": 3 }, { - "Id": 317, + "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken", - "Rank": 1, - "CommandName": "Get-PnPAccessToken" + "Id": 317, + "Rank": 1 }, { - "Id": 318, + "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -Decoded", - "Rank": 2, - "CommandName": "Get-PnPAccessToken" + "Id": 318, + "Rank": 2 }, { - "Id": 319, + "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Rank": 3, - "CommandName": "Get-PnPAccessToken" + "Id": 319, + "Rank": 3 }, { - "Id": 320, + "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Rank": 4, - "CommandName": "Get-PnPAccessToken" + "Id": 320, + "Rank": 4 }, { - "Id": 321, + "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Rank": 5, - "CommandName": "Get-PnPAccessToken" + "Id": 321, + "Rank": 5 }, { - "Id": 322, + "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert", - "Rank": 1, - "CommandName": "Get-PnPAlert" + "Id": 322, + "Rank": 1 }, { - "Id": 323, + "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\"", - "Rank": 2, - "CommandName": "Get-PnPAlert" + "Id": 323, + "Rank": 2 }, { - "Id": 324, + "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3, - "CommandName": "Get-PnPAlert" + "Id": 324, + "Rank": 3 }, { - "Id": 325, + "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Rank": 4, - "CommandName": "Get-PnPAlert" + "Id": 325, + "Rank": 4 }, { - "Id": 326, + "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -AllUsers", - "Rank": 5, - "CommandName": "Get-PnPAlert" + "Id": 326, + "Rank": 5 }, { - "Id": 327, + "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Rank": 6, - "CommandName": "Get-PnPAlert" + "Id": 327, + "Rank": 6 }, { - "Id": 328, + "CommandName": "Get-PnPApp", "Command": "Get-PnPApp", - "Rank": 1, - "CommandName": "Get-PnPApp" + "Id": 328, + "Rank": 1 }, { - "Id": 329, + "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Scope Site", - "Rank": 2, - "CommandName": "Get-PnPApp" + "Id": 329, + "Rank": 2 }, { - "Id": 330, + "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 3, - "CommandName": "Get-PnPApp" + "Id": 330, + "Rank": 3 }, { - "Id": 331, + "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Rank": 1, - "CommandName": "Get-PnPAppErrors" + "Id": 331, + "Rank": 1 }, { - "Id": 332, + "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Rank": 2, - "CommandName": "Get-PnPAppErrors" + "Id": 332, + "Rank": 2 }, { - "Id": 333, + "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Rank": 1, - "CommandName": "Get-PnPAppInfo" + "Id": 333, + "Rank": 1 }, { - "Id": 334, + "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 2, - "CommandName": "Get-PnPAppInfo" + "Id": 334, + "Rank": 2 }, { - "Id": 335, + "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Rank": 3, - "CommandName": "Get-PnPAppInfo" + "Id": 335, + "Rank": 3 }, { - "Id": 336, + "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer", - "Rank": 1, - "CommandName": "Get-PnPApplicationCustomizer" + "Id": 336, + "Rank": 1 }, { - "Id": 337, + "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, - "CommandName": "Get-PnPApplicationCustomizer" + "Id": 337, + "Rank": 2 }, { - "Id": 338, + "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Rank": 3, - "CommandName": "Get-PnPApplicationCustomizer" + "Id": 338, + "Rank": 3 }, { - "Id": 339, + "CommandName": "Get-PnPAuditing", "Command": "Get-PnPAuditing", - "Rank": 1, - "CommandName": "Get-PnPAuditing" + "Id": 339, + "Rank": 1 }, { - "Id": 340, + "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm", - "Rank": 1, - "CommandName": "Get-PnPAuthenticationRealm" + "Id": 340, + "Rank": 1 }, { - "Id": 341, + "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Rank": 2, - "CommandName": "Get-PnPAuthenticationRealm" + "Id": 341, + "Rank": 2 }, { - "Id": 342, + "CommandName": "Get-PnPAvailableLanguage", "Command": "Get-PnPAvailableLanguage", - "Rank": 1, - "CommandName": "Get-PnPAvailableLanguage" + "Id": 342, + "Rank": 1 }, { - "Id": 343, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel", - "Rank": 1, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Id": 343, + "Rank": 1 }, { - "Id": 344, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Rank": 2, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Id": 344, + "Rank": 2 }, { - "Id": 345, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Rank": 3, - "CommandName": "Get-PnPAvailableSensitivityLabel" + "Id": 345, + "Rank": 3 }, { - "Id": 346, + "CommandName": "Get-PnPAvailableSiteClassification", "Command": "Get-PnPAvailableSiteClassification", - "Rank": 1, - "CommandName": "Get-PnPAvailableSiteClassification" + "Id": 346, + "Rank": 1 }, { - "Id": 347, + "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal", - "Rank": 1, - "CommandName": "Get-PnPAzureACSPrincipal" + "Id": 347, + "Rank": 1 }, { - "Id": 348, + "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Rank": 2, - "CommandName": "Get-PnPAzureACSPrincipal" + "Id": 348, + "Rank": 2 }, { - "Id": 349, + "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Rank": 3, - "CommandName": "Get-PnPAzureACSPrincipal" + "Id": 349, + "Rank": 3 }, { - "Id": 350, + "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Rank": 4, - "CommandName": "Get-PnPAzureACSPrincipal" + "Id": 350, + "Rank": 4 }, { - "Id": 351, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Id": 351, + "Rank": 1 }, { - "Id": 352, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Id": 352, + "Rank": 2 }, { - "Id": 353, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" + "Id": 353, + "Rank": 3 }, { - "Id": 354, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Id": 354, + "Rank": 1 }, { - "Id": 355, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Rank": 2, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Id": 355, + "Rank": 2 }, { - "Id": 356, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Rank": 3, - "CommandName": "Get-PnPAzureADActivityReportSignIn" + "Id": 356, + "Rank": 3 }, { - "Id": 357, + "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp", - "Rank": 1, - "CommandName": "Get-PnPAzureADApp" + "Id": 357, + "Rank": 1 }, { - "Id": 358, + "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity MyApp", - "Rank": 2, - "CommandName": "Get-PnPAzureADApp" + "Id": 358, + "Rank": 2 }, { - "Id": 359, + "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, - "CommandName": "Get-PnPAzureADApp" + "Id": 359, + "Rank": 3 }, { - "Id": 360, + "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Rank": 4, - "CommandName": "Get-PnPAzureADApp" + "Id": 360, + "Rank": 4 }, { - "Id": 361, + "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission", - "Rank": 1, - "CommandName": "Get-PnPAzureADAppPermission" + "Id": 361, + "Rank": 1 }, { - "Id": 362, + "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Rank": 2, - "CommandName": "Get-PnPAzureADAppPermission" + "Id": 362, + "Rank": 2 }, { - "Id": 363, + "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, - "CommandName": "Get-PnPAzureADAppPermission" + "Id": 363, + "Rank": 3 }, { - "Id": 364, + "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission", - "Rank": 1, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Id": 364, + "Rank": 1 }, { - "Id": 365, + "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Id": 365, + "Rank": 2 }, { - "Id": 366, + "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Rank": 3, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Id": 366, + "Rank": 3 }, { - "Id": 367, + "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Rank": 4, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Id": 367, + "Rank": 4 }, { - "Id": 368, + "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Rank": 5, - "CommandName": "Get-PnPAzureADAppSitePermission" + "Id": 368, + "Rank": 5 }, { - "Id": 369, + "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup", - "Rank": 1, - "CommandName": "Get-PnPAzureADGroup" + "Id": 369, + "Rank": 1 }, { - "Id": 370, + "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Rank": 2, - "CommandName": "Get-PnPAzureADGroup" + "Id": 370, + "Rank": 2 }, { - "Id": 371, + "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Rank": 3, - "CommandName": "Get-PnPAzureADGroup" + "Id": 371, + "Rank": 3 }, { - "Id": 372, + "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Rank": 4, - "CommandName": "Get-PnPAzureADGroup" + "Id": 372, + "Rank": 4 }, { - "Id": 373, + "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $group", - "Rank": 5, - "CommandName": "Get-PnPAzureADGroup" + "Id": 373, + "Rank": 5 }, { - "Id": 374, + "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Rank": 1, - "CommandName": "Get-PnPAzureADGroupMember" + "Id": 374, + "Rank": 1 }, { - "Id": 375, + "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Rank": 2, - "CommandName": "Get-PnPAzureADGroupMember" + "Id": 375, + "Rank": 2 }, { - "Id": 376, + "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Rank": 1, - "CommandName": "Get-PnPAzureADGroupOwner" + "Id": 376, + "Rank": 1 }, { - "Id": 377, + "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Rank": 2, - "CommandName": "Get-PnPAzureADGroupOwner" + "Id": 377, + "Rank": 2 }, { - "Id": 378, + "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal", - "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Id": 378, + "Rank": 1 }, { - "Id": 379, + "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Id": 379, + "Rank": 2 }, { - "Id": 380, + "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Rank": 3, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Id": 380, + "Rank": 3 }, { - "Id": 381, + "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Rank": 4, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Id": 381, + "Rank": 4 }, { - "Id": 382, + "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, - "CommandName": "Get-PnPAzureADServicePrincipal" + "Id": 382, + "Rank": 5 }, { - "Id": 383, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "Id": 383, + "Rank": 1 }, { - "Id": 384, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" + "Id": 384, + "Rank": 2 }, { - "Id": 385, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "Id": 385, + "Rank": 1 }, { - "Id": 386, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Rank": 2, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" + "Id": 386, + "Rank": 2 }, { - "Id": 387, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser", - "Rank": 1, - "CommandName": "Get-PnPAzureADUser" + "Id": 387, + "Rank": 1 }, { - "Id": 388, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -EndIndex 50", - "Rank": 2, - "CommandName": "Get-PnPAzureADUser" + "Id": 388, + "Rank": 2 }, { - "Id": 389, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 3, - "CommandName": "Get-PnPAzureADUser" + "Id": 389, + "Rank": 3 }, { - "Id": 390, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Rank": 4, - "CommandName": "Get-PnPAzureADUser" + "Id": 390, + "Rank": 4 }, { - "Id": 391, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Rank": 5, - "CommandName": "Get-PnPAzureADUser" + "Id": 391, + "Rank": 5 }, { - "Id": 392, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Rank": 6, - "CommandName": "Get-PnPAzureADUser" + "Id": 392, + "Rank": 6 }, { - "Id": 393, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Rank": 7, - "CommandName": "Get-PnPAzureADUser" + "Id": 393, + "Rank": 7 }, { - "Id": 394, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta", - "Rank": 8, - "CommandName": "Get-PnPAzureADUser" + "Id": 394, + "Rank": 8 }, { - "Id": 395, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Rank": 9, - "CommandName": "Get-PnPAzureADUser" + "Id": 395, + "Rank": 9 }, { - "Id": 396, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Rank": 10, - "CommandName": "Get-PnPAzureADUser" + "Id": 396, + "Rank": 10 }, { - "Id": 397, + "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Rank": 1, - "CommandName": "Get-PnPAzureCertificate" + "Id": 397, + "Rank": 1 }, { - "Id": 398, + "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Rank": 2, - "CommandName": "Get-PnPAzureCertificate" + "Id": 398, + "Rank": 2 }, { - "Id": 399, + "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Rank": 3, - "CommandName": "Get-PnPAzureCertificate" + "Id": 399, + "Rank": 3 }, { - "Id": 400, + "CommandName": "Get-PnPBrowserIdleSignout", "Command": "Get-PnPBrowserIdleSignout", - "Rank": 1, - "CommandName": "Get-PnPBrowserIdleSignout" + "Id": 400, + "Rank": 1 }, { - "Id": 401, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Rank": 1, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "Id": 401, + "Rank": 1 }, { - "Id": 402, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility" + "Id": 402, + "Rank": 2 }, { - "Id": 403, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Id": 403, + "Rank": 1 }, { - "Id": 404, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Rank": 2, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Id": 404, + "Rank": 2 }, { - "Id": 405, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Rank": 3, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Id": 405, + "Rank": 3 }, { - "Id": 406, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Id": 406, + "Rank": 4 }, { - "Id": 407, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Rank": 5, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings" + "Id": 407, + "Rank": 5 }, { - "Id": 408, + "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog", - "Rank": 1, - "CommandName": "Get-PnPChangeLog" + "Id": 408, + "Rank": 1 }, { - "Id": 409, + "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog -Nightly", - "Rank": 2, - "CommandName": "Get-PnPChangeLog" + "Id": 409, + "Rank": 2 }, { - "Id": 410, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Rank": 1, - "CommandName": "Get-PnPCompatibleHubContentTypes" + "Id": 410, + "Rank": 1 }, { - "Id": 411, + "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": 411, + "Rank": 2 }, { - "Id": 412, + "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType", - "Rank": 1, - "CommandName": "Get-PnPContentType" + "Id": 412, + "Rank": 1 }, { - "Id": 413, + "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -InSiteHierarchy", - "Rank": 2, - "CommandName": "Get-PnPContentType" + "Id": 413, + "Rank": 2 }, { - "Id": 414, + "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Rank": 3, - "CommandName": "Get-PnPContentType" + "Id": 414, + "Rank": 3 }, { - "Id": 415, + "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -List \"Documents\"", - "Rank": 4, - "CommandName": "Get-PnPContentType" + "Id": 415, + "Rank": 4 }, { - "Id": 416, + "CommandName": "Get-PnPContentTypePublishingStatus", "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Rank": 1, - "CommandName": "Get-PnPContentTypePublishingStatus" + "Id": 416, + "Rank": 1 }, { - "Id": 417, + "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction", - "Rank": 1, - "CommandName": "Get-PnPCustomAction" + "Id": 417, + "Rank": 1 }, { - "Id": 418, + "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, - "CommandName": "Get-PnPCustomAction" + "Id": 418, + "Rank": 2 }, { - "Id": 419, + "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Scope web", - "Rank": 3, - "CommandName": "Get-PnPCustomAction" + "Id": 419, + "Rank": 3 }, { - "Id": 420, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "Id": 420, + "Rank": 1 }, { - "Id": 421, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 2, - "CommandName": "Get-PnPDeletedMicrosoft365Group" + "Id": 421, + "Rank": 2 }, { - "Id": 422, + "CommandName": "Get-PnPDeletedTeam", "Command": "Get-PnPDeletedTeam", - "Rank": 1, - "CommandName": "Get-PnPDeletedTeam" + "Id": 422, + "Rank": 1 }, { - "Id": 423, + "CommandName": "Get-PnPDiagnostics", "Command": "Get-PnPDiagnostics", - "Rank": 1, - "CommandName": "Get-PnPDiagnostics" + "Id": 423, + "Rank": 1 }, { - "Id": 424, + "CommandName": "Get-PnPDisableSpacesActivation", "Command": "Get-PnPDisableSpacesActivation", - "Rank": 1, - "CommandName": "Get-PnPDisableSpacesActivation" + "Id": 424, + "Rank": 1 }, { - "Id": 425, + "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Rank": 1, - "CommandName": "Get-PnPDocumentSetTemplate" + "Id": 425, + "Rank": 1 }, { - "Id": 426, + "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Rank": 2, - "CommandName": "Get-PnPDocumentSetTemplate" + "Id": 426, + "Rank": 2 }, { - "Id": 427, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver", - "Rank": 1, - "CommandName": "Get-PnPEventReceiver" + "Id": 427, + "Rank": 1 }, { - "Id": 428, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, - "CommandName": "Get-PnPEventReceiver" + "Id": 428, + "Rank": 2 }, { - "Id": 429, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Rank": 3, - "CommandName": "Get-PnPEventReceiver" + "Id": 429, + "Rank": 3 }, { - "Id": 430, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Rank": 4, - "CommandName": "Get-PnPEventReceiver" + "Id": 430, + "Rank": 4 }, { - "Id": 431, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 5, - "CommandName": "Get-PnPEventReceiver" + "Id": 431, + "Rank": 5 }, { - "Id": 432, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Rank": 6, - "CommandName": "Get-PnPEventReceiver" + "Id": 432, + "Rank": 6 }, { - "Id": 433, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Site", - "Rank": 7, - "CommandName": "Get-PnPEventReceiver" + "Id": 433, + "Rank": 7 }, { - "Id": 434, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Web", - "Rank": 8, - "CommandName": "Get-PnPEventReceiver" + "Id": 434, + "Rank": 8 }, { - "Id": 435, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope All", - "Rank": 9, - "CommandName": "Get-PnPEventReceiver" + "Id": 435, + "Rank": 9 }, { - "Id": 436, + "CommandName": "Get-PnPException", "Command": "Get-PnPException", - "Rank": 1, - "CommandName": "Get-PnPException" + "Id": 436, + "Rank": 1 }, { - "Id": 437, + "CommandName": "Get-PnPException", "Command": "Get-PnPException -All", - "Rank": 2, - "CommandName": "Get-PnPException" + "Id": 437, + "Rank": 2 }, { - "Id": 438, + "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Rank": 1, - "CommandName": "Get-PnPExternalUser" + "Id": 438, + "Rank": 1 }, { - "Id": 439, + "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Rank": 2, - "CommandName": "Get-PnPExternalUser" + "Id": 439, + "Rank": 2 }, { - "Id": 440, + "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature", - "Rank": 1, - "CommandName": "Get-PnPFeature" + "Id": 440, + "Rank": 1 }, { - "Id": 441, + "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Scope Site", - "Rank": 2, - "CommandName": "Get-PnPFeature" + "Id": 441, + "Rank": 2 }, { - "Id": 442, + "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 3, - "CommandName": "Get-PnPFeature" + "Id": 442, + "Rank": 3 }, { - "Id": 443, + "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Rank": 4, - "CommandName": "Get-PnPFeature" + "Id": 443, + "Rank": 4 }, { - "Id": 444, + "CommandName": "Get-PnPField", "Command": "Get-PnPField", - "Rank": 1, - "CommandName": "Get-PnPField" + "Id": 444, + "Rank": 1 }, { - "Id": 445, + "CommandName": "Get-PnPField", "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, - "CommandName": "Get-PnPField" + "Id": 445, + "Rank": 2 }, { - "Id": 446, + "CommandName": "Get-PnPField", "Command": "Get-PnPField -Group \"Custom Columns\"", - "Rank": 3, - "CommandName": "Get-PnPField" + "Id": 446, + "Rank": 3 }, { - "Id": 447, + "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Rank": 1, - "CommandName": "Get-PnPFile" + "Id": 447, + "Rank": 1 }, { - "Id": 448, + "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": 448, + "Rank": 2 }, { - "Id": 449, + "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Rank": 3, - "CommandName": "Get-PnPFile" + "Id": 449, + "Rank": 3 }, { - "Id": 450, + "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Rank": 4, - "CommandName": "Get-PnPFile" + "Id": 450, + "Rank": 4 }, { - "Id": 451, + "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Rank": 5, - "CommandName": "Get-PnPFile" + "Id": 451, + "Rank": 5 }, { - "Id": 452, + "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": 452, + "Rank": 6 }, { - "Id": 453, + "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Rank": 7, - "CommandName": "Get-PnPFile" + "Id": 453, + "Rank": 7 }, { - "Id": 454, + "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "CommandName": "Get-PnPFileSharingLink" + "Id": 454, + "Rank": 1 }, { - "Id": 455, + "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Rank": 1, - "CommandName": "Get-PnPFileVersion" + "Id": 455, + "Rank": 1 }, { - "Id": 456, + "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Rank": 2, - "CommandName": "Get-PnPFileVersion" + "Id": 456, + "Rank": 2 }, { - "Id": 457, + "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Rank": 1, - "CommandName": "Get-PnPFlow" + "Id": 457, + "Rank": 1 }, { - "Id": 458, + "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Rank": 1, - "CommandName": "Get-PnPFolder" + "Id": 458, + "Rank": 1 }, { - "Id": 459, + "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Rank": 2, - "CommandName": "Get-PnPFolder" + "Id": 459, + "Rank": 2 }, { - "Id": 460, + "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Rank": 3, - "CommandName": "Get-PnPFolder" + "Id": 460, + "Rank": 3 }, { - "Id": 461, + "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\"", - "Rank": 1, - "CommandName": "Get-PnPFolderItem" + "Id": 461, + "Rank": 1 }, { - "Id": 462, + "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 2, - "CommandName": "Get-PnPFolderItem" + "Id": 462, + "Rank": 2 }, { - "Id": 463, + "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Rank": 3, - "CommandName": "Get-PnPFolderItem" + "Id": 463, + "Rank": 3 }, { - "Id": 464, + "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType File", - "Rank": 4, - "CommandName": "Get-PnPFolderItem" + "Id": 464, + "Rank": 4 }, { - "Id": 465, + "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 5, - "CommandName": "Get-PnPFolderItem" + "Id": 465, + "Rank": 5 }, { - "Id": 466, + "CommandName": "Get-PnPFolderSharingLink", "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "CommandName": "Get-PnPFolderSharingLink" + "Id": 466, + "Rank": 1 }, { - "Id": 467, + "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric", - "Rank": 1, - "CommandName": "Get-PnPFolderStorageMetric" + "Id": 467, + "Rank": 1 }, { - "Id": 468, + "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Rank": 2, - "CommandName": "Get-PnPFolderStorageMetric" + "Id": 468, + "Rank": 2 }, { - "Id": 469, + "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Rank": 3, - "CommandName": "Get-PnPFolderStorageMetric" + "Id": 469, + "Rank": 3 }, { - "Id": 470, + "CommandName": "Get-PnPFooter", "Command": "Get-PnPFooter", - "Rank": 1, - "CommandName": "Get-PnPFooter" + "Id": 470, + "Rank": 1 }, { - "Id": 471, + "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken", - "Rank": 1, - "CommandName": "Get-PnPGraphAccessToken" + "Id": 471, + "Rank": 1 }, { - "Id": 472, + "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken -Decoded", - "Rank": 2, - "CommandName": "Get-PnPGraphAccessToken" + "Id": 472, + "Rank": 2 }, { - "Id": 473, + "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription", - "Rank": 1, - "CommandName": "Get-PnPGraphSubscription" + "Id": 473, + "Rank": 1 }, { - "Id": 474, + "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 2, - "CommandName": "Get-PnPGraphSubscription" + "Id": 474, + "Rank": 2 }, { - "Id": 475, + "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup", - "Rank": 1, - "CommandName": "Get-PnPGroup" + "Id": 475, + "Rank": 1 }, { - "Id": 476, + "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Rank": 2, - "CommandName": "Get-PnPGroup" + "Id": 476, + "Rank": 2 }, { - "Id": 477, + "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Rank": 3, - "CommandName": "Get-PnPGroup" + "Id": 477, + "Rank": 3 }, { - "Id": 478, + "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Rank": 1, - "CommandName": "Get-PnPGroupMember" + "Id": 478, + "Rank": 1 }, { - "Id": 479, + "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Rank": 2, - "CommandName": "Get-PnPGroupMember" + "Id": 479, + "Rank": 2 }, { - "Id": 480, + "CommandName": "Get-PnPGroupPermissions", "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Rank": 1, - "CommandName": "Get-PnPGroupPermissions" + "Id": 480, + "Rank": 1 }, { - "Id": 481, + "CommandName": "Get-PnPHideDefaultThemes", "Command": "Get-PnPHideDefaultThemes", - "Rank": 1, - "CommandName": "Get-PnPHideDefaultThemes" + "Id": 481, + "Rank": 1 }, { - "Id": 482, + "CommandName": "Get-PnPHomePage", "Command": "Get-PnPHomePage", - "Rank": 1, - "CommandName": "Get-PnPHomePage" + "Id": 482, + "Rank": 1 }, { - "Id": 483, + "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite", - "Rank": 1, - "CommandName": "Get-PnPHomeSite" + "Id": 483, + "Rank": 1 }, { - "Id": 484, + "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Rank": 2, - "CommandName": "Get-PnPHomeSite" + "Id": 484, + "Rank": 2 }, { - "Id": 485, + "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -Detailed", - "Rank": 3, - "CommandName": "Get-PnPHomeSite" + "Id": 485, + "Rank": 3 }, { - "Id": 486, + "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite", - "Rank": 1, - "CommandName": "Get-PnPHubSite" + "Id": 486, + "Rank": 1 }, { - "Id": 487, + "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, - "CommandName": "Get-PnPHubSite" + "Id": 487, + "Rank": 2 }, { - "Id": 488, + "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Rank": 3, - "CommandName": "Get-PnPHubSite" + "Id": 488, + "Rank": 3 }, { - "Id": 489, + "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild", - "Rank": 1, - "CommandName": "Get-PnPHubSiteChild" + "Id": 489, + "Rank": 1 }, { - "Id": 490, + "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, - "CommandName": "Get-PnPHubSiteChild" + "Id": 490, + "Rank": 2 }, { - "Id": 491, + "CommandName": "Get-PnPInPlaceRecordsManagement", "Command": "Get-PnPInPlaceRecordsManagement", - "Rank": 1, - "CommandName": "Get-PnPInPlaceRecordsManagement" + "Id": 491, + "Rank": 1 }, { - "Id": 492, + "CommandName": "Get-PnPIsSiteAliasAvailable", "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Rank": 1, - "CommandName": "Get-PnPIsSiteAliasAvailable" + "Id": 492, + "Rank": 1 }, { - "Id": 493, + "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink", - "Rank": 1, - "CommandName": "Get-PnPJavaScriptLink" + "Id": 493, + "Rank": 1 }, { - "Id": 494, + "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope All", - "Rank": 2, - "CommandName": "Get-PnPJavaScriptLink" + "Id": 494, + "Rank": 2 }, { - "Id": 495, + "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Web", - "Rank": 3, - "CommandName": "Get-PnPJavaScriptLink" + "Id": 495, + "Rank": 3 }, { - "Id": 496, + "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Site", - "Rank": 4, - "CommandName": "Get-PnPJavaScriptLink" + "Id": 496, + "Rank": 4 }, { - "Id": 497, + "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Name Test", - "Rank": 5, - "CommandName": "Get-PnPJavaScriptLink" + "Id": 497, + "Rank": 5 }, { - "Id": 498, + "CommandName": "Get-PnPKnowledgeHubSite", "Command": "Get-PnPKnowledgeHubSite", - "Rank": 1, - "CommandName": "Get-PnPKnowledgeHubSite" + "Id": 498, + "Rank": 1 }, { - "Id": 499, + "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel", - "Rank": 1, - "CommandName": "Get-PnPLabel" + "Id": 499, + "Rank": 1 }, { - "Id": 500, + "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Rank": 2, - "CommandName": "Get-PnPLabel" + "Id": 500, + "Rank": 2 }, { - "Id": 501, + "CommandName": "Get-PnPLargeListOperationStatus", "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Rank": 1, - "CommandName": "Get-PnPLargeListOperationStatus" + "Id": 501, + "Rank": 1 }, { - "Id": 502, + "CommandName": "Get-PnPList", "Command": "Get-PnPList", - "Rank": 1, - "CommandName": "Get-PnPList" + "Id": 502, + "Rank": 1 }, { - "Id": 503, + "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 2, - "CommandName": "Get-PnPList" + "Id": 503, + "Rank": 2 }, { - "Id": 504, + "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity Lists/Announcements", - "Rank": 3, - "CommandName": "Get-PnPList" + "Id": 504, + "Rank": 3 }, { - "Id": 505, + "CommandName": "Get-PnPList", "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Rank": 4, - "CommandName": "Get-PnPList" + "Id": 505, + "Rank": 4 }, { - "Id": 506, + "CommandName": "Get-PnPList", "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Rank": 5, - "CommandName": "Get-PnPList" + "Id": 506, + "Rank": 5 }, { - "Id": 507, + "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign", - "Rank": 1, - "CommandName": "Get-PnPListDesign" + "Id": 507, + "Rank": 1 }, { - "Id": 508, + "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, - "CommandName": "Get-PnPListDesign" + "Id": 508, + "Rank": 2 }, { - "Id": 509, + "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity ListEvent", - "Rank": 3, - "CommandName": "Get-PnPListDesign" + "Id": 509, + "Rank": 3 }, { - "Id": 510, + "CommandName": "Get-PnPListInformationRightsManagement", "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Rank": 1, - "CommandName": "Get-PnPListInformationRightsManagement" + "Id": 510, + "Rank": 1 }, { - "Id": 511, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks", - "Rank": 1, - "CommandName": "Get-PnPListItem" + "Id": 511, + "Rank": 1 }, { - "Id": 512, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1", - "Rank": 2, - "CommandName": "Get-PnPListItem" + "Id": 512, + "Rank": 2 }, { - "Id": 513, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Rank": 3, - "CommandName": "Get-PnPListItem" + "Id": 513, + "Rank": 3 }, { - "Id": 514, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Rank": 4, - "CommandName": "Get-PnPListItem" + "Id": 514, + "Rank": 4 }, { - "Id": 515, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Rank": 5, - "CommandName": "Get-PnPListItem" + "Id": 515, + "Rank": 5 }, { - "Id": 516, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Rank": 6, - "CommandName": "Get-PnPListItem" + "Id": 516, + "Rank": 6 }, { - "Id": 517, + "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": 517, + "Rank": 7 }, { - "Id": 518, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Rank": 8, - "CommandName": "Get-PnPListItem" + "Id": 518, + "Rank": 8 }, { - "Id": 519, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Rank": 9, - "CommandName": "Get-PnPListItem" + "Id": 519, + "Rank": 9 }, { - "Id": 520, + "CommandName": "Get-PnPListItemComment", "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Rank": 1, - "CommandName": "Get-PnPListItemComment" + "Id": 520, + "Rank": 1 }, { - "Id": 521, + "CommandName": "Get-PnPListItemPermission", "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Rank": 1, - "CommandName": "Get-PnPListItemPermission" + "Id": 521, + "Rank": 1 }, { - "Id": 522, + "CommandName": "Get-PnPListItemVersion", "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Rank": 1, - "CommandName": "Get-PnPListItemVersion" + "Id": 522, + "Rank": 1 }, { - "Id": 523, + "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Rank": 1, - "CommandName": "Get-PnPListPermissions" + "Id": 523, + "Rank": 1 }, { - "Id": 524, + "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Rank": 2, - "CommandName": "Get-PnPListPermissions" + "Id": 524, + "Rank": 2 }, { - "Id": 525, + "CommandName": "Get-PnPListRecordDeclaration", "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Rank": 1, - "CommandName": "Get-PnPListRecordDeclaration" + "Id": 525, + "Rank": 1 }, { - "Id": 526, + "CommandName": "Get-PnPMasterPage", "Command": "Get-PnPMasterPage", - "Rank": 1, - "CommandName": "Get-PnPMasterPage" + "Id": 526, + "Rank": 1 }, { - "Id": 527, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement", - "Rank": 1, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "Id": 527, + "Rank": 1 }, { - "Id": 528, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Rank": 2, - "CommandName": "Get-PnPMessageCenterAnnouncement" + "Id": 528, + "Rank": 2 }, { - "Id": 529, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "Id": 529, + "Rank": 1 }, { - "Id": 530, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup" + "Id": 530, + "Rank": 2 }, { - "Id": 531, + "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365Group" + "Id": 531, + "Rank": 1 }, { - "Id": 532, + "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365Group" + "Id": 532, + "Rank": 2 }, { - "Id": 533, + "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365Group" + "Id": 533, + "Rank": 3 }, { - "Id": 534, + "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Rank": 4, - "CommandName": "Get-PnPMicrosoft365Group" + "Id": 534, + "Rank": 4 }, { - "Id": 535, + "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Rank": 5, - "CommandName": "Get-PnPMicrosoft365Group" + "Id": 535, + "Rank": 5 }, { - "Id": 536, + "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Rank": 6, - "CommandName": "Get-PnPMicrosoft365Group" + "Id": 536, + "Rank": 6 }, { - "Id": 537, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "Id": 537, + "Rank": 1 }, { - "Id": 538, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "Id": 538, + "Rank": 2 }, { - "Id": 539, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint" + "Id": 539, + "Rank": 3 }, { - "Id": 540, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "Id": 540, + "Rank": 1 }, { - "Id": 541, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "Id": 541, + "Rank": 2 }, { - "Id": 542, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupMember" + "Id": 542, + "Rank": 3 }, { - "Id": 543, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "Id": 543, + "Rank": 1 }, { - "Id": 544, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupOwner" + "Id": 544, + "Rank": 2 }, { - "Id": 545, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "Id": 545, + "Rank": 1 }, { - "Id": 546, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettings" + "Id": 546, + "Rank": 2 }, { - "Id": 547, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "Id": 547, + "Rank": 1 }, { - "Id": 548, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" + "Id": 548, + "Rank": 2 }, { - "Id": 549, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Id": 549, + "Rank": 1 }, { - "Id": 550, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Id": 550, + "Rank": 2 }, { - "Id": 551, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupTeam" + "Id": 551, + "Rank": 3 }, { - "Id": 552, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "Id": 552, + "Rank": 1 }, { - "Id": 553, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Rank": 2, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "Id": 553, + "Rank": 2 }, { - "Id": 554, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" + "Id": 554, + "Rank": 3 }, { - "Id": 555, + "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode", - "Rank": 1, - "CommandName": "Get-PnPNavigationNode" + "Id": 555, + "Rank": 1 }, { - "Id": 556, + "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Rank": 2, - "CommandName": "Get-PnPNavigationNode" + "Id": 556, + "Rank": 2 }, { - "Id": 557, + "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Rank": 3, - "CommandName": "Get-PnPNavigationNode" + "Id": 557, + "Rank": 3 }, { - "Id": 558, + "CommandName": "Get-PnPOrgAssetsLibrary", "Command": "Get-PnPOrgAssetsLibrary", - "Rank": 1, - "CommandName": "Get-PnPOrgAssetsLibrary" + "Id": 558, + "Rank": 1 }, { - "Id": 559, + "CommandName": "Get-PnPOrgNewsSite", "Command": "Get-PnPOrgNewsSite", - "Rank": 1, - "CommandName": "Get-PnPOrgNewsSite" + "Id": 559, + "Rank": 1 }, { - "Id": 560, + "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Rank": 1, - "CommandName": "Get-PnPPage" + "Id": 560, + "Rank": 1 }, { - "Id": 561, + "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"MyPage\"", - "Rank": 2, - "CommandName": "Get-PnPPage" + "Id": 561, + "Rank": 2 }, { - "Id": 562, + "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Rank": 3, - "CommandName": "Get-PnPPage" + "Id": 562, + "Rank": 3 }, { - "Id": 563, + "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Rank": 4, - "CommandName": "Get-PnPPage" + "Id": 563, + "Rank": 4 }, { - "Id": 564, + "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home", - "Rank": 1, - "CommandName": "Get-PnPPageComponent" + "Id": 564, + "Rank": 1 }, { - "Id": 565, + "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2, - "CommandName": "Get-PnPPageComponent" + "Id": 565, + "Rank": 2 }, { - "Id": 566, + "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Rank": 3, - "CommandName": "Get-PnPPageComponent" + "Id": 566, + "Rank": 3 }, { - "Id": 567, + "CommandName": "Get-PnPPlannerBucket", "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, - "CommandName": "Get-PnPPlannerBucket" + "Id": 567, + "Rank": 1 }, { - "Id": 568, + "CommandName": "Get-PnPPlannerConfiguration", "Command": "Get-PnPPlannerConfiguration", - "Rank": 1, - "CommandName": "Get-PnPPlannerConfiguration" + "Id": 568, + "Rank": 1 }, { - "Id": 569, + "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Rank": 1, - "CommandName": "Get-PnPPlannerPlan" + "Id": 569, + "Rank": 1 }, { - "Id": 570, + "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Rank": 2, - "CommandName": "Get-PnPPlannerPlan" + "Id": 570, + "Rank": 2 }, { - "Id": 571, + "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Rank": 3, - "CommandName": "Get-PnPPlannerPlan" + "Id": 571, + "Rank": 3 }, { - "Id": 572, + "CommandName": "Get-PnPPlannerRosterMember", "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, - "CommandName": "Get-PnPPlannerRosterMember" + "Id": 572, + "Rank": 1 }, { - "Id": 573, + "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Rank": 1, - "CommandName": "Get-PnPPlannerRosterPlan" + "Id": 573, + "Rank": 1 }, { - "Id": 574, + "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 2, - "CommandName": "Get-PnPPlannerRosterPlan" + "Id": 574, + "Rank": 2 }, { - "Id": 575, + "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, - "CommandName": "Get-PnPPlannerTask" + "Id": 575, + "Rank": 1 }, { - "Id": 576, + "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 2, - "CommandName": "Get-PnPPlannerTask" + "Id": 576, + "Rank": 2 }, { - "Id": 577, + "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 3, - "CommandName": "Get-PnPPlannerTask" + "Id": 577, + "Rank": 3 }, { - "Id": 578, + "CommandName": "Get-PnPPlannerUserPolicy", "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Get-PnPPlannerUserPolicy" + "Id": 578, + "Rank": 1 }, { - "Id": 579, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment", - "Rank": 1, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "Id": 579, + "Rank": 1 }, { - "Id": 580, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Rank": 2, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "Id": 580, + "Rank": 2 }, { - "Id": 581, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Rank": 3, - "CommandName": "Get-PnPPowerPlatformEnvironment" + "Id": 581, + "Rank": 3 }, { - "Id": 582, + "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Command": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1, - "CommandName": "Get-PnPPowerShellTelemetryEnabled" + "Id": 582, + "Rank": 1 }, { - "Id": 583, + "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag", - "Rank": 1, - "CommandName": "Get-PnPPropertyBag" + "Id": 583, + "Rank": 1 }, { - "Id": 584, + "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Key MyKey", - "Rank": 2, - "CommandName": "Get-PnPPropertyBag" + "Id": 584, + "Rank": 2 }, { - "Id": 585, + "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Rank": 3, - "CommandName": "Get-PnPPropertyBag" + "Id": 585, + "Rank": 3 }, { - "Id": 586, + "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Rank": 4, - "CommandName": "Get-PnPPropertyBag" + "Id": 586, + "Rank": 4 }, { - "Id": 587, + "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Rank": 5, - "CommandName": "Get-PnPPropertyBag" + "Id": 587, + "Rank": 5 }, { - "Id": 588, + "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition", - "Rank": 1, - "CommandName": "Get-PnPPublishingImageRendition" + "Id": 588, + "Rank": 1 }, { - "Id": 589, + "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Rank": 2, - "CommandName": "Get-PnPPublishingImageRendition" + "Id": 589, + "Rank": 2 }, { - "Id": 590, + "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Rank": 3, - "CommandName": "Get-PnPPublishingImageRendition" + "Id": 590, + "Rank": 3 }, { - "Id": 591, + "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem", - "Rank": 1, - "CommandName": "Get-PnPRecycleBinItem" + "Id": 591, + "Rank": 1 }, { - "Id": 592, + "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Rank": 2, - "CommandName": "Get-PnPRecycleBinItem" + "Id": 592, + "Rank": 2 }, { - "Id": 593, + "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -FirstStage", - "Rank": 3, - "CommandName": "Get-PnPRecycleBinItem" + "Id": 593, + "Rank": 3 }, { - "Id": 594, + "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -SecondStage", - "Rank": 4, - "CommandName": "Get-PnPRecycleBinItem" + "Id": 594, + "Rank": 4 }, { - "Id": 595, + "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Rank": 5, - "CommandName": "Get-PnPRecycleBinItem" + "Id": 595, + "Rank": 5 }, { - "Id": 596, + "CommandName": "Get-PnPRequestAccessEmails", "Command": "Get-PnPRequestAccessEmails", - "Rank": 1, - "CommandName": "Get-PnPRequestAccessEmails" + "Id": 596, + "Rank": 1 }, { - "Id": 597, + "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition", - "Rank": 1, - "CommandName": "Get-PnPRoleDefinition" + "Id": 597, + "Rank": 1 }, { - "Id": 598, + "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition -Identity Read", - "Rank": 2, - "CommandName": "Get-PnPRoleDefinition" + "Id": 598, + "Rank": 2 }, { - "Id": 599, + "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Rank": 3, - "CommandName": "Get-PnPRoleDefinition" + "Id": 599, + "Rank": 3 }, { - "Id": 600, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration", - "Rank": 1, - "CommandName": "Get-PnPSearchConfiguration" + "Id": 600, + "Rank": 1 }, { - "Id": 601, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site", - "Rank": 2, - "CommandName": "Get-PnPSearchConfiguration" + "Id": 601, + "Rank": 2 }, { - "Id": 602, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Rank": 3, - "CommandName": "Get-PnPSearchConfiguration" + "Id": 602, + "Rank": 3 }, { - "Id": 603, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, - "CommandName": "Get-PnPSearchConfiguration" + "Id": 603, + "Rank": 4 }, { - "Id": 604, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Rank": 5, - "CommandName": "Get-PnPSearchConfiguration" + "Id": 604, + "Rank": 5 }, { - "Id": 605, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Rank": 6, - "CommandName": "Get-PnPSearchConfiguration" + "Id": 605, + "Rank": 6 }, { - "Id": 606, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Rank": 7, - "CommandName": "Get-PnPSearchConfiguration" + "Id": 606, + "Rank": 7 }, { - "Id": 607, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Rank": 8, - "CommandName": "Get-PnPSearchConfiguration" + "Id": 607, + "Rank": 8 }, { - "Id": 608, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog", - "Rank": 1, - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 608, + "Rank": 1 }, { - "Id": 609, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Rank": 2, - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 609, + "Rank": 2 }, { - "Id": 610, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Rank": 3, - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 610, + "Rank": 3 }, { - "Id": 611, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Rank": 4, - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 611, + "Rank": 4 }, { - "Id": 612, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Rank": 5, - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 612, + "Rank": 5 }, { - "Id": 613, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Rank": 6, - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 613, + "Rank": 6 }, { - "Id": 614, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Rank": 7, - "CommandName": "Get-PnPSearchCrawlLog" + "Id": 614, + "Rank": 7 }, { - "Id": 615, + "CommandName": "Get-PnPSearchSettings", "Command": "Get-PnPSearchSettings", - "Rank": 1, - "CommandName": "Get-PnPSearchSettings" + "Id": 615, + "Rank": 1 }, { - "Id": 616, + "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth", - "Rank": 1, - "CommandName": "Get-PnPServiceCurrentHealth" + "Id": 616, + "Rank": 1 }, { - "Id": 617, + "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Rank": 2, - "CommandName": "Get-PnPServiceCurrentHealth" + "Id": 617, + "Rank": 2 }, { - "Id": 618, + "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue", - "Rank": 1, - "CommandName": "Get-PnPServiceHealthIssue" + "Id": 618, + "Rank": 1 }, { - "Id": 619, + "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Rank": 2, - "CommandName": "Get-PnPServiceHealthIssue" + "Id": 619, + "Rank": 2 }, { - "Id": 620, + "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn", - "Rank": 1, - "CommandName": "Get-PnPSharePointAddIn" + "Id": 620, + "Rank": 1 }, { - "Id": 621, + "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Rank": 2, - "CommandName": "Get-PnPSharePointAddIn" + "Id": 621, + "Rank": 2 }, { - "Id": 622, + "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Command": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1, - "CommandName": "Get-PnPSharingForNonOwnersOfSite" + "Id": 622, + "Rank": 1 }, { - "Id": 623, + "CommandName": "Get-PnPSite", "Command": "Get-PnPSite", - "Rank": 1, - "CommandName": "Get-PnPSite" + "Id": 623, + "Rank": 1 }, { - "Id": 624, + "CommandName": "Get-PnPSite", "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Rank": 2, - "CommandName": "Get-PnPSite" + "Id": 624, + "Rank": 2 }, { - "Id": 625, + "CommandName": "Get-PnPSiteClosure", "Command": "Get-PnPSiteClosure", - "Rank": 1, - "CommandName": "Get-PnPSiteClosure" + "Id": 625, + "Rank": 1 }, { - "Id": 626, + "CommandName": "Get-PnPSiteCollectionAdmin", "Command": "Get-PnPSiteCollectionAdmin", - "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAdmin" + "Id": 626, + "Rank": 1 }, { - "Id": 627, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "Id": 627, + "Rank": 1 }, { - "Id": 628, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Rank": 2, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "Id": 628, + "Rank": 2 }, { - "Id": 629, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Rank": 3, - "CommandName": "Get-PnPSiteCollectionAppCatalog" + "Id": 629, + "Rank": 3 }, { - "Id": 630, + "CommandName": "Get-PnPSiteCollectionTermStore", "Command": "Get-PnPSiteCollectionTermStore", - "Rank": 1, - "CommandName": "Get-PnPSiteCollectionTermStore" + "Id": 630, + "Rank": 1 }, { - "Id": 631, + "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign", - "Rank": 1, - "CommandName": "Get-PnPSiteDesign" + "Id": 631, + "Rank": 1 }, { - "Id": 632, + "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, - "CommandName": "Get-PnPSiteDesign" + "Id": 632, + "Rank": 2 }, { - "Id": 633, + "CommandName": "Get-PnPSiteDesignRights", "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Get-PnPSiteDesignRights" + "Id": 633, + "Rank": 1 }, { - "Id": 634, + "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun", - "Rank": 1, - "CommandName": "Get-PnPSiteDesignRun" + "Id": 634, + "Rank": 1 }, { - "Id": 635, + "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Rank": 2, - "CommandName": "Get-PnPSiteDesignRun" + "Id": 635, + "Rank": 2 }, { - "Id": 636, + "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, - "CommandName": "Get-PnPSiteDesignTask" + "Id": 636, + "Rank": 1 }, { - "Id": 637, + "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask", - "Rank": 2, - "CommandName": "Get-PnPSiteDesignTask" + "Id": 637, + "Rank": 2 }, { - "Id": 638, + "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 3, - "CommandName": "Get-PnPSiteDesignTask" + "Id": 638, + "Rank": 3 }, { - "Id": 639, + "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup", - "Rank": 1, - "CommandName": "Get-PnPSiteGroup" + "Id": 639, + "Rank": 1 }, { - "Id": 640, + "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 2, - "CommandName": "Get-PnPSiteGroup" + "Id": 640, + "Rank": 2 }, { - "Id": 641, + "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Rank": 3, - "CommandName": "Get-PnPSiteGroup" + "Id": 641, + "Rank": 3 }, { - "Id": 642, + "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 4, - "CommandName": "Get-PnPSiteGroup" + "Id": 642, + "Rank": 4 }, { - "Id": 643, + "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy", - "Rank": 1, - "CommandName": "Get-PnPSitePolicy" + "Id": 643, + "Rank": 1 }, { - "Id": 644, + "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -AllAvailable", - "Rank": 2, - "CommandName": "Get-PnPSitePolicy" + "Id": 644, + "Rank": 2 }, { - "Id": 645, + "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 3, - "CommandName": "Get-PnPSitePolicy" + "Id": 645, + "Rank": 3 }, { - "Id": 646, + "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript", - "Rank": 1, - "CommandName": "Get-PnPSiteScript" + "Id": 646, + "Rank": 1 }, { - "Id": 647, + "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, - "CommandName": "Get-PnPSiteScript" + "Id": 647, + "Rank": 2 }, { - "Id": 648, + "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromList" + "Id": 648, + "Rank": 1 }, { - "Id": 649, + "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromList" + "Id": 649, + "Rank": 2 }, { - "Id": 650, + "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Rank": 3, - "CommandName": "Get-PnPSiteScriptFromList" + "Id": 650, + "Rank": 3 }, { - "Id": 651, + "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Rank": 1, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Id": 651, + "Rank": 1 }, { - "Id": 652, + "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Rank": 2, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Id": 652, + "Rank": 2 }, { - "Id": 653, + "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": 653, + "Rank": 3 }, { - "Id": 654, + "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Rank": 4, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Id": 654, + "Rank": 4 }, { - "Id": 655, + "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Rank": 5, - "CommandName": "Get-PnPSiteScriptFromWeb" + "Id": 655, + "Rank": 5 }, { - "Id": 656, + "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": 656, + "Rank": 6 }, { - "Id": 657, + "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults", - "Rank": 1, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Id": 657, + "Rank": 1 }, { - "Id": 658, + "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Rank": 2, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Id": 658, + "Rank": 2 }, { - "Id": 659, + "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Rank": 3, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Id": 659, + "Rank": 3 }, { - "Id": 660, + "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Rank": 4, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Id": 660, + "Rank": 4 }, { - "Id": 661, + "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Rank": 5, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Id": 661, + "Rank": 5 }, { - "Id": 662, + "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -All", - "Rank": 6, - "CommandName": "Get-PnPSiteSearchQueryResults" + "Id": 662, + "Rank": 6 }, { - "Id": 663, + "CommandName": "Get-PnPSiteSensitivityLabel", "Command": "Get-PnPSiteSensitivityLabel", - "Rank": 1, - "CommandName": "Get-PnPSiteSensitivityLabel" + "Id": 663, + "Rank": 1 }, { - "Id": 664, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Rank": 1, - "CommandName": "Get-PnPSiteTemplate" + "Id": 664, + "Rank": 1 }, { - "Id": 665, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml", - "Rank": 2, - "CommandName": "Get-PnPSiteTemplate" + "Id": 665, + "Rank": 2 }, { - "Id": 666, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.md", - "Rank": 3, - "CommandName": "Get-PnPSiteTemplate" + "Id": 666, + "Rank": 3 }, { - "Id": 667, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Rank": 4, - "CommandName": "Get-PnPSiteTemplate" + "Id": 667, + "Rank": 4 }, { - "Id": 668, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Rank": 5, - "CommandName": "Get-PnPSiteTemplate" + "Id": 668, + "Rank": 5 }, { - "Id": 669, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Rank": 6, - "CommandName": "Get-PnPSiteTemplate" + "Id": 669, + "Rank": 6 }, { - "Id": 670, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Rank": 7, - "CommandName": "Get-PnPSiteTemplate" + "Id": 670, + "Rank": 7 }, { - "Id": 671, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Rank": 8, - "CommandName": "Get-PnPSiteTemplate" + "Id": 671, + "Rank": 8 }, { - "Id": 672, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Rank": 9, - "CommandName": "Get-PnPSiteTemplate" + "Id": 672, + "Rank": 9 }, { - "Id": 673, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Rank": 10, - "CommandName": "Get-PnPSiteTemplate" + "Id": 673, + "Rank": 10 }, { - "Id": 674, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Rank": 11, - "CommandName": "Get-PnPSiteTemplate" + "Id": 674, + "Rank": 11 }, { - "Id": 675, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Rank": 12, - "CommandName": "Get-PnPSiteTemplate" + "Id": 675, + "Rank": 12 }, { - "Id": 676, + "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": 676, + "Rank": 13 }, { - "Id": 677, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Rank": 14, - "CommandName": "Get-PnPSiteTemplate" + "Id": 677, + "Rank": 14 }, { - "Id": 678, + "CommandName": "Get-PnPSiteUserInvitations", "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1, - "CommandName": "Get-PnPSiteUserInvitations" + "Id": 678, + "Rank": 1 }, { - "Id": 679, + "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity", - "Rank": 1, - "CommandName": "Get-PnPStorageEntity" + "Id": 679, + "Rank": 1 }, { - "Id": 680, + "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey", - "Rank": 2, - "CommandName": "Get-PnPStorageEntity" + "Id": 680, + "Rank": 2 }, { - "Id": 681, + "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Scope Site", - "Rank": 3, - "CommandName": "Get-PnPStorageEntity" + "Id": 681, + "Rank": 3 }, { - "Id": 682, + "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 4, - "CommandName": "Get-PnPStorageEntity" + "Id": 682, + "Rank": 4 }, { - "Id": 683, + "CommandName": "Get-PnPStoredCredential", "Command": "Get-PnPStoredCredential -Name O365", - "Rank": 1, - "CommandName": "Get-PnPStoredCredential" + "Id": 683, + "Rank": 1 }, { - "Id": 684, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState" + "Id": 684, + "Rank": 1 }, { - "Id": 685, + "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1, - "CommandName": "Get-PnPStructuralNavigationCacheWebState" + "Id": 685, + "Rank": 1 }, { - "Id": 686, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Rank": 1, - "CommandName": "Get-PnPSubscribeSharePointNewsDigest" + "Id": 686, + "Rank": 1 }, { - "Id": 687, + "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb", - "Rank": 1, - "CommandName": "Get-PnPSubWeb" + "Id": 687, + "Rank": 1 }, { - "Id": 688, + "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse", - "Rank": 2, - "CommandName": "Get-PnPSubWeb" + "Id": 688, + "Rank": 2 }, { - "Id": 689, + "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Rank": 3, - "CommandName": "Get-PnPSubWeb" + "Id": 689, + "Rank": 3 }, { - "Id": 690, + "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Rank": 4, - "CommandName": "Get-PnPSubWeb" + "Id": 690, + "Rank": 4 }, { - "Id": 691, + "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Rank": 5, - "CommandName": "Get-PnPSubWeb" + "Id": 691, + "Rank": 5 }, { - "Id": 692, + "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel", - "Rank": 1, - "CommandName": "Get-PnPSyntexModel" + "Id": 692, + "Rank": 1 }, { - "Id": 693, + "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity 1", - "Rank": 2, - "CommandName": "Get-PnPSyntexModel" + "Id": 693, + "Rank": 2 }, { - "Id": 694, + "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Rank": 3, - "CommandName": "Get-PnPSyntexModel" + "Id": 694, + "Rank": 3 }, { - "Id": 695, + "CommandName": "Get-PnPSyntexModelPublication", "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Rank": 1, - "CommandName": "Get-PnPSyntexModelPublication" + "Id": 695, + "Rank": 1 }, { - "Id": 696, + "CommandName": "Get-PnPTaxonomyItem", "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Rank": 1, - "CommandName": "Get-PnPTaxonomyItem" + "Id": 696, + "Rank": 1 }, { - "Id": 697, + "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp", - "Rank": 1, - "CommandName": "Get-PnPTeamsApp" + "Id": 697, + "Rank": 1 }, { - "Id": 698, + "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Rank": 2, - "CommandName": "Get-PnPTeamsApp" + "Id": 698, + "Rank": 2 }, { - "Id": 699, + "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Rank": 3, - "CommandName": "Get-PnPTeamsApp" + "Id": 699, + "Rank": 3 }, { - "Id": 700, + "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Rank": 1, - "CommandName": "Get-PnPTeamsChannel" + "Id": 700, + "Rank": 1 }, { - "Id": 701, + "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Rank": 2, - "CommandName": "Get-PnPTeamsChannel" + "Id": 701, + "Rank": 2 }, { - "Id": 702, + "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 3, - "CommandName": "Get-PnPTeamsChannel" + "Id": 702, + "Rank": 3 }, { - "Id": 703, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Rank": 1, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "Id": 703, + "Rank": 1 }, { - "Id": 704, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 2, - "CommandName": "Get-PnPTeamsChannelFilesFolder" + "Id": 704, + "Rank": 2 }, { - "Id": 705, + "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessage" + "Id": 705, + "Rank": 1 }, { - "Id": 706, + "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessage" + "Id": 706, + "Rank": 2 }, { - "Id": 707, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Rank": 1, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "Id": 707, + "Rank": 1 }, { - "Id": 708, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Rank": 2, - "CommandName": "Get-PnPTeamsChannelMessageReply" + "Id": 708, + "Rank": 2 }, { - "Id": 709, + "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 1, - "CommandName": "Get-PnPTeamsChannelUser" + "Id": 709, + "Rank": 1 }, { - "Id": 710, + "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Rank": 2, - "CommandName": "Get-PnPTeamsChannelUser" + "Id": 710, + "Rank": 2 }, { - "Id": 711, + "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Rank": 3, - "CommandName": "Get-PnPTeamsChannelUser" + "Id": 711, + "Rank": 3 }, { - "Id": 712, + "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4, - "CommandName": "Get-PnPTeamsChannelUser" + "Id": 712, + "Rank": 4 }, { - "Id": 713, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Rank": 1, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "Id": 713, + "Rank": 1 }, { - "Id": 714, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Rank": 2, - "CommandName": "Get-PnPTeamsPrimaryChannel" + "Id": 714, + "Rank": 2 }, { - "Id": 715, + "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Rank": 1, - "CommandName": "Get-PnPTeamsTab" + "Id": 715, + "Rank": 1 }, { - "Id": 716, + "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": 716, + "Rank": 2 }, { - "Id": 717, + "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": 717, + "Rank": 3 }, { - "Id": 718, + "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 4, - "CommandName": "Get-PnPTeamsTab" + "Id": 718, + "Rank": 4 }, { - "Id": 719, + "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Rank": 5, - "CommandName": "Get-PnPTeamsTab" + "Id": 719, + "Rank": 5 }, { - "Id": 720, + "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, - "CommandName": "Get-PnPTeamsTag" + "Id": 720, + "Rank": 1 }, { - "Id": 721, + "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 2, - "CommandName": "Get-PnPTeamsTag" + "Id": 721, + "Rank": 2 }, { - "Id": 722, + "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam", - "Rank": 1, - "CommandName": "Get-PnPTeamsTeam" + "Id": 722, + "Rank": 1 }, { - "Id": 723, + "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Rank": 2, - "CommandName": "Get-PnPTeamsTeam" + "Id": 723, + "Rank": 2 }, { - "Id": 724, + "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Rank": 3, - "CommandName": "Get-PnPTeamsTeam" + "Id": 724, + "Rank": 3 }, { - "Id": 725, + "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Rank": 4, - "CommandName": "Get-PnPTeamsTeam" + "Id": 725, + "Rank": 4 }, { - "Id": 726, + "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, - "CommandName": "Get-PnPTeamsTeam" + "Id": 726, + "Rank": 5 }, { - "Id": 727, + "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam", - "Rank": 1, - "CommandName": "Get-PnPTeamsUser" + "Id": 727, + "Rank": 1 }, { - "Id": 728, + "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Rank": 2, - "CommandName": "Get-PnPTeamsUser" + "Id": 728, + "Rank": 2 }, { - "Id": 729, + "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Rank": 3, - "CommandName": "Get-PnPTeamsUser" + "Id": 729, + "Rank": 3 }, { - "Id": 730, + "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Rank": 4, - "CommandName": "Get-PnPTeamsUser" + "Id": 730, + "Rank": 4 }, { - "Id": 731, + "CommandName": "Get-PnPTemporarilyDisableAppBar", "Command": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1, - "CommandName": "Get-PnPTemporarilyDisableAppBar" + "Id": 731, + "Rank": 1 }, { - "Id": 732, + "CommandName": "Get-PnPTenant", "Command": "Get-PnPTenant", - "Rank": 1, - "CommandName": "Get-PnPTenant" + "Id": 732, + "Rank": 1 }, { - "Id": 733, + "CommandName": "Get-PnPTenantAppCatalogUrl", "Command": "Get-PnPTenantAppCatalogUrl", - "Rank": 1, - "CommandName": "Get-PnPTenantAppCatalogUrl" + "Id": 733, + "Rank": 1 }, { - "Id": 734, + "CommandName": "Get-PnPTenantCdnEnabled", "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Rank": 1, - "CommandName": "Get-PnPTenantCdnEnabled" + "Id": 734, + "Rank": 1 }, { - "Id": 735, + "CommandName": "Get-PnPTenantCdnOrigin", "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Rank": 1, - "CommandName": "Get-PnPTenantCdnOrigin" + "Id": 735, + "Rank": 1 }, { - "Id": 736, + "CommandName": "Get-PnPTenantCdnPolicies", "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Rank": 1, - "CommandName": "Get-PnPTenantCdnPolicies" + "Id": 736, + "Rank": 1 }, { - "Id": 737, + "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite", - "Rank": 1, - "CommandName": "Get-PnPTenantDeletedSite" + "Id": 737, + "Rank": 1 }, { - "Id": 738, + "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 2, - "CommandName": "Get-PnPTenantDeletedSite" + "Id": 738, + "Rank": 2 }, { - "Id": 739, + "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Rank": 3, - "CommandName": "Get-PnPTenantDeletedSite" + "Id": 739, + "Rank": 3 }, { - "Id": 740, + "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Rank": 4, - "CommandName": "Get-PnPTenantDeletedSite" + "Id": 740, + "Rank": 4 }, { - "Id": 741, + "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId", - "Rank": 1, - "CommandName": "Get-PnPTenantId" + "Id": 741, + "Rank": 1 }, { - "Id": 742, + "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId contoso", - "Rank": 2, - "CommandName": "Get-PnPTenantId" + "Id": 742, + "Rank": 2 }, { - "Id": 743, + "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Rank": 3, - "CommandName": "Get-PnPTenantId" + "Id": 743, + "Rank": 3 }, { - "Id": 744, + "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Rank": 4, - "CommandName": "Get-PnPTenantId" + "Id": 744, + "Rank": 4 }, { - "Id": 745, + "CommandName": "Get-PnPTenantInstance", "Command": "Get-PnPTenantInstance", - "Rank": 1, - "CommandName": "Get-PnPTenantInstance" + "Id": 745, + "Rank": 1 }, { - "Id": 746, + "CommandName": "Get-PnPTenantRecycleBinItem", "Command": "Get-PnPTenantRecycleBinItem", - "Rank": 1, - "CommandName": "Get-PnPTenantRecycleBinItem" + "Id": 746, + "Rank": 1 }, { - "Id": 747, + "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Rank": 1, - "CommandName": "Get-PnPTenantSequence" + "Id": 747, + "Rank": 1 }, { - "Id": 748, + "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Rank": 2, - "CommandName": "Get-PnPTenantSequence" + "Id": 748, + "Rank": 2 }, { - "Id": 749, + "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Rank": 1, - "CommandName": "Get-PnPTenantSequenceSite" + "Id": 749, + "Rank": 1 }, { - "Id": 750, + "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Rank": 2, - "CommandName": "Get-PnPTenantSequenceSite" + "Id": 750, + "Rank": 2 }, { - "Id": 751, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite", - "Rank": 1, - "CommandName": "Get-PnPTenantSite" + "Id": 751, + "Rank": 1 }, { - "Id": 752, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Detailed", - "Rank": 2, - "CommandName": "Get-PnPTenantSite" + "Id": 752, + "Rank": 2 }, { - "Id": 753, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Rank": 3, - "CommandName": "Get-PnPTenantSite" + "Id": 753, + "Rank": 3 }, { - "Id": 754, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Rank": 4, - "CommandName": "Get-PnPTenantSite" + "Id": 754, + "Rank": 4 }, { - "Id": 755, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Rank": 5, - "CommandName": "Get-PnPTenantSite" + "Id": 755, + "Rank": 5 }, { - "Id": 756, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Rank": 6, - "CommandName": "Get-PnPTenantSite" + "Id": 756, + "Rank": 6 }, { - "Id": 757, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Rank": 7, - "CommandName": "Get-PnPTenantSite" + "Id": 757, + "Rank": 7 }, { - "Id": 758, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Rank": 8, - "CommandName": "Get-PnPTenantSite" + "Id": 758, + "Rank": 8 }, { - "Id": 759, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Rank": 9, - "CommandName": "Get-PnPTenantSite" + "Id": 759, + "Rank": 9 }, { - "Id": 760, + "CommandName": "Get-PnPTenantSyncClientRestriction", "Command": "Get-PnPTenantSyncClientRestriction", - "Rank": 1, - "CommandName": "Get-PnPTenantSyncClientRestriction" + "Id": 760, + "Rank": 1 }, { - "Id": 761, + "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Rank": 1, - "CommandName": "Get-PnPTenantTemplate" + "Id": 761, + "Rank": 1 }, { - "Id": 762, + "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Rank": 2, - "CommandName": "Get-PnPTenantTemplate" + "Id": 762, + "Rank": 2 }, { - "Id": 763, + "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Rank": 3, - "CommandName": "Get-PnPTenantTemplate" + "Id": 763, + "Rank": 3 }, { - "Id": 764, + "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme", - "Rank": 1, - "CommandName": "Get-PnPTenantTheme" + "Id": 764, + "Rank": 1 }, { - "Id": 765, + "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 2, - "CommandName": "Get-PnPTenantTheme" + "Id": 765, + "Rank": 2 }, { - "Id": 766, + "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Rank": 3, - "CommandName": "Get-PnPTenantTheme" + "Id": 766, + "Rank": 3 }, { - "Id": 767, + "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 1, - "CommandName": "Get-PnPTerm" + "Id": 767, + "Rank": 1 }, { - "Id": 768, + "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "CommandName": "Get-PnPTerm" + "Id": 768, + "Rank": 2 }, { - "Id": 769, + "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, - "CommandName": "Get-PnPTerm" + "Id": 769, + "Rank": 3 }, { - "Id": 770, + "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Rank": 4, - "CommandName": "Get-PnPTerm" + "Id": 770, + "Rank": 4 }, { - "Id": 771, + "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Rank": 5, - "CommandName": "Get-PnPTerm" + "Id": 771, + "Rank": 5 }, { - "Id": 772, + "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup", - "Rank": 1, - "CommandName": "Get-PnPTermGroup" + "Id": 772, + "Rank": 1 }, { - "Id": 773, + "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Rank": 2, - "CommandName": "Get-PnPTermGroup" + "Id": 773, + "Rank": 2 }, { - "Id": 774, + "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Rank": 3, - "CommandName": "Get-PnPTermGroup" + "Id": 774, + "Rank": 3 }, { - "Id": 775, + "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Rank": 1, - "CommandName": "Get-PnPTermLabel" + "Id": 775, + "Rank": 1 }, { - "Id": 776, + "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Rank": 2, - "CommandName": "Get-PnPTermLabel" + "Id": 776, + "Rank": 2 }, { - "Id": 777, + "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, - "CommandName": "Get-PnPTermLabel" + "Id": 777, + "Rank": 3 }, { - "Id": 778, + "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Rank": 1, - "CommandName": "Get-PnPTermSet" + "Id": 778, + "Rank": 1 }, { - "Id": 779, + "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "CommandName": "Get-PnPTermSet" + "Id": 779, + "Rank": 2 }, { - "Id": 780, + "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Rank": 3, - "CommandName": "Get-PnPTermSet" + "Id": 780, + "Rank": 3 }, { - "Id": 781, + "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme", - "Rank": 1, - "CommandName": "Get-PnPTheme" + "Id": 781, + "Rank": 1 }, { - "Id": 782, + "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Rank": 2, - "CommandName": "Get-PnPTheme" + "Id": 782, + "Rank": 2 }, { - "Id": 783, + "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId", - "Rank": 1, - "CommandName": "Get-PnPTimeZoneId" + "Id": 783, + "Rank": 1 }, { - "Id": 784, + "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Rank": 2, - "CommandName": "Get-PnPTimeZoneId" + "Id": 784, + "Rank": 2 }, { - "Id": 785, + "CommandName": "Get-PnPUnfurlLink", "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Rank": 1, - "CommandName": "Get-PnPUnfurlLink" + "Id": 785, + "Rank": 1 }, { - "Id": 786, + "CommandName": "Get-PnPUnifiedAuditLog", "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Rank": 1, - "CommandName": "Get-PnPUnifiedAuditLog" + "Id": 786, + "Rank": 1 }, { - "Id": 787, + "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus", - "Rank": 1, - "CommandName": "Get-PnPUPABulkImportStatus" + "Id": 787, + "Rank": 1 }, { - "Id": 788, + "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Rank": 2, - "CommandName": "Get-PnPUPABulkImportStatus" + "Id": 788, + "Rank": 2 }, { - "Id": 789, + "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Rank": 3, - "CommandName": "Get-PnPUPABulkImportStatus" + "Id": 789, + "Rank": 3 }, { - "Id": 790, + "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Rank": 4, - "CommandName": "Get-PnPUPABulkImportStatus" + "Id": 790, + "Rank": 4 }, { - "Id": 791, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser", - "Rank": 1, - "CommandName": "Get-PnPUser" + "Id": 791, + "Rank": 1 }, { - "Id": 792, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity 23", - "Rank": 2, - "CommandName": "Get-PnPUser" + "Id": 792, + "Rank": 2 }, { - "Id": 793, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Rank": 3, - "CommandName": "Get-PnPUser" + "Id": 793, + "Rank": 3 }, { - "Id": 794, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Rank": 4, - "CommandName": "Get-PnPUser" + "Id": 794, + "Rank": 4 }, { - "Id": 795, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned", - "Rank": 5, - "CommandName": "Get-PnPUser" + "Id": 795, + "Rank": 5 }, { - "Id": 796, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Rank": 6, - "CommandName": "Get-PnPUser" + "Id": 796, + "Rank": 6 }, { - "Id": 797, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Rank": 7, - "CommandName": "Get-PnPUser" + "Id": 797, + "Rank": 7 }, { - "Id": 798, + "CommandName": "Get-PnPUserOneDriveQuota", "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Rank": 1, - "CommandName": "Get-PnPUserOneDriveQuota" + "Id": 798, + "Rank": 1 }, { - "Id": 799, + "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Rank": 1, - "CommandName": "Get-PnPUserProfileProperty" + "Id": 799, + "Rank": 1 }, { - "Id": 800, + "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Rank": 2, - "CommandName": "Get-PnPUserProfileProperty" + "Id": 800, + "Rank": 2 }, { - "Id": 801, + "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Rank": 3, - "CommandName": "Get-PnPUserProfileProperty" + "Id": 801, + "Rank": 3 }, { - "Id": 802, + "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\"", - "Rank": 1, - "CommandName": "Get-PnPView" + "Id": 802, + "Rank": 1 }, { - "Id": 803, + "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Rank": 2, - "CommandName": "Get-PnPView" + "Id": 803, + "Rank": 2 }, { - "Id": 804, + "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Rank": 3, - "CommandName": "Get-PnPView" + "Id": 804, + "Rank": 3 }, { - "Id": 805, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "Id": 805, + "Rank": 1 }, { - "Id": 806, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 2, - "CommandName": "Get-PnPVivaConnectionsDashboardACE" + "Id": 806, + "Rank": 2 }, { - "Id": 807, + "CommandName": "Get-PnPWeb", "Command": "Get-PnPWeb", - "Rank": 1, - "CommandName": "Get-PnPWeb" + "Id": 807, + "Rank": 1 }, { - "Id": 808, + "CommandName": "Get-PnPWebHeader", "Command": "Get-PnPWebHeader", - "Rank": 1, - "CommandName": "Get-PnPWebHeader" + "Id": 808, + "Rank": 1 }, { - "Id": 809, + "CommandName": "Get-PnPWebhookSubscriptions", "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Rank": 1, - "CommandName": "Get-PnPWebhookSubscriptions" + "Id": 809, + "Rank": 1 }, { - "Id": 810, + "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Rank": 1, - "CommandName": "Get-PnPWebPart" + "Id": 810, + "Rank": 1 }, { - "Id": 811, + "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2, - "CommandName": "Get-PnPWebPart" + "Id": 811, + "Rank": 2 }, { - "Id": 812, + "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Rank": 1, - "CommandName": "Get-PnPWebPartProperty" + "Id": 812, + "Rank": 1 }, { - "Id": 813, + "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": 813, + "Rank": 2 }, { - "Id": 814, + "CommandName": "Get-PnPWebPartXml", "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, - "CommandName": "Get-PnPWebPartXml" + "Id": 814, + "Rank": 1 }, { - "Id": 815, + "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates", - "Rank": 1, - "CommandName": "Get-PnPWebTemplates" + "Id": 815, + "Rank": 1 }, { - "Id": 816, + "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -LCID 1033", - "Rank": 2, - "CommandName": "Get-PnPWebTemplates" + "Id": 816, + "Rank": 2 }, { - "Id": 817, + "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Rank": 3, - "CommandName": "Get-PnPWebTemplates" + "Id": 817, + "Rank": 3 }, { - "Id": 818, + "CommandName": "Get-PnPWikiPageContent", "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Rank": 1, - "CommandName": "Get-PnPWikiPageContent" + "Id": 818, + "Rank": 1 }, { - "Id": 819, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Rank": 1, - "CommandName": "Grant-PnPAzureADAppSitePermission" + "Id": 819, + "Rank": 1 }, { - "Id": 820, + "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": 820, + "Rank": 2 }, { - "Id": 821, + "CommandName": "Grant-PnPHubSiteRights", "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "CommandName": "Grant-PnPHubSiteRights" + "Id": 821, + "Rank": 1 }, { - "Id": 822, + "CommandName": "Grant-PnPSiteDesignRights", "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "CommandName": "Grant-PnPSiteDesignRights" + "Id": 822, + "Rank": 1 }, { - "Id": 823, + "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1, - "CommandName": "Grant-PnPTenantServicePrincipalPermission" + "Id": 823, + "Rank": 1 }, { - "Id": 824, + "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Rank": 1, - "CommandName": "Import-PnPTaxonomy" + "Id": 824, + "Rank": 1 }, { - "Id": 825, + "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Rank": 2, - "CommandName": "Import-PnPTaxonomy" + "Id": 825, + "Rank": 2 }, { - "Id": 826, + "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Rank": 3, - "CommandName": "Import-PnPTaxonomy" + "Id": 826, + "Rank": 3 }, { - "Id": 827, + "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Rank": 1, - "CommandName": "Import-PnPTermGroupFromXml" + "Id": 827, + "Rank": 1 }, { - "Id": 828, + "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Rank": 2, - "CommandName": "Import-PnPTermGroupFromXml" + "Id": 828, + "Rank": 2 }, { - "Id": 829, + "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Rank": 1, - "CommandName": "Import-PnPTermSet" + "Id": 829, + "Rank": 1 }, { - "Id": 830, + "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": 830, + "Rank": 2 }, { - "Id": 831, + "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": 831, + "Rank": 3 }, { - "Id": 832, + "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Install-PnPApp" + "Id": 832, + "Rank": 1 }, { - "Id": 833, + "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "CommandName": "Install-PnPApp" + "Id": 833, + "Rank": 2 }, { - "Id": 834, + "CommandName": "Invoke-PnPGraphMethod", "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": 834, + "Rank": 1 }, { - "Id": 835, + "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Rank": 2, - "CommandName": "Invoke-PnPGraphMethod" + "Id": 835, + "Rank": 2 }, { - "Id": 836, + "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Rank": 3, - "CommandName": "Invoke-PnPGraphMethod" + "Id": 836, + "Rank": 3 }, { - "Id": 837, + "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": 837, + "Rank": 4 }, { - "Id": 838, + "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Rank": 5, - "CommandName": "Invoke-PnPGraphMethod" + "Id": 838, + "Rank": 5 }, { - "Id": 839, + "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": 839, + "Rank": 6 }, { - "Id": 840, + "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": 840, + "Rank": 7 }, { - "Id": 841, + "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Invoke-PnPListDesign" + "Id": 841, + "Rank": 1 }, { - "Id": 842, + "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": 842, + "Rank": 2 }, { - "Id": 843, + "CommandName": "Invoke-PnPQuery", "Command": "Invoke-PnPQuery -RetryCount 5", - "Rank": 1, - "CommandName": "Invoke-PnPQuery" + "Id": 843, + "Rank": 1 }, { - "Id": 844, + "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Invoke-PnPSiteDesign" + "Id": 844, + "Rank": 1 }, { - "Id": 845, + "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": 845, + "Rank": 2 }, { - "Id": 846, + "CommandName": "Invoke-PnPSiteScript", "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Rank": 1, - "CommandName": "Invoke-PnPSiteScript" + "Id": 846, + "Rank": 1 }, { - "Id": 847, + "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, - "CommandName": "Invoke-PnPSiteSwap" + "Id": 847, + "Rank": 1 }, { - "Id": 848, + "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": 848, + "Rank": 2 }, { - "Id": 849, + "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": 849, + "Rank": 3 }, { - "Id": 850, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Rank": 1, - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 850, + "Rank": 1 }, { - "Id": 851, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Rank": 2, - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 851, + "Rank": 2 }, { - "Id": 852, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3, - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 852, + "Rank": 3 }, { - "Id": 853, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Rank": 4, - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 853, + "Rank": 4 }, { - "Id": 854, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Rank": 5, - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 854, + "Rank": 5 }, { - "Id": 855, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Rank": 6, - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 855, + "Rank": 6 }, { - "Id": 856, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Rank": 7, - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 856, + "Rank": 7 }, { - "Id": 857, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Rank": 8, - "CommandName": "Invoke-PnPSiteTemplate" + "Id": 857, + "Rank": 8 }, { - "Id": 858, + "CommandName": "Invoke-PnPSPRestMethod", "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Rank": 1, - "CommandName": "Invoke-PnPSPRestMethod" + "Id": 858, + "Rank": 1 }, { - "Id": 859, + "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Rank": 1, - "CommandName": "Invoke-PnPTenantTemplate" + "Id": 859, + "Rank": 1 }, { - "Id": 860, + "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Rank": 2, - "CommandName": "Invoke-PnPTenantTemplate" + "Id": 860, + "Rank": 2 }, { - "Id": 861, + "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3, - "CommandName": "Invoke-PnPTenantTemplate" + "Id": 861, + "Rank": 3 }, { - "Id": 862, + "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Rank": 1, - "CommandName": "Invoke-PnPWebAction" + "Id": 862, + "Rank": 1 }, { - "Id": 863, + "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Rank": 2, - "CommandName": "Invoke-PnPWebAction" + "Id": 863, + "Rank": 2 }, { - "Id": 864, + "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\"", - "Rank": 1, - "CommandName": "Measure-PnPList" + "Id": 864, + "Rank": 1 }, { - "Id": 865, + "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Rank": 2, - "CommandName": "Measure-PnPList" + "Id": 865, + "Rank": 2 }, { - "Id": 866, + "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb", - "Rank": 1, - "CommandName": "Measure-PnPWeb" + "Id": 866, + "Rank": 1 }, { - "Id": 867, + "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb $web -Recursive", - "Rank": 2, - "CommandName": "Measure-PnPWeb" + "Id": 867, + "Rank": 2 }, { - "Id": 868, + "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Rank": 1, - "CommandName": "Move-PnPFile" + "Id": 868, + "Rank": 1 }, { - "Id": 869, + "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Rank": 2, - "CommandName": "Move-PnPFile" + "Id": 869, + "Rank": 2 }, { - "Id": 870, + "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": 870, + "Rank": 3 }, { - "Id": 871, + "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 4, - "CommandName": "Move-PnPFile" + "Id": 871, + "Rank": 4 }, { - "Id": 872, + "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Rank": 1, - "CommandName": "Move-PnPFolder" + "Id": 872, + "Rank": 1 }, { - "Id": 873, + "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Rank": 2, - "CommandName": "Move-PnPFolder" + "Id": 873, + "Rank": 2 }, { - "Id": 874, + "CommandName": "Move-PnPListItemToRecycleBin", "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, - "CommandName": "Move-PnPListItemToRecycleBin" + "Id": 874, + "Rank": 1 }, { - "Id": 875, + "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Rank": 1, - "CommandName": "Move-PnPPageComponent" + "Id": 875, + "Rank": 1 }, { - "Id": 876, + "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Rank": 2, - "CommandName": "Move-PnPPageComponent" + "Id": 876, + "Rank": 2 }, { - "Id": 877, + "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Rank": 3, - "CommandName": "Move-PnPPageComponent" + "Id": 877, + "Rank": 3 }, { - "Id": 878, + "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": 878, + "Rank": 4 }, { - "Id": 879, + "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem", - "Rank": 1, - "CommandName": "Move-PnpRecycleBinItem" + "Id": 879, + "Rank": 1 }, { - "Id": 880, + "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Rank": 2, - "CommandName": "Move-PnpRecycleBinItem" + "Id": 880, + "Rank": 2 }, { - "Id": 881, + "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Force", - "Rank": 3, - "CommandName": "Move-PnpRecycleBinItem" + "Id": 881, + "Rank": 3 }, { - "Id": 882, + "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, - "CommandName": "Move-PnPTerm" + "Id": 882, + "Rank": 1 }, { - "Id": 883, + "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Rank": 2, - "CommandName": "Move-PnPTerm" + "Id": 883, + "Rank": 2 }, { - "Id": 884, + "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": 884, + "Rank": 3 }, { - "Id": 885, + "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, - "CommandName": "Move-PnPTermSet" + "Id": 885, + "Rank": 1 }, { - "Id": 886, + "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Rank": 2, - "CommandName": "Move-PnPTermSet" + "Id": 886, + "Rank": 2 }, { - "Id": 887, + "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, - "CommandName": "New-PnPAzureADGroup" + "Id": 887, + "Rank": 1 }, { - "Id": 888, + "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Rank": 2, - "CommandName": "New-PnPAzureADGroup" + "Id": 888, + "Rank": 2 }, { - "Id": 889, + "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Rank": 3, - "CommandName": "New-PnPAzureADGroup" + "Id": 889, + "Rank": 3 }, { - "Id": 890, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Rank": 1, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "Id": 890, + "Rank": 1 }, { - "Id": 891, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Rank": 2, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass" + "Id": 891, + "Rank": 2 }, { - "Id": 892, + "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": 892, + "Rank": 3 }, { - "Id": 893, + "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Rank": 1, - "CommandName": "New-PnPAzureCertificate" + "Id": 893, + "Rank": 1 }, { - "Id": 894, + "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Rank": 2, - "CommandName": "New-PnPAzureCertificate" + "Id": 894, + "Rank": 2 }, { - "Id": 895, + "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": 895, + "Rank": 3 }, { - "Id": 896, + "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, - "CommandName": "New-PnPGraphSubscription" + "Id": 896, + "Rank": 1 }, { - "Id": 897, + "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": 897, + "Rank": 2 }, { - "Id": 898, + "CommandName": "New-PnPGroup", "Command": "New-PnPGroup -Title \"My Site Users\"", - "Rank": 1, - "CommandName": "New-PnPGroup" + "Id": 898, + "Rank": 1 }, { - "Id": 899, + "CommandName": "New-PnPList", "Command": "New-PnPList -Title Announcements -Template Announcements", - "Rank": 1, - "CommandName": "New-PnPList" + "Id": 899, + "Rank": 1 }, { - "Id": 900, + "CommandName": "New-PnPList", "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Rank": 2, - "CommandName": "New-PnPList" + "Id": 900, + "Rank": 2 }, { - "Id": 901, + "CommandName": "New-PnPList", "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Rank": 3, - "CommandName": "New-PnPList" + "Id": 901, + "Rank": 3 }, { - "Id": 902, + "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, - "CommandName": "New-PnPMicrosoft365Group" + "Id": 902, + "Rank": 1 }, { - "Id": 903, + "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": 903, + "Rank": 2 }, { - "Id": 904, + "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Rank": 3, - "CommandName": "New-PnPMicrosoft365Group" + "Id": 904, + "Rank": 3 }, { - "Id": 905, + "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Rank": 4, - "CommandName": "New-PnPMicrosoft365Group" + "Id": 905, + "Rank": 4 }, { - "Id": 906, + "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": 906, + "Rank": 5 }, { - "Id": 907, + "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": 907, + "Rank": 6 }, { - "Id": 908, + "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, - "CommandName": "New-PnPMicrosoft365GroupSettings" + "Id": 908, + "Rank": 1 }, { - "Id": 909, + "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": 909, + "Rank": 2 }, { - "Id": 910, + "CommandName": "New-PnPPersonalSite", "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Rank": 1, - "CommandName": "New-PnPPersonalSite" + "Id": 910, + "Rank": 1 }, { - "Id": 911, + "CommandName": "New-PnPPlannerPlan", "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Rank": 1, - "CommandName": "New-PnPPlannerPlan" + "Id": 911, + "Rank": 1 }, { - "Id": 912, + "CommandName": "New-PnPSdnProvider", "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Rank": 1, - "CommandName": "New-PnPSdnProvider" + "Id": 912, + "Rank": 1 }, { - "Id": 913, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 1, - "CommandName": "New-PnPSite" + "Id": 913, + "Rank": 1 }, { - "Id": 914, + "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": 914, + "Rank": 2 }, { - "Id": 915, + "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": 915, + "Rank": 3 }, { - "Id": 916, + "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": 916, + "Rank": 4 }, { - "Id": 917, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 5, - "CommandName": "New-PnPSite" + "Id": 917, + "Rank": 5 }, { - "Id": 918, + "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": 918, + "Rank": 6 }, { - "Id": 919, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Rank": 7, - "CommandName": "New-PnPSite" + "Id": 919, + "Rank": 7 }, { - "Id": 920, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Rank": 8, - "CommandName": "New-PnPSite" + "Id": 920, + "Rank": 8 }, { - "Id": 921, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Rank": 9, - "CommandName": "New-PnPSite" + "Id": 921, + "Rank": 9 }, { - "Id": 922, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Rank": 10, - "CommandName": "New-PnPSite" + "Id": 922, + "Rank": 10 }, { - "Id": 923, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 11, - "CommandName": "New-PnPSite" + "Id": 923, + "Rank": 11 }, { - "Id": 924, + "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": 924, + "Rank": 12 }, { - "Id": 925, + "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": 925, + "Rank": 13 }, { - "Id": 926, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 14, - "CommandName": "New-PnPSite" + "Id": 926, + "Rank": 14 }, { - "Id": 927, + "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": 927, + "Rank": 15 }, { - "Id": 928, + "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": 928, + "Rank": 16 }, { - "Id": 929, + "CommandName": "New-PnPSiteCollectionTermStore", "Command": "New-PnPSiteCollectionTermStore", - "Rank": 1, - "CommandName": "New-PnPSiteCollectionTermStore" + "Id": 929, + "Rank": 1 }, { - "Id": 930, + "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Rank": 1, - "CommandName": "New-PnPSiteGroup" + "Id": 930, + "Rank": 1 }, { - "Id": 931, + "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Rank": 2, - "CommandName": "New-PnPSiteGroup" + "Id": 931, + "Rank": 2 }, { - "Id": 932, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Rank": 1, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Id": 932, + "Rank": 1 }, { - "Id": 933, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Rank": 2, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Id": 933, + "Rank": 2 }, { - "Id": 934, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Rank": 3, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Id": 934, + "Rank": 3 }, { - "Id": 935, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Rank": 4, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Id": 935, + "Rank": 4 }, { - "Id": 936, + "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": 936, + "Rank": 5 }, { - "Id": 937, + "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": 937, + "Rank": 6 }, { - "Id": 938, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Rank": 7, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Id": 938, + "Rank": 7 }, { - "Id": 939, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Rank": 8, - "CommandName": "New-PnPSiteTemplateFromFolder" + "Id": 939, + "Rank": 8 }, { - "Id": 940, + "CommandName": "New-PnPTeamsApp", "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Rank": 1, - "CommandName": "New-PnPTeamsApp" + "Id": 940, + "Rank": 1 }, { - "Id": 941, + "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Rank": 1, - "CommandName": "New-PnPTeamsTeam" + "Id": 941, + "Rank": 1 }, { - "Id": 942, + "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Rank": 2, - "CommandName": "New-PnPTeamsTeam" + "Id": 942, + "Rank": 2 }, { - "Id": 943, + "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Rank": 3, - "CommandName": "New-PnPTeamsTeam" + "Id": 943, + "Rank": 3 }, { - "Id": 944, + "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 4, - "CommandName": "New-PnPTeamsTeam" + "Id": 944, + "Rank": 4 }, { - "Id": 945, + "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": 945, + "Rank": 5 }, { - "Id": 946, + "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": 946, + "Rank": 6 }, { - "Id": 947, + "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, - "CommandName": "New-PnPTenantSite" + "Id": 947, + "Rank": 1 }, { - "Id": 948, + "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": 948, + "Rank": 2 }, { - "Id": 949, + "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Rank": 1, - "CommandName": "New-PnPTerm" + "Id": 949, + "Rank": 1 }, { - "Id": 950, + "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2, - "CommandName": "New-PnPTerm" + "Id": 950, + "Rank": 2 }, { - "Id": 951, + "CommandName": "New-PnPTermGroup", "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Rank": 1, - "CommandName": "New-PnPTermGroup" + "Id": 951, + "Rank": 1 }, { - "Id": 952, + "CommandName": "New-PnPTermLabel", "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Rank": 1, - "CommandName": "New-PnPTermLabel" + "Id": 952, + "Rank": 1 }, { - "Id": 953, + "CommandName": "New-PnPTermSet", "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Rank": 1, - "CommandName": "New-PnPTermSet" + "Id": 953, + "Rank": 1 }, { - "Id": 954, + "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Rank": 1, - "CommandName": "New-PnPUPABulkImportJob" + "Id": 954, + "Rank": 1 }, { - "Id": 955, + "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": 955, + "Rank": 2 }, { - "Id": 956, + "CommandName": "New-PnPUser", "Command": "New-PnPUser -LoginName user@company.com", - "Rank": 1, - "CommandName": "New-PnPUser" + "Id": 956, + "Rank": 1 }, { - "Id": 957, + "CommandName": "New-PnPWeb", "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": 957, + "Rank": 1 }, { - "Id": 958, + "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 1, - "CommandName": "Publish-PnPApp" + "Id": 958, + "Rank": 1 }, { - "Id": 959, + "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Rank": 2, - "CommandName": "Publish-PnPApp" + "Id": 959, + "Rank": 2 }, { - "Id": 960, + "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, - "CommandName": "Publish-PnPCompanyApp" + "Id": 960, + "Rank": 1 }, { - "Id": 961, + "CommandName": "Publish-PnPContentType", "Command": "Publish-PnPContentType -ContentType 0x0101", - "Rank": 1, - "CommandName": "Publish-PnPContentType" + "Id": 961, + "Rank": 1 }, { - "Id": 962, + "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, - "CommandName": "Publish-PnPSyntexModel" + "Id": 962, + "Rank": 1 }, { - "Id": 963, + "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": 963, + "Rank": 2 }, { - "Id": 964, + "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Rank": 1, - "CommandName": "Read-PnPSiteTemplate" + "Id": 964, + "Rank": 1 }, { - "Id": 965, + "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Rank": 2, - "CommandName": "Read-PnPSiteTemplate" + "Id": 965, + "Rank": 2 }, { - "Id": 966, + "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Xml $xml", - "Rank": 3, - "CommandName": "Read-PnPSiteTemplate" + "Id": 966, + "Rank": 3 }, { - "Id": 967, + "CommandName": "Read-PnPTenantTemplate", "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Rank": 1, - "CommandName": "Read-PnPTenantTemplate" + "Id": 967, + "Rank": 1 }, { - "Id": 968, + "CommandName": "Register-PnPAppCatalogSite", "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Rank": 1, - "CommandName": "Register-PnPAppCatalogSite" + "Id": 968, + "Rank": 1 }, { - "Id": 969, + "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, - "CommandName": "Register-PnPAzureADApp" + "Id": 969, + "Rank": 1 }, { - "Id": 970, + "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": 970, + "Rank": 2 }, { - "Id": 971, + "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": 971, + "Rank": 3 }, { - "Id": 972, + "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": 972, + "Rank": 4 }, { - "Id": 973, + "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": 973, + "Rank": 5 }, { - "Id": 974, + "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": 974, + "Rank": 6 }, { - "Id": 975, + "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": 975, + "Rank": 7 }, { - "Id": 976, + "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, - "CommandName": "Register-PnPHubSite" + "Id": 976, + "Rank": 1 }, { - "Id": 977, + "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Rank": 2, - "CommandName": "Register-PnPHubSite" + "Id": 977, + "Rank": 2 }, { - "Id": 978, + "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess", - "Rank": 1, - "CommandName": "Register-PnPManagementShellAccess" + "Id": 978, + "Rank": 1 }, { - "Id": 979, + "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Rank": 2, - "CommandName": "Register-PnPManagementShellAccess" + "Id": 979, + "Rank": 2 }, { - "Id": 980, + "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Rank": 3, - "CommandName": "Register-PnPManagementShellAccess" + "Id": 980, + "Rank": 3 }, { - "Id": 981, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Rank": 1, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "Id": 981, + "Rank": 1 }, { - "Id": 982, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Rank": 2, - "CommandName": "Remove-PnPAdaptiveScopeProperty" + "Id": 982, + "Rank": 2 }, { - "Id": 983, + "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Rank": 1, - "CommandName": "Remove-PnPAlert" + "Id": 983, + "Rank": 1 }, { - "Id": 984, + "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": 984, + "Rank": 2 }, { - "Id": 985, + "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Remove-PnPApp" + "Id": 985, + "Rank": 1 }, { - "Id": 986, + "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "CommandName": "Remove-PnPApp" + "Id": 986, + "Rank": 2 }, { - "Id": 987, + "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, - "CommandName": "Remove-PnPApplicationCustomizer" + "Id": 987, + "Rank": 1 }, { - "Id": 988, + "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, - "CommandName": "Remove-PnPApplicationCustomizer" + "Id": 988, + "Rank": 2 }, { - "Id": 989, + "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Rank": 1, - "CommandName": "Remove-PnPAvailableSiteClassification" + "Id": 989, + "Rank": 1 }, { - "Id": 990, + "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 2, - "CommandName": "Remove-PnPAvailableSiteClassification" + "Id": 990, + "Rank": 2 }, { - "Id": 991, + "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Rank": 1, - "CommandName": "Remove-PnPAzureADApp" + "Id": 991, + "Rank": 1 }, { - "Id": 992, + "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 2, - "CommandName": "Remove-PnPAzureADApp" + "Id": 992, + "Rank": 2 }, { - "Id": 993, + "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Rank": 1, - "CommandName": "Remove-PnPAzureADGroup" + "Id": 993, + "Rank": 1 }, { - "Id": 994, + "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $group", - "Rank": 2, - "CommandName": "Remove-PnPAzureADGroup" + "Id": 994, + "Rank": 2 }, { - "Id": 995, + "CommandName": "Remove-PnPAzureADGroupMember", "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupMember" + "Id": 995, + "Rank": 1 }, { - "Id": 996, + "CommandName": "Remove-PnPAzureADGroupOwner", "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Remove-PnPAzureADGroupOwner" + "Id": 996, + "Rank": 1 }, { - "Id": 997, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Rank": 1, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Id": 997, + "Rank": 1 }, { - "Id": 998, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Rank": 2, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Id": 998, + "Rank": 2 }, { - "Id": 999, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 3, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Id": 999, + "Rank": 3 }, { - "Id": 1000, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 4, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" + "Id": 1000, + "Rank": 4 }, { - "Id": 1001, + "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Rank": 1, - "CommandName": "Remove-PnPContentType" + "Id": 1001, + "Rank": 1 }, { - "Id": 1002, + "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Rank": 2, - "CommandName": "Remove-PnPContentType" + "Id": 1002, + "Rank": 2 }, { - "Id": 1003, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "Id": 1003, + "Rank": 1 }, { - "Id": 1004, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, - "CommandName": "Remove-PnPContentTypeFromDocumentSet" + "Id": 1004, + "Rank": 2 }, { - "Id": 1005, + "CommandName": "Remove-PnPContentTypeFromList", "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Rank": 1, - "CommandName": "Remove-PnPContentTypeFromList" + "Id": 1005, + "Rank": 1 }, { - "Id": 1006, + "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, - "CommandName": "Remove-PnPCustomAction" + "Id": 1006, + "Rank": 1 }, { - "Id": 1007, + "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, - "CommandName": "Remove-PnPCustomAction" + "Id": 1007, + "Rank": 2 }, { - "Id": 1008, + "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Rank": 3, - "CommandName": "Remove-PnPCustomAction" + "Id": 1008, + "Rank": 3 }, { - "Id": 1009, + "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, - "CommandName": "Remove-PnPDeletedMicrosoft365Group" + "Id": 1009, + "Rank": 1 }, { - "Id": 1010, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 1, - "CommandName": "Remove-PnPEventReceiver" + "Id": 1010, + "Rank": 1 }, { - "Id": 1011, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, - "CommandName": "Remove-PnPEventReceiver" + "Id": 1011, + "Rank": 2 }, { - "Id": 1012, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Rank": 3, - "CommandName": "Remove-PnPEventReceiver" + "Id": 1012, + "Rank": 3 }, { - "Id": 1013, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList", - "Rank": 4, - "CommandName": "Remove-PnPEventReceiver" + "Id": 1013, + "Rank": 4 }, { - "Id": 1014, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver", - "Rank": 5, - "CommandName": "Remove-PnPEventReceiver" + "Id": 1014, + "Rank": 5 }, { - "Id": 1015, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Site", - "Rank": 6, - "CommandName": "Remove-PnPEventReceiver" + "Id": 1015, + "Rank": 6 }, { - "Id": 1016, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Web", - "Rank": 7, - "CommandName": "Remove-PnPEventReceiver" + "Id": 1016, + "Rank": 7 }, { - "Id": 1017, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope All", - "Rank": 8, - "CommandName": "Remove-PnPEventReceiver" + "Id": 1017, + "Rank": 8 }, { - "Id": 1018, + "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -Identity \"Speakers\"", - "Rank": 1, - "CommandName": "Remove-PnPField" + "Id": 1018, + "Rank": 1 }, { - "Id": 1019, + "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, - "CommandName": "Remove-PnPField" + "Id": 1019, + "Rank": 2 }, { - "Id": 1020, + "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1, - "CommandName": "Remove-PnPFieldFromContentType" + "Id": 1020, + "Rank": 1 }, { - "Id": 1021, + "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Rank": 2, - "CommandName": "Remove-PnPFieldFromContentType" + "Id": 1021, + "Rank": 2 }, { - "Id": 1022, + "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Rank": 1, - "CommandName": "Remove-PnPFile" + "Id": 1022, + "Rank": 1 }, { - "Id": 1023, + "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Rank": 2, - "CommandName": "Remove-PnPFile" + "Id": 1023, + "Rank": 2 }, { - "Id": 1024, + "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Rank": 3, - "CommandName": "Remove-PnPFile" + "Id": 1024, + "Rank": 3 }, { - "Id": 1025, + "CommandName": "Remove-PnPFileFromSiteTemplate", "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Rank": 1, - "CommandName": "Remove-PnPFileFromSiteTemplate" + "Id": 1025, + "Rank": 1 }, { - "Id": 1026, + "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "CommandName": "Remove-PnPFileSharingLink" + "Id": 1026, + "Rank": 1 }, { - "Id": 1027, + "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Rank": 2, - "CommandName": "Remove-PnPFileSharingLink" + "Id": 1027, + "Rank": 2 }, { - "Id": 1028, + "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, - "CommandName": "Remove-PnPFileVersion" + "Id": 1028, + "Rank": 1 }, { - "Id": 1029, + "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 2, - "CommandName": "Remove-PnPFileVersion" + "Id": 1029, + "Rank": 2 }, { - "Id": 1030, + "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Rank": 3, - "CommandName": "Remove-PnPFileVersion" + "Id": 1030, + "Rank": 3 }, { - "Id": 1031, + "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1, - "CommandName": "Remove-PnPFolder" + "Id": 1031, + "Rank": 1 }, { - "Id": 1032, + "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Rank": 2, - "CommandName": "Remove-PnPFolder" + "Id": 1032, + "Rank": 2 }, { - "Id": 1033, + "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "CommandName": "Remove-PnPFolderSharingLink" + "Id": 1033, + "Rank": 1 }, { - "Id": 1034, + "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Rank": 2, - "CommandName": "Remove-PnPFolderSharingLink" + "Id": 1034, + "Rank": 2 }, { - "Id": 1035, + "CommandName": "Remove-PnPGraphSubscription", "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Rank": 1, - "CommandName": "Remove-PnPGraphSubscription" + "Id": 1035, + "Rank": 1 }, { - "Id": 1036, + "CommandName": "Remove-PnPGroup", "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Rank": 1, - "CommandName": "Remove-PnPGroup" + "Id": 1036, + "Rank": 1 }, { - "Id": 1037, + "CommandName": "Remove-PnPGroupMember", "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1, - "CommandName": "Remove-PnPGroupMember" + "Id": 1037, + "Rank": 1 }, { - "Id": 1038, + "CommandName": "Remove-PnPHomeSite", "Command": "Remove-PnPHomeSite", - "Rank": 1, - "CommandName": "Remove-PnPHomeSite" + "Id": 1038, + "Rank": 1 }, { - "Id": 1039, + "CommandName": "Remove-PnPHubSiteAssociation", "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, - "CommandName": "Remove-PnPHubSiteAssociation" + "Id": 1039, + "Rank": 1 }, { - "Id": 1040, + "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Rank": 1, - "CommandName": "Remove-PnPHubToHubAssociation" + "Id": 1040, + "Rank": 1 }, { - "Id": 1041, + "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Rank": 2, - "CommandName": "Remove-PnPHubToHubAssociation" + "Id": 1041, + "Rank": 2 }, { - "Id": 1042, + "CommandName": "Remove-PnPIndexedProperty", "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Rank": 1, - "CommandName": "Remove-PnPIndexedProperty" + "Id": 1042, + "Rank": 1 }, { - "Id": 1043, + "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Rank": 1, - "CommandName": "Remove-PnPJavaScriptLink" + "Id": 1043, + "Rank": 1 }, { - "Id": 1044, + "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Rank": 2, - "CommandName": "Remove-PnPJavaScriptLink" + "Id": 1044, + "Rank": 2 }, { - "Id": 1045, + "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Rank": 3, - "CommandName": "Remove-PnPJavaScriptLink" + "Id": 1045, + "Rank": 3 }, { - "Id": 1046, + "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Rank": 4, - "CommandName": "Remove-PnPJavaScriptLink" + "Id": 1046, + "Rank": 4 }, { - "Id": 1047, + "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Rank": 5, - "CommandName": "Remove-PnPJavaScriptLink" + "Id": 1047, + "Rank": 5 }, { - "Id": 1048, + "CommandName": "Remove-PnPKnowledgeHubSite", "Command": "Remove-PnPKnowledgeHubSite", - "Rank": 1, - "CommandName": "Remove-PnPKnowledgeHubSite" + "Id": 1048, + "Rank": 1 }, { - "Id": 1049, + "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements", - "Rank": 1, - "CommandName": "Remove-PnPList" + "Id": 1049, + "Rank": 1 }, { - "Id": 1050, + "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Force", - "Rank": 2, - "CommandName": "Remove-PnPList" + "Id": 1050, + "Rank": 2 }, { - "Id": 1051, + "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Rank": 3, - "CommandName": "Remove-PnPList" + "Id": 1051, + "Rank": 3 }, { - "Id": 1052, + "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Rank": 4, - "CommandName": "Remove-PnPList" + "Id": 1052, + "Rank": 4 }, { - "Id": 1053, + "CommandName": "Remove-PnPListDesign", "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Remove-PnPListDesign" + "Id": 1053, + "Rank": 1 }, { - "Id": 1054, + "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, - "CommandName": "Remove-PnPListItem" + "Id": 1054, + "Rank": 1 }, { - "Id": 1055, + "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Rank": 2, - "CommandName": "Remove-PnPListItem" + "Id": 1055, + "Rank": 2 }, { - "Id": 1056, + "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\"", - "Rank": 3, - "CommandName": "Remove-PnPListItem" + "Id": 1056, + "Rank": 3 }, { - "Id": 1057, + "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Rank": 1, - "CommandName": "Remove-PnPListItemAttachment" + "Id": 1057, + "Rank": 1 }, { - "Id": 1058, + "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Rank": 2, - "CommandName": "Remove-PnPListItemAttachment" + "Id": 1058, + "Rank": 2 }, { - "Id": 1059, + "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Rank": 3, - "CommandName": "Remove-PnPListItemAttachment" + "Id": 1059, + "Rank": 3 }, { - "Id": 1060, + "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Rank": 4, - "CommandName": "Remove-PnPListItemAttachment" + "Id": 1060, + "Rank": 4 }, { - "Id": 1061, + "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Rank": 5, - "CommandName": "Remove-PnPListItemAttachment" + "Id": 1061, + "Rank": 5 }, { - "Id": 1062, + "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, - "CommandName": "Remove-PnPListItemVersion" + "Id": 1062, + "Rank": 1 }, { - "Id": 1063, + "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, - "CommandName": "Remove-PnPListItemVersion" + "Id": 1063, + "Rank": 2 }, { - "Id": 1064, + "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365Group" + "Id": 1064, + "Rank": 1 }, { - "Id": 1065, + "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365Group" + "Id": 1065, + "Rank": 2 }, { - "Id": 1066, + "CommandName": "Remove-PnPMicrosoft365GroupMember", "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupMember" + "Id": 1066, + "Rank": 1 }, { - "Id": 1067, + "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupOwner" + "Id": 1067, + "Rank": 1 }, { - "Id": 1068, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Rank": 1, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "Id": 1068, + "Rank": 1 }, { - "Id": 1069, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Rank": 2, - "CommandName": "Remove-PnPMicrosoft365GroupSettings" + "Id": 1069, + "Rank": 2 }, { - "Id": 1070, + "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Identity 1032", - "Rank": 1, - "CommandName": "Remove-PnPNavigationNode" + "Id": 1070, + "Rank": 1 }, { - "Id": 1071, + "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Rank": 2, - "CommandName": "Remove-PnPNavigationNode" + "Id": 1071, + "Rank": 2 }, { - "Id": 1072, + "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Rank": 3, - "CommandName": "Remove-PnPNavigationNode" + "Id": 1072, + "Rank": 3 }, { - "Id": 1073, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Rank": 1, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "Id": 1073, + "Rank": 1 }, { - "Id": 1074, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Rank": 2, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "Id": 1074, + "Rank": 2 }, { - "Id": 1075, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Rank": 3, - "CommandName": "Remove-PnPOrgAssetsLibrary" + "Id": 1075, + "Rank": 3 }, { - "Id": 1076, + "CommandName": "Remove-PnPOrgNewsSite", "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, - "CommandName": "Remove-PnPOrgNewsSite" + "Id": 1076, + "Rank": 1 }, { - "Id": 1077, + "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Rank": 1, - "CommandName": "Remove-PnPPage" + "Id": 1077, + "Rank": 1 }, { - "Id": 1078, + "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Rank": 2, - "CommandName": "Remove-PnPPage" + "Id": 1078, + "Rank": 2 }, { - "Id": 1079, + "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage $page", - "Rank": 3, - "CommandName": "Remove-PnPPage" + "Id": 1079, + "Rank": 3 }, { - "Id": 1080, + "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Rank": 4, - "CommandName": "Remove-PnPPage" + "Id": 1080, + "Rank": 4 }, { - "Id": 1081, + "CommandName": "Remove-PnPPageComponent", "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, - "CommandName": "Remove-PnPPageComponent" + "Id": 1081, + "Rank": 1 }, { - "Id": 1082, + "CommandName": "Remove-PnPPlannerBucket", "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Rank": 1, - "CommandName": "Remove-PnPPlannerBucket" + "Id": 1082, + "Rank": 1 }, { - "Id": 1083, + "CommandName": "Remove-PnPPlannerPlan", "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Rank": 1, - "CommandName": "Remove-PnPPlannerPlan" + "Id": 1083, + "Rank": 1 }, { - "Id": 1084, + "CommandName": "Remove-PnPPlannerRoster", "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, - "CommandName": "Remove-PnPPlannerRoster" + "Id": 1084, + "Rank": 1 }, { - "Id": 1085, + "CommandName": "Remove-PnPPlannerRosterMember", "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Remove-PnPPlannerRosterMember" + "Id": 1085, + "Rank": 1 }, { - "Id": 1086, + "CommandName": "Remove-PnPPlannerTask", "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Rank": 1, - "CommandName": "Remove-PnPPlannerTask" + "Id": 1086, + "Rank": 1 }, { - "Id": 1087, + "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Rank": 1, - "CommandName": "Remove-PnPPropertyBagValue" + "Id": 1087, + "Rank": 1 }, { - "Id": 1088, + "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Rank": 2, - "CommandName": "Remove-PnPPropertyBagValue" + "Id": 1088, + "Rank": 2 }, { - "Id": 1089, + "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Rank": 3, - "CommandName": "Remove-PnPPropertyBagValue" + "Id": 1089, + "Rank": 3 }, { - "Id": 1090, + "CommandName": "Remove-PnPPublishingImageRendition", "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1, - "CommandName": "Remove-PnPPublishingImageRendition" + "Id": 1090, + "Rank": 1 }, { - "Id": 1091, + "CommandName": "Remove-PnPRoleDefinition", "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Rank": 1, - "CommandName": "Remove-PnPRoleDefinition" + "Id": 1091, + "Rank": 1 }, { - "Id": 1092, + "CommandName": "Remove-PnPSdnProvider", "Command": "Remove-PnPSdnProvider -Confirm:false", - "Rank": 1, - "CommandName": "Remove-PnPSdnProvider" + "Id": 1092, + "Rank": 1 }, { - "Id": 1093, + "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Rank": 1, - "CommandName": "Remove-PnPSearchConfiguration" + "Id": 1093, + "Rank": 1 }, { - "Id": 1094, + "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, - "CommandName": "Remove-PnPSearchConfiguration" + "Id": 1094, + "Rank": 2 }, { - "Id": 1095, + "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, - "CommandName": "Remove-PnPSearchConfiguration" + "Id": 1095, + "Rank": 3 }, { - "Id": 1096, + "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, - "CommandName": "Remove-PnPSearchConfiguration" + "Id": 1096, + "Rank": 4 }, { - "Id": 1097, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "Id": 1097, + "Rank": 1 }, { - "Id": 1098, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, - "CommandName": "Remove-PnPSiteCollectionAdmin" + "Id": 1098, + "Rank": 2 }, { - "Id": 1099, + "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionAppCatalog" + "Id": 1099, + "Rank": 1 }, { - "Id": 1100, + "CommandName": "Remove-PnPSiteCollectionTermStore", "Command": "Remove-PnPSiteCollectionTermStore", - "Rank": 1, - "CommandName": "Remove-PnPSiteCollectionTermStore" + "Id": 1100, + "Rank": 1 }, { - "Id": 1101, + "CommandName": "Remove-PnPSiteDesign", "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Remove-PnPSiteDesign" + "Id": 1101, + "Rank": 1 }, { - "Id": 1102, + "CommandName": "Remove-PnPSiteDesignTask", "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Remove-PnPSiteDesignTask" + "Id": 1102, + "Rank": 1 }, { - "Id": 1103, + "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, - "CommandName": "Remove-PnPSiteGroup" + "Id": 1103, + "Rank": 1 }, { - "Id": 1104, + "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Rank": 2, - "CommandName": "Remove-PnPSiteGroup" + "Id": 1104, + "Rank": 2 }, { - "Id": 1105, + "CommandName": "Remove-PnPSiteScript", "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "CommandName": "Remove-PnPSiteScript" + "Id": 1105, + "Rank": 1 }, { - "Id": 1106, + "CommandName": "Remove-PnPSiteUserInvitations", "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1, - "CommandName": "Remove-PnPSiteUserInvitations" + "Id": 1106, + "Rank": 1 }, { - "Id": 1107, + "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey", - "Rank": 1, - "CommandName": "Remove-PnPStorageEntity" + "Id": 1107, + "Rank": 1 }, { - "Id": 1108, + "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 2, - "CommandName": "Remove-PnPStorageEntity" + "Id": 1108, + "Rank": 2 }, { - "Id": 1109, + "CommandName": "Remove-PnPStoredCredential", "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Rank": 1, - "CommandName": "Remove-PnPStoredCredential" + "Id": 1109, + "Rank": 1 }, { - "Id": 1110, + "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Rank": 1, - "CommandName": "Remove-PnPTaxonomyItem" + "Id": 1110, + "Rank": 1 }, { - "Id": 1111, + "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Rank": 2, - "CommandName": "Remove-PnPTaxonomyItem" + "Id": 1111, + "Rank": 2 }, { - "Id": 1112, + "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Rank": 1, - "CommandName": "Remove-PnPTeamsApp" + "Id": 1112, + "Rank": 1 }, { - "Id": 1113, + "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Rank": 2, - "CommandName": "Remove-PnPTeamsApp" + "Id": 1113, + "Rank": 2 }, { - "Id": 1114, + "CommandName": "Remove-PnPTeamsChannel", "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Rank": 1, - "CommandName": "Remove-PnPTeamsChannel" + "Id": 1114, + "Rank": 1 }, { - "Id": 1115, + "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Rank": 1, - "CommandName": "Remove-PnPTeamsChannelUser" + "Id": 1115, + "Rank": 1 }, { - "Id": 1116, + "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 2, - "CommandName": "Remove-PnPTeamsChannelUser" + "Id": 1116, + "Rank": 2 }, { - "Id": 1117, + "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Rank": 3, - "CommandName": "Remove-PnPTeamsChannelUser" + "Id": 1117, + "Rank": 3 }, { - "Id": 1118, + "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Rank": 1, - "CommandName": "Remove-PnPTeamsTab" + "Id": 1118, + "Rank": 1 }, { - "Id": 1119, + "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": 1119, + "Rank": 2 }, { - "Id": 1120, + "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": 1120, + "Rank": 3 }, { - "Id": 1121, + "CommandName": "Remove-PnPTeamsTag", "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 1, - "CommandName": "Remove-PnPTeamsTag" + "Id": 1121, + "Rank": 1 }, { - "Id": 1122, + "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, - "CommandName": "Remove-PnPTeamsTeam" + "Id": 1122, + "Rank": 1 }, { - "Id": 1123, + "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Rank": 2, - "CommandName": "Remove-PnPTeamsTeam" + "Id": 1123, + "Rank": 2 }, { - "Id": 1124, + "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Rank": 1, - "CommandName": "Remove-PnPTeamsUser" + "Id": 1124, + "Rank": 1 }, { - "Id": 1125, + "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 2, - "CommandName": "Remove-PnPTeamsUser" + "Id": 1125, + "Rank": 2 }, { - "Id": 1126, + "CommandName": "Remove-PnPTenantCdnOrigin", "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, - "CommandName": "Remove-PnPTenantCdnOrigin" + "Id": 1126, + "Rank": 1 }, { - "Id": 1127, + "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "CommandName": "Remove-PnPTenantDeletedSite" + "Id": 1127, + "Rank": 1 }, { - "Id": 1128, + "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, - "CommandName": "Remove-PnPTenantDeletedSite" + "Id": 1128, + "Rank": 2 }, { - "Id": 1129, + "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "CommandName": "Remove-PnPTenantSite" + "Id": 1129, + "Rank": 1 }, { - "Id": 1130, + "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Rank": 2, - "CommandName": "Remove-PnPTenantSite" + "Id": 1130, + "Rank": 2 }, { - "Id": 1131, + "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Rank": 3, - "CommandName": "Remove-PnPTenantSite" + "Id": 1131, + "Rank": 3 }, { - "Id": 1132, + "CommandName": "Remove-PnPTenantSyncClientRestriction", "Command": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1, - "CommandName": "Remove-PnPTenantSyncClientRestriction" + "Id": 1132, + "Rank": 1 }, { - "Id": 1133, + "CommandName": "Remove-PnPTenantTheme", "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 1, - "CommandName": "Remove-PnPTenantTheme" + "Id": 1133, + "Rank": 1 }, { - "Id": 1134, + "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, - "CommandName": "Remove-PnPTerm" + "Id": 1134, + "Rank": 1 }, { - "Id": 1135, + "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "CommandName": "Remove-PnPTerm" + "Id": 1135, + "Rank": 2 }, { - "Id": 1136, + "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, - "CommandName": "Remove-PnPTermGroup" + "Id": 1136, + "Rank": 1 }, { - "Id": 1137, + "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Rank": 2, - "CommandName": "Remove-PnPTermGroup" + "Id": 1137, + "Rank": 2 }, { - "Id": 1138, + "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Rank": 3, - "CommandName": "Remove-PnPTermGroup" + "Id": 1138, + "Rank": 3 }, { - "Id": 1139, + "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Rank": 1, - "CommandName": "Remove-PnPTermLabel" + "Id": 1139, + "Rank": 1 }, { - "Id": 1140, + "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "CommandName": "Remove-PnPTermLabel" + "Id": 1140, + "Rank": 2 }, { - "Id": 1141, + "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity 23", - "Rank": 1, - "CommandName": "Remove-PnPUser" + "Id": 1141, + "Rank": 1 }, { - "Id": 1142, + "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Rank": 2, - "CommandName": "Remove-PnPUser" + "Id": 1142, + "Rank": 2 }, { - "Id": 1143, + "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Rank": 3, - "CommandName": "Remove-PnPUser" + "Id": 1143, + "Rank": 3 }, { - "Id": 1144, + "CommandName": "Remove-PnPUserInfo", "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1, - "CommandName": "Remove-PnPUserInfo" + "Id": 1144, + "Rank": 1 }, { - "Id": 1145, + "CommandName": "Remove-PnPUserProfile", "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, - "CommandName": "Remove-PnPUserProfile" + "Id": 1145, + "Rank": 1 }, { - "Id": 1146, + "CommandName": "Remove-PnPView", "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Rank": 1, - "CommandName": "Remove-PnPView" + "Id": 1146, + "Rank": 1 }, { - "Id": 1147, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 1, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE" + "Id": 1147, + "Rank": 1 }, { - "Id": 1148, + "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity projectA", - "Rank": 1, - "CommandName": "Remove-PnPWeb" + "Id": 1148, + "Rank": 1 }, { - "Id": 1149, + "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Rank": 2, - "CommandName": "Remove-PnPWeb" + "Id": 1149, + "Rank": 2 }, { - "Id": 1150, + "CommandName": "Remove-PnPWebhookSubscription", "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Rank": 1, - "CommandName": "Remove-PnPWebhookSubscription" + "Id": 1150, + "Rank": 1 }, { - "Id": 1151, + "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, - "CommandName": "Remove-PnPWebPart" + "Id": 1151, + "Rank": 1 }, { - "Id": 1152, + "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Rank": 2, - "CommandName": "Remove-PnPWebPart" + "Id": 1152, + "Rank": 2 }, { - "Id": 1153, + "CommandName": "Remove-PnPWikiPage", "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Rank": 1, - "CommandName": "Remove-PnPWikiPage" + "Id": 1153, + "Rank": 1 }, { - "Id": 1154, + "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Rank": 1, - "CommandName": "Rename-PnPFile" + "Id": 1154, + "Rank": 1 }, { - "Id": 1155, + "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Rank": 2, - "CommandName": "Rename-PnPFile" + "Id": 1155, + "Rank": 2 }, { - "Id": 1156, + "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Rank": 3, - "CommandName": "Rename-PnPFile" + "Id": 1156, + "Rank": 3 }, { - "Id": 1157, + "CommandName": "Rename-PnPFolder", "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Rank": 1, - "CommandName": "Rename-PnPFolder" + "Id": 1157, + "Rank": 1 }, { - "Id": 1158, + "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, - "CommandName": "Repair-PnPSite" + "Id": 1158, + "Rank": 1 }, { - "Id": 1159, + "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": 1159, + "Rank": 2 }, { - "Id": 1160, + "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken", - "Rank": 1, - "CommandName": "Request-PnPAccessToken" + "Id": 1160, + "Rank": 1 }, { - "Id": 1161, + "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Rank": 2, - "CommandName": "Request-PnPAccessToken" + "Id": 1161, + "Rank": 2 }, { - "Id": 1162, + "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Rank": 3, - "CommandName": "Request-PnPAccessToken" + "Id": 1162, + "Rank": 3 }, { - "Id": 1163, + "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Rank": 4, - "CommandName": "Request-PnPAccessToken" + "Id": 1163, + "Rank": 4 }, { - "Id": 1164, + "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Rank": 1, - "CommandName": "Request-PnPPersonalSite" + "Id": 1164, + "Rank": 1 }, { - "Id": 1165, + "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Rank": 2, - "CommandName": "Request-PnPPersonalSite" + "Id": 1165, + "Rank": 2 }, { - "Id": 1166, + "CommandName": "Request-PnPReIndexList", "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Rank": 1, - "CommandName": "Request-PnPReIndexList" + "Id": 1166, + "Rank": 1 }, { - "Id": 1167, + "CommandName": "Request-PnPReIndexWeb", "Command": "Request-PnPReIndexWeb", - "Rank": 1, - "CommandName": "Request-PnPReIndexWeb" + "Id": 1167, + "Rank": 1 }, { - "Id": 1168, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Rank": 1, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Id": 1168, + "Rank": 1 }, { - "Id": 1169, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Rank": 2, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Id": 1169, + "Rank": 2 }, { - "Id": 1170, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Rank": 3, - "CommandName": "Request-PnPSyntexClassifyAndExtract" + "Id": 1170, + "Rank": 3 }, { - "Id": 1171, + "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Rank": 1, - "CommandName": "Reset-PnPFileVersion" + "Id": 1171, + "Rank": 1 }, { - "Id": 1172, + "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Rank": 2, - "CommandName": "Reset-PnPFileVersion" + "Id": 1172, + "Rank": 2 }, { - "Id": 1173, + "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\"", - "Rank": 1, - "CommandName": "Reset-PnPLabel" + "Id": 1173, + "Rank": 1 }, { - "Id": 1174, + "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Rank": 2, - "CommandName": "Reset-PnPLabel" + "Id": 1174, + "Rank": 2 }, { - "Id": 1175, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration" + "Id": 1175, + "Rank": 1 }, { - "Id": 1176, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Rank": 1, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" + "Id": 1176, + "Rank": 1 }, { - "Id": 1177, + "CommandName": "Resolve-PnPFolder", "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Rank": 1, - "CommandName": "Resolve-PnPFolder" + "Id": 1177, + "Rank": 1 }, { - "Id": 1178, + "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, - "CommandName": "Restore-PnPDeletedMicrosoft365Group" + "Id": 1178, + "Rank": 1 }, { - "Id": 1179, + "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, - "CommandName": "Restore-PnPFileVersion" + "Id": 1179, + "Rank": 1 }, { - "Id": 1180, + "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Rank": 2, - "CommandName": "Restore-PnPFileVersion" + "Id": 1180, + "Rank": 2 }, { - "Id": 1181, + "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 3, - "CommandName": "Restore-PnPFileVersion" + "Id": 1181, + "Rank": 3 }, { - "Id": 1182, + "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, - "CommandName": "Restore-PnPListItemVersion" + "Id": 1182, + "Rank": 1 }, { - "Id": 1183, + "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, - "CommandName": "Restore-PnPListItemVersion" + "Id": 1183, + "Rank": 2 }, { - "Id": 1184, + "CommandName": "Restore-PnPRecycleBinItem", "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, - "CommandName": "Restore-PnPRecycleBinItem" + "Id": 1184, + "Rank": 1 }, { - "Id": 1185, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "Id": 1185, + "Rank": 1 }, { - "Id": 1186, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, - "CommandName": "Restore-PnPTenantRecycleBinItem" + "Id": 1186, + "Rank": 2 }, { - "Id": 1187, + "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "CommandName": "Restore-PnPTenantSite" + "Id": 1187, + "Rank": 1 }, { - "Id": 1188, + "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, - "CommandName": "Restore-PnPTenantSite" + "Id": 1188, + "Rank": 2 }, { - "Id": 1189, + "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Rank": 3, - "CommandName": "Restore-PnPTenantSite" + "Id": 1189, + "Rank": 3 }, { - "Id": 1190, + "CommandName": "Revoke-PnPAzureADAppSitePermission", "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Rank": 1, - "CommandName": "Revoke-PnPAzureADAppSitePermission" + "Id": 1190, + "Rank": 1 }, { - "Id": 1191, + "CommandName": "Revoke-PnPHubSiteRights", "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "CommandName": "Revoke-PnPHubSiteRights" + "Id": 1191, + "Rank": 1 }, { - "Id": 1192, + "CommandName": "Revoke-PnPSiteDesignRights", "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "CommandName": "Revoke-PnPSiteDesignRights" + "Id": 1192, + "Rank": 1 }, { - "Id": 1193, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission" + "Id": 1193, + "Rank": 1 }, { - "Id": 1194, + "CommandName": "Revoke-PnPUserSession", "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Rank": 1, - "CommandName": "Revoke-PnPUserSession" + "Id": 1194, + "Rank": 1 }, { - "Id": 1195, + "CommandName": "Save-PnPPageConversionLog", "Command": "Save-PnPPageConversionLog", - "Rank": 1, - "CommandName": "Save-PnPPageConversionLog" + "Id": 1195, + "Rank": 1 }, { - "Id": 1196, + "CommandName": "Save-PnPSiteTemplate", "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Rank": 1, - "CommandName": "Save-PnPSiteTemplate" + "Id": 1196, + "Rank": 1 }, { - "Id": 1197, + "CommandName": "Save-PnPTenantTemplate", "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Rank": 1, - "CommandName": "Save-PnPTenantTemplate" + "Id": 1197, + "Rank": 1 }, { - "Id": 1198, + "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, - "CommandName": "Send-PnPMail" + "Id": 1198, + "Rank": 1 }, { - "Id": 1199, + "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": 1199, + "Rank": 2 }, { - "Id": 1200, + "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": 1200, + "Rank": 3 }, { - "Id": 1201, + "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": 1201, + "Rank": 4 }, { - "Id": 1202, + "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": 1202, + "Rank": 5 }, { - "Id": 1203, + "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": 1203, + "Rank": 6 }, { - "Id": 1204, + "CommandName": "Set-PnPAdaptiveScopeProperty", "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Rank": 1, - "CommandName": "Set-PnPAdaptiveScopeProperty" + "Id": 1204, + "Rank": 1 }, { - "Id": 1205, + "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, - "CommandName": "Set-PnPApplicationCustomizer" + "Id": 1205, + "Rank": 1 }, { - "Id": 1206, + "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": 1206, + "Rank": 2 }, { - "Id": 1207, + "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -On", - "Rank": 1, - "CommandName": "Set-PnPAppSideLoading" + "Id": 1207, + "Rank": 1 }, { - "Id": 1208, + "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -Off", - "Rank": 2, - "CommandName": "Set-PnPAppSideLoading" + "Id": 1208, + "Rank": 2 }, { - "Id": 1209, + "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -EnableAll", - "Rank": 1, - "CommandName": "Set-PnPAuditing" + "Id": 1209, + "Rank": 1 }, { - "Id": 1210, + "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -DisableAll", - "Rank": 2, - "CommandName": "Set-PnPAuditing" + "Id": 1210, + "Rank": 2 }, { - "Id": 1211, + "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7", - "Rank": 3, - "CommandName": "Set-PnPAuditing" + "Id": 1211, + "Rank": 3 }, { - "Id": 1212, + "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -TrimAuditLog", - "Rank": 4, - "CommandName": "Set-PnPAuditing" + "Id": 1212, + "Rank": 4 }, { - "Id": 1213, + "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Rank": 5, - "CommandName": "Set-PnPAuditing" + "Id": 1213, + "Rank": 5 }, { - "Id": 1214, + "CommandName": "Set-PnPAvailablePageLayouts", "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Rank": 1, - "CommandName": "Set-PnPAvailablePageLayouts" + "Id": 1214, + "Rank": 1 }, { - "Id": 1215, + "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Rank": 1, - "CommandName": "Set-PnPAzureADAppSitePermission" + "Id": 1215, + "Rank": 1 }, { - "Id": 1216, + "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Rank": 2, - "CommandName": "Set-PnPAzureADAppSitePermission" + "Id": 1216, + "Rank": 2 }, { - "Id": 1217, + "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, - "CommandName": "Set-PnPAzureADGroup" + "Id": 1217, + "Rank": 1 }, { - "Id": 1218, + "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, - "CommandName": "Set-PnPAzureADGroup" + "Id": 1218, + "Rank": 2 }, { - "Id": 1219, + "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Rank": 3, - "CommandName": "Set-PnPAzureADGroup" + "Id": 1219, + "Rank": 3 }, { - "Id": 1220, + "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Rank": 1, - "CommandName": "Set-PnPBrowserIdleSignout" + "Id": 1220, + "Rank": 1 }, { - "Id": 1221, + "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Rank": 2, - "CommandName": "Set-PnPBrowserIdleSignout" + "Id": 1221, + "Rank": 2 }, { - "Id": 1222, + "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Rank": 3, - "CommandName": "Set-PnPBrowserIdleSignout" + "Id": 1222, + "Rank": 3 }, { - "Id": 1223, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Rank": 1, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "Id": 1223, + "Rank": 1 }, { - "Id": 1224, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Rank": 2, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility" + "Id": 1224, + "Rank": 2 }, { - "Id": 1225, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Rank": 1, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Id": 1225, + "Rank": 1 }, { - "Id": 1226, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Rank": 2, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Id": 1226, + "Rank": 2 }, { - "Id": 1227, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Rank": 3, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Id": 1227, + "Rank": 3 }, { - "Id": 1228, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Rank": 4, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings" + "Id": 1228, + "Rank": 4 }, { - "Id": 1229, + "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 1, - "CommandName": "Set-PnPContentType" + "Id": 1229, + "Rank": 1 }, { - "Id": 1230, + "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Rank": 2, - "CommandName": "Set-PnPContentType" + "Id": 1230, + "Rank": 2 }, { - "Id": 1231, + "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 3, - "CommandName": "Set-PnPContentType" + "Id": 1231, + "Rank": 3 }, { - "Id": 1232, + "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": 1232, + "Rank": 4 }, { - "Id": 1233, + "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": 1233, + "Rank": 5 }, { - "Id": 1234, + "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Rank": 1, - "CommandName": "Set-PnPDefaultColumnValues" + "Id": 1234, + "Rank": 1 }, { - "Id": 1235, + "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Rank": 2, - "CommandName": "Set-PnPDefaultColumnValues" + "Id": 1235, + "Rank": 2 }, { - "Id": 1236, + "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Rank": 3, - "CommandName": "Set-PnPDefaultColumnValues" + "Id": 1236, + "Rank": 3 }, { - "Id": 1237, + "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Rank": 4, - "CommandName": "Set-PnPDefaultColumnValues" + "Id": 1237, + "Rank": 4 }, { - "Id": 1238, + "CommandName": "Set-PnPDefaultContentTypeToList", "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Rank": 1, - "CommandName": "Set-PnPDefaultContentTypeToList" + "Id": 1238, + "Rank": 1 }, { - "Id": 1239, + "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Rank": 1, - "CommandName": "Set-PnPDefaultPageLayout" + "Id": 1239, + "Rank": 1 }, { - "Id": 1240, + "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Rank": 2, - "CommandName": "Set-PnPDefaultPageLayout" + "Id": 1240, + "Rank": 2 }, { - "Id": 1241, + "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Rank": 3, - "CommandName": "Set-PnPDefaultPageLayout" + "Id": 1241, + "Rank": 3 }, { - "Id": 1242, + "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Rank": 1, - "CommandName": "Set-PnPDisableSpacesActivation" + "Id": 1242, + "Rank": 1 }, { - "Id": 1243, + "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 2, - "CommandName": "Set-PnPDisableSpacesActivation" + "Id": 1243, + "Rank": 2 }, { - "Id": 1244, + "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 3, - "CommandName": "Set-PnPDisableSpacesActivation" + "Id": 1244, + "Rank": 3 }, { - "Id": 1245, + "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Rank": 1, - "CommandName": "Set-PnPDocumentSetField" + "Id": 1245, + "Rank": 1 }, { - "Id": 1246, + "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Rank": 2, - "CommandName": "Set-PnPDocumentSetField" + "Id": 1246, + "Rank": 2 }, { - "Id": 1247, + "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Rank": 1, - "CommandName": "Set-PnPField" + "Id": 1247, + "Rank": 1 }, { - "Id": 1248, + "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Rank": 2, - "CommandName": "Set-PnPField" + "Id": 1248, + "Rank": 2 }, { - "Id": 1249, + "CommandName": "Set-PnPField", "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Rank": 3, - "CommandName": "Set-PnPField" + "Id": 1249, + "Rank": 3 }, { - "Id": 1250, + "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Rank": 1, - "CommandName": "Set-PnPFileCheckedIn" + "Id": 1250, + "Rank": 1 }, { - "Id": 1251, + "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Rank": 2, - "CommandName": "Set-PnPFileCheckedIn" + "Id": 1251, + "Rank": 2 }, { - "Id": 1252, + "CommandName": "Set-PnPFileCheckedOut", "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Rank": 1, - "CommandName": "Set-PnPFileCheckedOut" + "Id": 1252, + "Rank": 1 }, { - "Id": 1253, + "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, - "CommandName": "Set-PnPFolderPermission" + "Id": 1253, + "Rank": 1 }, { - "Id": 1254, + "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, - "CommandName": "Set-PnPFolderPermission" + "Id": 1254, + "Rank": 2 }, { - "Id": 1255, + "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": 1255, + "Rank": 3 }, { - "Id": 1256, + "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true", - "Rank": 1, - "CommandName": "Set-PnPFooter" + "Id": 1256, + "Rank": 1 }, { - "Id": 1257, + "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Rank": 2, - "CommandName": "Set-PnPFooter" + "Id": 1257, + "Rank": 2 }, { - "Id": 1258, + "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Rank": 3, - "CommandName": "Set-PnPFooter" + "Id": 1258, + "Rank": 3 }, { - "Id": 1259, + "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -LogoUrl \"\"", - "Rank": 4, - "CommandName": "Set-PnPFooter" + "Id": 1259, + "Rank": 4 }, { - "Id": 1260, + "CommandName": "Set-PnPGraphSubscription", "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Rank": 1, - "CommandName": "Set-PnPGraphSubscription" + "Id": 1260, + "Rank": 1 }, { - "Id": 1261, + "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Rank": 1, - "CommandName": "Set-PnPGroup" + "Id": 1261, + "Rank": 1 }, { - "Id": 1262, + "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Rank": 2, - "CommandName": "Set-PnPGroup" + "Id": 1262, + "Rank": 2 }, { - "Id": 1263, + "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Rank": 1, - "CommandName": "Set-PnPGroupPermissions" + "Id": 1263, + "Rank": 1 }, { - "Id": 1264, + "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Rank": 2, - "CommandName": "Set-PnPGroupPermissions" + "Id": 1264, + "Rank": 2 }, { - "Id": 1265, + "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Rank": 3, - "CommandName": "Set-PnPGroupPermissions" + "Id": 1265, + "Rank": 3 }, { - "Id": 1266, + "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Rank": 4, - "CommandName": "Set-PnPGroupPermissions" + "Id": 1266, + "Rank": 4 }, { - "Id": 1267, + "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Rank": 5, - "CommandName": "Set-PnPGroupPermissions" + "Id": 1267, + "Rank": 5 }, { - "Id": 1268, + "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Rank": 1, - "CommandName": "Set-PnPHideDefaultThemes" + "Id": 1268, + "Rank": 1 }, { - "Id": 1269, + "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Rank": 2, - "CommandName": "Set-PnPHideDefaultThemes" + "Id": 1269, + "Rank": 2 }, { - "Id": 1270, + "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Rank": 1, - "CommandName": "Set-PnPHomePage" + "Id": 1270, + "Rank": 1 }, { - "Id": 1271, + "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Rank": 2, - "CommandName": "Set-PnPHomePage" + "Id": 1271, + "Rank": 2 }, { - "Id": 1272, + "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Rank": 1, - "CommandName": "Set-PnPHomeSite" + "Id": 1272, + "Rank": 1 }, { - "Id": 1273, + "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Rank": 2, - "CommandName": "Set-PnPHomeSite" + "Id": 1273, + "Rank": 2 }, { - "Id": 1274, + "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Rank": 1, - "CommandName": "Set-PnPHubSite" + "Id": 1274, + "Rank": 1 }, { - "Id": 1275, + "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Rank": 2, - "CommandName": "Set-PnPHubSite" + "Id": 1275, + "Rank": 2 }, { - "Id": 1276, + "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": 1276, + "Rank": 3 }, { - "Id": 1277, + "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": 1277, + "Rank": 4 }, { - "Id": 1278, + "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Rank": 5, - "CommandName": "Set-PnPHubSite" + "Id": 1278, + "Rank": 5 }, { - "Id": 1279, + "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Rank": 6, - "CommandName": "Set-PnPHubSite" + "Id": 1279, + "Rank": 6 }, { - "Id": 1280, + "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 1, - "CommandName": "Set-PnPImageListItemColumn" + "Id": 1280, + "Rank": 1 }, { - "Id": 1281, + "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Rank": 2, - "CommandName": "Set-PnPImageListItemColumn" + "Id": 1281, + "Rank": 2 }, { - "Id": 1282, + "CommandName": "Set-PnPIndexedProperties", "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Rank": 1, - "CommandName": "Set-PnPIndexedProperties" + "Id": 1282, + "Rank": 1 }, { - "Id": 1283, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Rank": 1, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "Id": 1283, + "Rank": 1 }, { - "Id": 1284, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Rank": 2, - "CommandName": "Set-PnPInPlaceRecordsManagement" + "Id": 1284, + "Rank": 2 }, { - "Id": 1285, + "CommandName": "Set-PnPKnowledgeHubSite", "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Rank": 1, - "CommandName": "Set-PnPKnowledgeHubSite" + "Id": 1285, + "Rank": 1 }, { - "Id": 1286, + "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Rank": 1, - "CommandName": "Set-PnPLabel" + "Id": 1286, + "Rank": 1 }, { - "Id": 1287, + "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Rank": 2, - "CommandName": "Set-PnPLabel" + "Id": 1287, + "Rank": 2 }, { - "Id": 1288, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Rank": 1, - "CommandName": "Set-PnPList" + "Id": 1288, + "Rank": 1 }, { - "Id": 1289, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Rank": 2, - "CommandName": "Set-PnPList" + "Id": 1289, + "Rank": 2 }, { - "Id": 1290, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Rank": 3, - "CommandName": "Set-PnPList" + "Id": 1290, + "Rank": 3 }, { - "Id": 1291, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Rank": 4, - "CommandName": "Set-PnPList" + "Id": 1291, + "Rank": 4 }, { - "Id": 1292, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Rank": 5, - "CommandName": "Set-PnPList" + "Id": 1292, + "Rank": 5 }, { - "Id": 1293, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Rank": 6, - "CommandName": "Set-PnPList" + "Id": 1293, + "Rank": 6 }, { - "Id": 1294, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Rank": 7, - "CommandName": "Set-PnPList" + "Id": 1294, + "Rank": 7 }, { - "Id": 1295, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Rank": 8, - "CommandName": "Set-PnPList" + "Id": 1295, + "Rank": 8 }, { - "Id": 1296, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Rank": 9, - "CommandName": "Set-PnPList" + "Id": 1296, + "Rank": 9 }, { - "Id": 1297, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Rank": 10, - "CommandName": "Set-PnPList" + "Id": 1297, + "Rank": 10 }, { - "Id": 1298, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Rank": 11, - "CommandName": "Set-PnPList" + "Id": 1298, + "Rank": 11 }, { - "Id": 1299, + "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Rank": 1, - "CommandName": "Set-PnPListInformationRightsManagement" + "Id": 1299, + "Rank": 1 }, { - "Id": 1300, + "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Rank": 2, - "CommandName": "Set-PnPListInformationRightsManagement" + "Id": 1300, + "Rank": 2 }, { - "Id": 1301, + "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1, - "CommandName": "Set-PnPListItem" + "Id": 1301, + "Rank": 1 }, { - "Id": 1302, + "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": 1302, + "Rank": 2 }, { - "Id": 1303, + "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 3, - "CommandName": "Set-PnPListItem" + "Id": 1303, + "Rank": 3 }, { - "Id": 1304, + "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Rank": 4, - "CommandName": "Set-PnPListItem" + "Id": 1304, + "Rank": 4 }, { - "Id": 1305, + "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Rank": 5, - "CommandName": "Set-PnPListItem" + "Id": 1305, + "Rank": 5 }, { - "Id": 1306, + "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, - "CommandName": "Set-PnPListItemAsRecord" + "Id": 1306, + "Rank": 1 }, { - "Id": 1307, + "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Rank": 2, - "CommandName": "Set-PnPListItemAsRecord" + "Id": 1307, + "Rank": 2 }, { - "Id": 1308, + "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, - "CommandName": "Set-PnPListItemPermission" + "Id": 1308, + "Rank": 1 }, { - "Id": 1309, + "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, - "CommandName": "Set-PnPListItemPermission" + "Id": 1309, + "Rank": 2 }, { - "Id": 1310, + "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3, - "CommandName": "Set-PnPListItemPermission" + "Id": 1310, + "Rank": 3 }, { - "Id": 1311, + "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Rank": 4, - "CommandName": "Set-PnPListItemPermission" + "Id": 1311, + "Rank": 4 }, { - "Id": 1312, + "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Rank": 5, - "CommandName": "Set-PnPListItemPermission" + "Id": 1312, + "Rank": 5 }, { - "Id": 1313, + "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, - "CommandName": "Set-PnPListPermission" + "Id": 1313, + "Rank": 1 }, { - "Id": 1314, + "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, - "CommandName": "Set-PnPListPermission" + "Id": 1314, + "Rank": 2 }, { - "Id": 1315, + "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Rank": 1, - "CommandName": "Set-PnPListRecordDeclaration" + "Id": 1315, + "Rank": 1 }, { - "Id": 1316, + "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Rank": 2, - "CommandName": "Set-PnPListRecordDeclaration" + "Id": 1316, + "Rank": 2 }, { - "Id": 1317, + "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 1, - "CommandName": "Set-PnPMasterPage" + "Id": 1317, + "Rank": 1 }, { - "Id": 1318, + "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": 1318, + "Rank": 2 }, { - "Id": 1319, + "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 3, - "CommandName": "Set-PnPMasterPage" + "Id": 1319, + "Rank": 3 }, { - "Id": 1320, + "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 4, - "CommandName": "Set-PnPMasterPage" + "Id": 1320, + "Rank": 4 }, { - "Id": 1321, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Id": 1321, + "Rank": 1 }, { - "Id": 1322, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Id": 1322, + "Rank": 2 }, { - "Id": 1323, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" + "Id": 1323, + "Rank": 3 }, { - "Id": 1324, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Id": 1324, + "Rank": 1 }, { - "Id": 1325, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Id": 1325, + "Rank": 2 }, { - "Id": 1326, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" + "Id": 1326, + "Rank": 3 }, { - "Id": 1327, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Id": 1327, + "Rank": 1 }, { - "Id": 1328, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Id": 1328, + "Rank": 2 }, { - "Id": 1329, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "Id": 1329, + "Rank": 3 }, { - "Id": 1330, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Id": 1330, + "Rank": 1 }, { - "Id": 1331, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Id": 1331, + "Rank": 2 }, { - "Id": 1332, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "Id": 1332, + "Rank": 3 }, { - "Id": 1333, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "Id": 1333, + "Rank": 1 }, { - "Id": 1334, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "Id": 1334, + "Rank": 2 }, { - "Id": 1335, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" + "Id": 1335, + "Rank": 3 }, { - "Id": 1336, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Rank": 1, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "Id": 1336, + "Rank": 1 }, { - "Id": 1337, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "Id": 1337, + "Rank": 2 }, { - "Id": 1338, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" + "Id": 1338, + "Rank": 3 }, { - "Id": 1339, + "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, - "CommandName": "Set-PnPMicrosoft365Group" + "Id": 1339, + "Rank": 1 }, { - "Id": 1340, + "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, - "CommandName": "Set-PnPMicrosoft365Group" + "Id": 1340, + "Rank": 2 }, { - "Id": 1341, + "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Rank": 3, - "CommandName": "Set-PnPMicrosoft365Group" + "Id": 1341, + "Rank": 3 }, { - "Id": 1342, + "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Rank": 4, - "CommandName": "Set-PnPMicrosoft365Group" + "Id": 1342, + "Rank": 4 }, { - "Id": 1343, + "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Rank": 5, - "CommandName": "Set-PnPMicrosoft365Group" + "Id": 1343, + "Rank": 5 }, { - "Id": 1344, + "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6, - "CommandName": "Set-PnPMicrosoft365Group" + "Id": 1344, + "Rank": 6 }, { - "Id": 1345, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Rank": 1, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "Id": 1345, + "Rank": 1 }, { - "Id": 1346, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Rank": 2, - "CommandName": "Set-PnPMicrosoft365GroupSettings" + "Id": 1346, + "Rank": 2 }, { - "Id": 1347, + "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Rank": 1, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "Id": 1347, + "Rank": 1 }, { - "Id": 1348, + "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -On", - "Rank": 2, - "CommandName": "Set-PnPMinimalDownloadStrategy" + "Id": 1348, + "Rank": 2 }, { - "Id": 1349, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Rank": 1, - "CommandName": "Set-PnPPage" + "Id": 1349, + "Rank": 1 }, { - "Id": 1350, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Rank": 2, - "CommandName": "Set-PnPPage" + "Id": 1350, + "Rank": 2 }, { - "Id": 1351, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Rank": 3, - "CommandName": "Set-PnPPage" + "Id": 1351, + "Rank": 3 }, { - "Id": 1352, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Rank": 4, - "CommandName": "Set-PnPPage" + "Id": 1352, + "Rank": 4 }, { - "Id": 1353, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Rank": 5, - "CommandName": "Set-PnPPage" + "Id": 1353, + "Rank": 5 }, { - "Id": 1354, + "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": 1354, + "Rank": 6 }, { - "Id": 1355, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7, - "CommandName": "Set-PnPPage" + "Id": 1355, + "Rank": 7 }, { - "Id": 1356, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8, - "CommandName": "Set-PnPPage" + "Id": 1356, + "Rank": 8 }, { - "Id": 1357, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, - "CommandName": "Set-PnPPage" + "Id": 1357, + "Rank": 9 }, { - "Id": 1358, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, - "CommandName": "Set-PnPPage" + "Id": 1358, + "Rank": 10 }, { - "Id": 1359, + "CommandName": "Set-PnPPageTextPart", "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Rank": 1, - "CommandName": "Set-PnPPageTextPart" + "Id": 1359, + "Rank": 1 }, { - "Id": 1360, + "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Rank": 1, - "CommandName": "Set-PnPPageWebPart" + "Id": 1360, + "Rank": 1 }, { - "Id": 1361, + "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Rank": 2, - "CommandName": "Set-PnPPageWebPart" + "Id": 1361, + "Rank": 2 }, { - "Id": 1362, + "CommandName": "Set-PnPPlannerBucket", "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Rank": 1, - "CommandName": "Set-PnPPlannerBucket" + "Id": 1362, + "Rank": 1 }, { - "Id": 1363, + "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Rank": 1, - "CommandName": "Set-PnPPlannerConfiguration" + "Id": 1363, + "Rank": 1 }, { - "Id": 1364, + "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Rank": 2, - "CommandName": "Set-PnPPlannerConfiguration" + "Id": 1364, + "Rank": 2 }, { - "Id": 1365, + "CommandName": "Set-PnPPlannerPlan", "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Rank": 1, - "CommandName": "Set-PnPPlannerPlan" + "Id": 1365, + "Rank": 1 }, { - "Id": 1366, + "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Rank": 1, - "CommandName": "Set-PnPPlannerTask" + "Id": 1366, + "Rank": 1 }, { - "Id": 1367, + "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Rank": 2, - "CommandName": "Set-PnPPlannerTask" + "Id": 1367, + "Rank": 2 }, { - "Id": 1368, + "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Rank": 3, - "CommandName": "Set-PnPPlannerTask" + "Id": 1368, + "Rank": 3 }, { - "Id": 1369, + "CommandName": "Set-PnPPlannerUserPolicy", "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "CommandName": "Set-PnPPlannerUserPolicy" + "Id": 1369, + "Rank": 1 }, { - "Id": 1370, + "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Rank": 1, - "CommandName": "Set-PnPPropertyBagValue" + "Id": 1370, + "Rank": 1 }, { - "Id": 1371, + "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Rank": 2, - "CommandName": "Set-PnPPropertyBagValue" + "Id": 1371, + "Rank": 2 }, { - "Id": 1372, + "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Rank": 3, - "CommandName": "Set-PnPPropertyBagValue" + "Id": 1372, + "Rank": 3 }, { - "Id": 1373, + "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Rank": 1, - "CommandName": "Set-PnPRequestAccessEmails" + "Id": 1373, + "Rank": 1 }, { - "Id": 1374, + "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled", - "Rank": 2, - "CommandName": "Set-PnPRequestAccessEmails" + "Id": 1374, + "Rank": 2 }, { - "Id": 1375, + "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Rank": 3, - "CommandName": "Set-PnPRequestAccessEmails" + "Id": 1375, + "Rank": 3 }, { - "Id": 1376, + "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Rank": 1, - "CommandName": "Set-PnPRoleDefinition" + "Id": 1376, + "Rank": 1 }, { - "Id": 1377, + "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Rank": 2, - "CommandName": "Set-PnPRoleDefinition" + "Id": 1377, + "Rank": 2 }, { - "Id": 1378, + "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Rank": 3, - "CommandName": "Set-PnPRoleDefinition" + "Id": 1378, + "Rank": 3 }, { - "Id": 1379, + "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Rank": 4, - "CommandName": "Set-PnPRoleDefinition" + "Id": 1379, + "Rank": 4 }, { - "Id": 1380, + "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Rank": 1, - "CommandName": "Set-PnPSearchConfiguration" + "Id": 1380, + "Rank": 1 }, { - "Id": 1381, + "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, - "CommandName": "Set-PnPSearchConfiguration" + "Id": 1381, + "Rank": 2 }, { - "Id": 1382, + "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, - "CommandName": "Set-PnPSearchConfiguration" + "Id": 1382, + "Rank": 3 }, { - "Id": 1383, + "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, - "CommandName": "Set-PnPSearchConfiguration" + "Id": 1383, + "Rank": 4 }, { - "Id": 1384, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Rank": 1, - "CommandName": "Set-PnPSearchSettings" + "Id": 1384, + "Rank": 1 }, { - "Id": 1385, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Rank": 2, - "CommandName": "Set-PnPSearchSettings" + "Id": 1385, + "Rank": 2 }, { - "Id": 1386, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Rank": 3, - "CommandName": "Set-PnPSearchSettings" + "Id": 1386, + "Rank": 3 }, { - "Id": 1387, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Rank": 4, - "CommandName": "Set-PnPSearchSettings" + "Id": 1387, + "Rank": 4 }, { - "Id": 1388, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Rank": 5, - "CommandName": "Set-PnPSearchSettings" + "Id": 1388, + "Rank": 5 }, { - "Id": 1389, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Rank": 6, - "CommandName": "Set-PnPSearchSettings" + "Id": 1389, + "Rank": 6 }, { - "Id": 1390, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Rank": 7, - "CommandName": "Set-PnPSearchSettings" + "Id": 1390, + "Rank": 7 }, { - "Id": 1391, + "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification \"HBI\"", - "Rank": 1, - "CommandName": "Set-PnPSite" + "Id": 1391, + "Rank": 1 }, { - "Id": 1392, + "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification $null", - "Rank": 2, - "CommandName": "Set-PnPSite" + "Id": 1392, + "Rank": 2 }, { - "Id": 1393, + "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows", - "Rank": 3, - "CommandName": "Set-PnPSite" + "Id": 1393, + "Rank": 3 }, { - "Id": 1394, + "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows:$false", - "Rank": 4, - "CommandName": "Set-PnPSite" + "Id": 1394, + "Rank": 4 }, { - "Id": 1395, + "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Rank": 5, - "CommandName": "Set-PnPSite" + "Id": 1395, + "Rank": 5 }, { - "Id": 1396, + "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -NoScriptSite $false", - "Rank": 6, - "CommandName": "Set-PnPSite" + "Id": 1396, + "Rank": 6 }, { - "Id": 1397, + "CommandName": "Set-PnPSiteClassification", "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Rank": 1, - "CommandName": "Set-PnPSiteClassification" + "Id": 1397, + "Rank": 1 }, { - "Id": 1398, + "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Open", - "Rank": 1, - "CommandName": "Set-PnPSiteClosure" + "Id": 1398, + "Rank": 1 }, { - "Id": 1399, + "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Closed", - "Rank": 2, - "CommandName": "Set-PnPSiteClosure" + "Id": 1399, + "Rank": 2 }, { - "Id": 1400, + "CommandName": "Set-PnPSiteDesign", "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Rank": 1, - "CommandName": "Set-PnPSiteDesign" + "Id": 1400, + "Rank": 1 }, { - "Id": 1401, + "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": 1401, + "Rank": 2 }, { - "Id": 1402, + "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Rank": 1, - "CommandName": "Set-PnPSiteGroup" + "Id": 1402, + "Rank": 1 }, { - "Id": 1403, + "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Rank": 2, - "CommandName": "Set-PnPSiteGroup" + "Id": 1403, + "Rank": 2 }, { - "Id": 1404, + "CommandName": "Set-PnPSitePolicy", "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 1, - "CommandName": "Set-PnPSitePolicy" + "Id": 1404, + "Rank": 1 }, { - "Id": 1405, + "CommandName": "Set-PnPSiteScript", "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1, - "CommandName": "Set-PnPSiteScript" + "Id": 1405, + "Rank": 1 }, { - "Id": 1406, + "CommandName": "Set-PnPSiteScriptPackage", "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1, - "CommandName": "Set-PnPSiteScriptPackage" + "Id": 1406, + "Rank": 1 }, { - "Id": 1407, + "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Rank": 1, - "CommandName": "Set-PnPSiteSensitivityLabel" + "Id": 1407, + "Rank": 1 }, { - "Id": 1408, + "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Rank": 2, - "CommandName": "Set-PnPSiteSensitivityLabel" + "Id": 1408, + "Rank": 2 }, { - "Id": 1409, + "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 1, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Id": 1409, + "Rank": 1 }, { - "Id": 1410, + "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 2, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Id": 1410, + "Rank": 2 }, { - "Id": 1411, + "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 3, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Id": 1411, + "Rank": 3 }, { - "Id": 1412, + "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 4, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Id": 1412, + "Rank": 4 }, { - "Id": 1413, + "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 5, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Id": 1413, + "Rank": 5 }, { - "Id": 1414, + "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 6, - "CommandName": "Set-PnPSiteTemplateMetadata" + "Id": 1414, + "Rank": 6 }, { - "Id": 1415, + "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 1, - "CommandName": "Set-PnPStorageEntity" + "Id": 1415, + "Rank": 1 }, { - "Id": 1416, + "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 2, - "CommandName": "Set-PnPStorageEntity" + "Id": 1416, + "Rank": 2 }, { - "Id": 1417, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "Id": 1417, + "Rank": 1 }, { - "Id": 1418, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState" + "Id": 1418, + "Rank": 2 }, { - "Id": 1419, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "Id": 1419, + "Rank": 1 }, { - "Id": 1420, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 2, - "CommandName": "Set-PnPStructuralNavigationCacheWebState" + "Id": 1420, + "Rank": 2 }, { - "Id": 1421, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Rank": 1, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "Id": 1421, + "Rank": 1 }, { - "Id": 1422, + "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Rank": 2, - "CommandName": "Set-PnPSubscribeSharePointNewsDigest" + "Id": 1422, + "Rank": 2 }, { - "Id": 1423, + "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Rank": 1, - "CommandName": "Set-PnPTaxonomyFieldValue" + "Id": 1423, + "Rank": 1 }, { - "Id": 1424, + "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Rank": 2, - "CommandName": "Set-PnPTaxonomyFieldValue" + "Id": 1424, + "Rank": 2 }, { - "Id": 1425, + "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Rank": 3, - "CommandName": "Set-PnPTaxonomyFieldValue" + "Id": 1425, + "Rank": 3 }, { - "Id": 1426, + "CommandName": "Set-PnPTeamifyPromptHidden", "Command": "Set-PnPTeamifyPromptHidden", - "Rank": 1, - "CommandName": "Set-PnPTeamifyPromptHidden" + "Id": 1426, + "Rank": 1 }, { - "Id": 1427, + "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Rank": 1, - "CommandName": "Set-PnPTeamsChannel" + "Id": 1427, + "Rank": 1 }, { - "Id": 1428, + "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Rank": 2, - "CommandName": "Set-PnPTeamsChannel" + "Id": 1428, + "Rank": 2 }, { - "Id": 1429, + "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "Rank": 1, - "CommandName": "Set-PnpTeamsChannelUser" + "Id": 1429, + "Rank": 1 }, { - "Id": 1430, + "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": 1430, + "Rank": 2 }, { - "Id": 1431, + "CommandName": "Set-PnPTeamsTab", "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Rank": 1, - "CommandName": "Set-PnPTeamsTab" + "Id": 1431, + "Rank": 1 }, { - "Id": 1432, + "CommandName": "Set-PnPTeamsTag", "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Rank": 1, - "CommandName": "Set-PnPTeamsTag" + "Id": 1432, + "Rank": 1 }, { - "Id": 1433, + "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Rank": 1, - "CommandName": "Set-PnPTeamsTeam" + "Id": 1433, + "Rank": 1 }, { - "Id": 1434, + "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Rank": 2, - "CommandName": "Set-PnPTeamsTeam" + "Id": 1434, + "Rank": 2 }, { - "Id": 1435, + "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Rank": 3, - "CommandName": "Set-PnPTeamsTeam" + "Id": 1435, + "Rank": 3 }, { - "Id": 1436, + "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Rank": 4, - "CommandName": "Set-PnPTeamsTeam" + "Id": 1436, + "Rank": 4 }, { - "Id": 1437, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Rank": 1, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Id": 1437, + "Rank": 1 }, { - "Id": 1438, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Rank": 2, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Id": 1438, + "Rank": 2 }, { - "Id": 1439, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Rank": 3, - "CommandName": "Set-PnPTeamsTeamArchivedState" + "Id": 1439, + "Rank": 3 }, { - "Id": 1440, + "CommandName": "Set-PnPTeamsTeamPicture", "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Rank": 1, - "CommandName": "Set-PnPTeamsTeamPicture" + "Id": 1440, + "Rank": 1 }, { - "Id": 1441, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Rank": 1, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "Id": 1441, + "Rank": 1 }, { - "Id": 1442, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Rank": 2, - "CommandName": "Set-PnPTemporarilyDisableAppBar" + "Id": 1442, + "Rank": 2 }, { - "Id": 1443, + "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, - "CommandName": "Set-PnPTenant" + "Id": 1443, + "Rank": 1 }, { - "Id": 1444, + "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Rank": 2, - "CommandName": "Set-PnPTenant" + "Id": 1444, + "Rank": 2 }, { - "Id": 1445, + "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Rank": 3, - "CommandName": "Set-PnPTenant" + "Id": 1445, + "Rank": 3 }, { - "Id": 1446, + "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Rank": 4, - "CommandName": "Set-PnPTenant" + "Id": 1446, + "Rank": 4 }, { - "Id": 1447, + "CommandName": "Set-PnPTenantAppCatalogUrl", "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Rank": 1, - "CommandName": "Set-PnPTenantAppCatalogUrl" + "Id": 1447, + "Rank": 1 }, { - "Id": 1448, + "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Rank": 1, - "CommandName": "Set-PnPTenantCdnEnabled" + "Id": 1448, + "Rank": 1 }, { - "Id": 1449, + "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Rank": 2, - "CommandName": "Set-PnPTenantCdnEnabled" + "Id": 1449, + "Rank": 2 }, { - "Id": 1450, + "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Rank": 3, - "CommandName": "Set-PnPTenantCdnEnabled" + "Id": 1450, + "Rank": 3 }, { - "Id": 1451, + "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, - "CommandName": "Set-PnPTenantCdnPolicy" + "Id": 1451, + "Rank": 1 }, { - "Id": 1452, + "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Rank": 2, - "CommandName": "Set-PnPTenantCdnPolicy" + "Id": 1452, + "Rank": 2 }, { - "Id": 1453, + "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Rank": 1, - "CommandName": "Set-PnPTenantSite" + "Id": 1453, + "Rank": 1 }, { - "Id": 1454, + "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Rank": 2, - "CommandName": "Set-PnPTenantSite" + "Id": 1454, + "Rank": 2 }, { - "Id": 1455, + "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 3, - "CommandName": "Set-PnPTenantSite" + "Id": 1455, + "Rank": 3 }, { - "Id": 1456, + "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": 1456, + "Rank": 4 }, { - "Id": 1457, + "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Rank": 5, - "CommandName": "Set-PnPTenantSite" + "Id": 1457, + "Rank": 5 }, { - "Id": 1458, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Rank": 1, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "Id": 1458, + "Rank": 1 }, { - "Id": 1459, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Rank": 2, - "CommandName": "Set-PnPTenantSyncClientRestriction" + "Id": 1459, + "Rank": 2 }, { - "Id": 1460, + "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Rank": 1, - "CommandName": "Set-PnPTerm" + "Id": 1460, + "Rank": 1 }, { - "Id": 1461, + "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2, - "CommandName": "Set-PnPTerm" + "Id": 1461, + "Rank": 2 }, { - "Id": 1462, + "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 3, - "CommandName": "Set-PnPTerm" + "Id": 1462, + "Rank": 3 }, { - "Id": 1463, + "CommandName": "Set-PnPTermGroup", "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Rank": 1, - "CommandName": "Set-PnPTermGroup" + "Id": 1463, + "Rank": 1 }, { - "Id": 1464, + "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Rank": 1, - "CommandName": "Set-PnPTermSet" + "Id": 1464, + "Rank": 1 }, { - "Id": 1465, + "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Rank": 2, - "CommandName": "Set-PnPTermSet" + "Id": 1465, + "Rank": 2 }, { - "Id": 1466, + "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Rank": 3, - "CommandName": "Set-PnPTermSet" + "Id": 1466, + "Rank": 3 }, { - "Id": 1467, + "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme", - "Rank": 1, - "CommandName": "Set-PnPTheme" + "Id": 1467, + "Rank": 1 }, { - "Id": 1468, + "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Rank": 2, - "CommandName": "Set-PnPTheme" + "Id": 1468, + "Rank": 2 }, { - "Id": 1469, + "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Rank": 3, - "CommandName": "Set-PnPTheme" + "Id": 1469, + "Rank": 3 }, { - "Id": 1470, + "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Rank": 4, - "CommandName": "Set-PnPTheme" + "Id": 1470, + "Rank": 4 }, { - "Id": 1471, + "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Rank": 1, - "CommandName": "Set-PnPTraceLog" + "Id": 1471, + "Rank": 1 }, { - "Id": 1472, + "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Rank": 2, - "CommandName": "Set-PnPTraceLog" + "Id": 1472, + "Rank": 2 }, { - "Id": 1473, + "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Rank": 3, - "CommandName": "Set-PnPTraceLog" + "Id": 1473, + "Rank": 3 }, { - "Id": 1474, + "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -Off", - "Rank": 4, - "CommandName": "Set-PnPTraceLog" + "Id": 1474, + "Rank": 4 }, { - "Id": 1475, + "CommandName": "Set-PnPUserOneDriveQuota", "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Rank": 1, - "CommandName": "Set-PnPUserOneDriveQuota" + "Id": 1475, + "Rank": 1 }, { - "Id": 1476, + "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Rank": 1, - "CommandName": "Set-PnPUserProfileProperty" + "Id": 1476, + "Rank": 1 }, { - "Id": 1477, + "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Rank": 2, - "CommandName": "Set-PnPUserProfileProperty" + "Id": 1477, + "Rank": 2 }, { - "Id": 1478, + "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Rank": 1, - "CommandName": "Set-PnPView" + "Id": 1478, + "Rank": 1 }, { - "Id": 1479, + "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Rank": 2, - "CommandName": "Set-PnPView" + "Id": 1479, + "Rank": 2 }, { - "Id": 1480, + "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "Rank": 3, - "CommandName": "Set-PnPView" + "Id": 1480, + "Rank": 3 }, { - "Id": 1481, + "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": 1481, + "Rank": 4 }, { - "Id": 1482, + "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, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Id": 1482, + "Rank": 1 }, { - "Id": 1483, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Rank": 2, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Id": 1483, + "Rank": 2 }, { - "Id": 1484, + "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": 1484, + "Rank": 3 }, { - "Id": 1485, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Rank": 4, - "CommandName": "Set-PnPVivaConnectionsDashboardACE" + "Id": 1485, + "Rank": 4 }, { - "Id": 1486, + "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Rank": 1, - "CommandName": "Set-PnPWeb" + "Id": 1486, + "Rank": 1 }, { - "Id": 1487, + "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Rank": 2, - "CommandName": "Set-PnPWeb" + "Id": 1487, + "Rank": 2 }, { - "Id": 1488, + "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Rank": 3, - "CommandName": "Set-PnPWeb" + "Id": 1488, + "Rank": 3 }, { - "Id": 1489, + "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -NoCrawl:$true", - "Rank": 4, - "CommandName": "Set-PnPWeb" + "Id": 1489, + "Rank": 4 }, { - "Id": 1490, + "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Rank": 1, - "CommandName": "Set-PnPWebHeader" + "Id": 1490, + "Rank": 1 }, { - "Id": 1491, + "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Rank": 2, - "CommandName": "Set-PnPWebHeader" + "Id": 1491, + "Rank": 2 }, { - "Id": 1492, + "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Rank": 3, - "CommandName": "Set-PnPWebHeader" + "Id": 1492, + "Rank": 3 }, { - "Id": 1493, + "CommandName": "Set-PnPWebhookSubscription", "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1, - "CommandName": "Set-PnPWebhookSubscription" + "Id": 1493, + "Rank": 1 }, { - "Id": 1494, + "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": 1494, + "Rank": 2 }, { - "Id": 1495, + "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, - "CommandName": "Set-PnPWebPartProperty" + "Id": 1495, + "Rank": 1 }, { - "Id": 1496, + "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 1, - "CommandName": "Set-PnPWebPermission" + "Id": 1496, + "Rank": 1 }, { - "Id": 1497, + "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Rank": 2, - "CommandName": "Set-PnPWebPermission" + "Id": 1497, + "Rank": 2 }, { - "Id": 1498, + "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 3, - "CommandName": "Set-PnPWebPermission" + "Id": 1498, + "Rank": 3 }, { - "Id": 1499, + "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Rank": 4, - "CommandName": "Set-PnPWebPermission" + "Id": 1499, + "Rank": 4 }, { - "Id": 1500, + "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme MyTheme", - "Rank": 1, - "CommandName": "Set-PnPWebTheme" + "Id": 1500, + "Rank": 1 }, { - "Id": 1501, + "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Rank": 2, - "CommandName": "Set-PnPWebTheme" + "Id": 1501, + "Rank": 2 }, { - "Id": 1502, + "CommandName": "Set-PnPWikiPageContent", "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Rank": 1, - "CommandName": "Set-PnPWikiPageContent" + "Id": 1502, + "Rank": 1 }, { - "Id": 1503, + "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Rank": 1, - "CommandName": "Submit-PnPSearchQuery" + "Id": 1503, + "Rank": 1 }, { - "Id": 1504, + "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Rank": 2, - "CommandName": "Submit-PnPSearchQuery" + "Id": 1504, + "Rank": 2 }, { - "Id": 1505, + "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Rank": 3, - "CommandName": "Submit-PnPSearchQuery" + "Id": 1505, + "Rank": 3 }, { - "Id": 1506, + "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Rank": 4, - "CommandName": "Submit-PnPSearchQuery" + "Id": 1506, + "Rank": 4 }, { - "Id": 1507, + "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Rank": 5, - "CommandName": "Submit-PnPSearchQuery" + "Id": 1507, + "Rank": 5 }, { - "Id": 1508, + "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Rank": 1, - "CommandName": "Submit-PnPTeamsChannelMessage" + "Id": 1508, + "Rank": 1 }, { - "Id": 1509, + "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Rank": 2, - "CommandName": "Submit-PnPTeamsChannelMessage" + "Id": 1509, + "Rank": 2 }, { - "Id": 1510, + "CommandName": "Sync-PnPAppToTeams", "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Sync-PnPAppToTeams" + "Id": 1510, + "Rank": 1 }, { - "Id": 1511, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Rank": 1, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "Id": 1511, + "Rank": 1 }, { - "Id": 1512, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Rank": 2, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "Id": 1512, + "Rank": 2 }, { - "Id": 1513, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Rank": 3, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" + "Id": 1513, + "Rank": 3 }, { - "Id": 1514, + "CommandName": "Test-PnPListItemIsRecord", "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Rank": 1, - "CommandName": "Test-PnPListItemIsRecord" + "Id": 1514, + "Rank": 1 }, { - "Id": 1515, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Rank": 1, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" + "Id": 1515, + "Rank": 1 }, { - "Id": 1516, + "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, - "CommandName": "Test-PnPSite" + "Id": 1516, + "Rank": 1 }, { - "Id": 1517, + "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": 1517, + "Rank": 2 }, { - "Id": 1518, + "CommandName": "Test-PnPTenantTemplate", "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Rank": 1, - "CommandName": "Test-PnPTenantTemplate" + "Id": 1518, + "Rank": 1 }, { - "Id": 1519, + "CommandName": "Undo-PnPFileCheckedOut", "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Rank": 1, - "CommandName": "Undo-PnPFileCheckedOut" + "Id": 1519, + "Rank": 1 }, { - "Id": 1520, + "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Uninstall-PnPApp" + "Id": 1520, + "Rank": 1 }, { - "Id": 1521, + "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "CommandName": "Uninstall-PnPApp" + "Id": 1521, + "Rank": 2 }, { - "Id": 1522, + "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Unpublish-PnPApp" + "Id": 1522, + "Rank": 1 }, { - "Id": 1523, + "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "CommandName": "Unpublish-PnPApp" + "Id": 1523, + "Rank": 2 }, { - "Id": 1524, + "CommandName": "Unpublish-PnPContentType", "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Rank": 1, - "CommandName": "Unpublish-PnPContentType" + "Id": 1524, + "Rank": 1 }, { - "Id": 1525, + "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, - "CommandName": "Unpublish-PnPSyntexModel" + "Id": 1525, + "Rank": 1 }, { - "Id": 1526, + "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": 1526, + "Rank": 2 }, { - "Id": 1527, + "CommandName": "Unregister-PnPHubSite", "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, - "CommandName": "Unregister-PnPHubSite" + "Id": 1527, + "Rank": 1 }, { - "Id": 1528, + "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "CommandName": "Update-PnPApp" + "Id": 1528, + "Rank": 1 }, { - "Id": 1529, + "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "CommandName": "Update-PnPApp" + "Id": 1529, + "Rank": 2 }, { - "Id": 1530, + "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 1, - "CommandName": "Update-PnPAvailableSiteClassification" + "Id": 1530, + "Rank": 1 }, { - "Id": 1531, + "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Rank": 2, - "CommandName": "Update-PnPAvailableSiteClassification" + "Id": 1531, + "Rank": 2 }, { - "Id": 1532, + "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 3, - "CommandName": "Update-PnPAvailableSiteClassification" + "Id": 1532, + "Rank": 3 }, { - "Id": 1533, + "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Rank": 1, - "CommandName": "Update-PnPSiteDesignFromWeb" + "Id": 1533, + "Rank": 1 }, { - "Id": 1534, + "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2, - "CommandName": "Update-PnPSiteDesignFromWeb" + "Id": 1534, + "Rank": 2 }, { - "Id": 1535, + "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": 1535, + "Rank": 3 }, { - "Id": 1536, + "CommandName": "Update-PnPTeamsApp", "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Rank": 1, - "CommandName": "Update-PnPTeamsApp" + "Id": 1536, + "Rank": 1 }, { - "Id": 1537, + "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1, - "CommandName": "Update-PnPTeamsUser" + "Id": 1537, + "Rank": 1 }, { - "Id": 1538, + "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, - "CommandName": "Update-PnPTeamsUser" + "Id": 1538, + "Rank": 2 }, { - "Id": 1539, + "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": 1539, + "Rank": 3 }, { - "Id": 1540, + "CommandName": "Update-PnPUserType", "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Rank": 1, - "CommandName": "Update-PnPUserType" + "Id": 1540, + "Rank": 1 } ] diff --git a/version.txt b/version.txt index 587927f94..df2deb338 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.19 \ No newline at end of file +2.2.20 \ No newline at end of file From 6954b6545d7f52106dd826591641f7b698e970b0 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Thu, 20 Jul 2023 18:07:29 +0300 Subject: [PATCH 10/21] Fix #3273 - issue with object reference in creating new team site --- CHANGELOG.md | 1 + src/Commands/Admin/NewSite.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61860f532..def4da5e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `Get-PnPUserProfileProperty` cmdlet not allowing basic user profile properties to be retrieved using `-Properties` [#3247](https://github.com/pnp/powershell/pull/3247) - Fixed `Export-PnPTermGroupToXml` cmdlet issue with exporting site collection term groups. [#3256](https://github.com/pnp/powershell/pull/3256) - Fixed `Register-PnPAzureADApp` cmdlet issue with creation of Azure AD application. [#3265](https://github.com/pnp/powershell/pull/3265) +- Fixed `New-PnPSite` cmdlet issue with team site creation when using a connection object. ### Contributors diff --git a/src/Commands/Admin/NewSite.cs b/src/Commands/Admin/NewSite.cs index a40af49de..1519aad27 100644 --- a/src/Commands/Admin/NewSite.cs +++ b/src/Commands/Admin/NewSite.cs @@ -130,7 +130,7 @@ protected override void ExecuteCmdlet() if (ClientContext.GetContextSettings()?.Type != Framework.Utilities.Context.ClientContextType.SharePointACSAppOnly) { - var returnedContext = Framework.Sites.SiteCollection.Create(ClientContext, creationInformation, noWait: !Wait, graphAccessToken: GraphAccessToken, azureEnvironment: PnPConnection.Current.AzureEnvironment); + var returnedContext = Framework.Sites.SiteCollection.Create(ClientContext, creationInformation, noWait: !Wait, graphAccessToken: GraphAccessToken, azureEnvironment: Connection?.AzureEnvironment ?? Framework.AzureEnvironment.Production); if (ParameterSpecified(nameof(TimeZone))) { returnedContext.Web.EnsureProperties(w => w.RegionalSettings, w => w.RegionalSettings.TimeZones); From fc36727b043b604d0dcbefb82b230cf679a6882d Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Thu, 20 Jul 2023 18:09:09 +0300 Subject: [PATCH 11/21] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index def4da5e2..fbb364121 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `Get-PnPUserProfileProperty` cmdlet not allowing basic user profile properties to be retrieved using `-Properties` [#3247](https://github.com/pnp/powershell/pull/3247) - Fixed `Export-PnPTermGroupToXml` cmdlet issue with exporting site collection term groups. [#3256](https://github.com/pnp/powershell/pull/3256) - Fixed `Register-PnPAzureADApp` cmdlet issue with creation of Azure AD application. [#3265](https://github.com/pnp/powershell/pull/3265) -- Fixed `New-PnPSite` cmdlet issue with team site creation when using a connection object. +- Fixed `New-PnPSite` cmdlet issue with team site creation when using a connection object. [#3285](https://github.com/pnp/powershell/pull/3285) ### Contributors From 0a8e026c038432832b72f73925b46a93352b9c42 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Thu, 20 Jul 2023 18:30:33 +0300 Subject: [PATCH 12/21] Fix #3284 - issue with service health object reference. --- CHANGELOG.md | 1 + .../Enums/ServiceHealthIssueStatus.cs | 46 ++++++++++++++++++- 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61860f532..7b7500f79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `Get-PnPUserProfileProperty` cmdlet not allowing basic user profile properties to be retrieved using `-Properties` [#3247](https://github.com/pnp/powershell/pull/3247) - Fixed `Export-PnPTermGroupToXml` cmdlet issue with exporting site collection term groups. [#3256](https://github.com/pnp/powershell/pull/3256) - Fixed `Register-PnPAzureADApp` cmdlet issue with creation of Azure AD application. [#3265](https://github.com/pnp/powershell/pull/3265) +- Fixed `Get-PnPServiceHealthIssue` cmdlet issue with null reference objection. ### Contributors diff --git a/src/Commands/Model/ServiceHealth/Enums/ServiceHealthIssueStatus.cs b/src/Commands/Model/ServiceHealth/Enums/ServiceHealthIssueStatus.cs index aa515daae..0fa0ebfe1 100644 --- a/src/Commands/Model/ServiceHealth/Enums/ServiceHealthIssueStatus.cs +++ b/src/Commands/Model/ServiceHealth/Enums/ServiceHealthIssueStatus.cs @@ -33,6 +33,50 @@ public enum ServiceHealthIssueStatus /// /// Investigation towards the cause of the issue has been suspended /// - InvestigationSuspended + InvestigationSuspended, + /// + /// After a detailed investigation, the service is confirmed to be healthy and operating as designed. No impact to the service was observed or the cause of the incident originated outside of the service. Incidents and advisories with this status appear in the history view until they expire (after the period of time stated in the final post for that event). + /// + FalsePositive, + /// + /// The service is healthy and no issues have been identified. + /// + ServiceOperational, + /// + /// A potential issue was identified and more information is being gathered about what's going on and the scope of impact. + /// + Investigating, + /// + /// The action has been taken to mitigate the issue and we're verify that the service is healthy. + /// + VerifyingService, + /// + /// You'll see this status if an issue is determined to affect the ability for users to access the service. In this case, the issue is significant and can be reproduced consistently. + /// + ServiceInterruption, + /// + /// Reserved for future use. + /// + Resolved, + /// + /// Reserved for future use. + /// + MitigatedExternal, + /// + /// Reserved for future use. + /// + Mitigated, + /// + /// Reserved for future use. + /// + ResolvedExternal, + /// + /// Reserved for future use. + /// + Confirmed, + /// + /// Reserved for future use. + /// + Reported } } \ No newline at end of file From b10ccad564664cd7492d0a7a2fc2d757d5cdf73f Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Thu, 20 Jul 2023 22:23:02 +0300 Subject: [PATCH 13/21] Fix module path load issue --- src/Commands/Base/PnPPowerShellModuleInitializer.cs | 4 ++-- src/Commands/PnP.PowerShell.csproj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Commands/Base/PnPPowerShellModuleInitializer.cs b/src/Commands/Base/PnPPowerShellModuleInitializer.cs index f87b2c1e6..7b034d6fa 100644 --- a/src/Commands/Base/PnPPowerShellModuleInitializer.cs +++ b/src/Commands/Base/PnPPowerShellModuleInitializer.cs @@ -25,8 +25,8 @@ static PnPPowerShellModuleInitializer() s_binBasePath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location))); s_binCommonPath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "..", "..", "..", "..", "..", "src", "ALC", "bin", "Debug", "net6.0")); #else - s_binBasePath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "..")); - s_binCommonPath = Path.Combine(s_binBasePath, "Common"); + s_binBasePath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location))); + s_binCommonPath = Path.Combine(Path.GetDirectoryName(s_binBasePath), "Common"); #endif s_dependencies = new HashSet(StringComparer.Ordinal); s_psEditionDependencies = new HashSet(StringComparer.Ordinal); diff --git a/src/Commands/PnP.PowerShell.csproj b/src/Commands/PnP.PowerShell.csproj index 9f465b7ae..9fd492c12 100644 --- a/src/Commands/PnP.PowerShell.csproj +++ b/src/Commands/PnP.PowerShell.csproj @@ -46,7 +46,7 @@ TRACE;$(DefineConstants);DEBUG - TRACE;$(DefineConstants);DEBUG + TRACE;$(DefineConstants);Release From bf8c105917dcdd12b5527b2b9a67896743a8bc21 Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Thu, 20 Jul 2023 22:27:34 +0300 Subject: [PATCH 14/21] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2299d9ea3..497076c47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `Register-PnPAzureADApp` cmdlet issue with creation of Azure AD application. [#3265](https://github.com/pnp/powershell/pull/3265) - Fixed `Get-PnPServiceHealthIssue` cmdlet issue with null reference objection. [#3286](https://github.com/pnp/powershell/pull/3286) - Fixed `New-PnPSite` cmdlet issue with team site creation when using a connection object. [#3285](https://github.com/pnp/powershell/pull/3285) +- Fixed issue with colliding assemblies when using PnP PowerShell with other modules. [#3280](https://github.com/pnp/powershell/pull/3280) ### Contributors From a1b5b8c6cd35f3db6a8170c796d6dd9ea6ee7336 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Fri, 21 Jul 2023 02:49:32 +0000 Subject: [PATCH 15/21] 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 97bdd62de..9eca28224 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -92acde34f8bd83e2280d16a40240bdd7868b9a4f \ No newline at end of file +42637d4ec994dd86dc470fceeecb8ce0581620a9 \ No newline at end of file diff --git a/version.txt b/version.txt index df2deb338..e05032b6a 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.20 \ No newline at end of file +2.2.21 \ No newline at end of file From 285c5720f5e70d6f090885d30e6760617f7ffe5c Mon Sep 17 00:00:00 2001 From: Gautam Sheth Date: Fri, 21 Jul 2023 22:33:51 +0300 Subject: [PATCH 16/21] Fix #3207 - issue with colliding assemblies --- src/Commands/Base/PnPPowerShellModuleInitializer.cs | 13 +++++++++++-- src/Commands/_debug/debug.ps1 | 8 -------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/src/Commands/Base/PnPPowerShellModuleInitializer.cs b/src/Commands/Base/PnPPowerShellModuleInitializer.cs index 7b034d6fa..c50999512 100644 --- a/src/Commands/Base/PnPPowerShellModuleInitializer.cs +++ b/src/Commands/Base/PnPPowerShellModuleInitializer.cs @@ -71,6 +71,16 @@ private static Assembly ResolveAssembly_NetCore( AssemblyLoadContext assemblyLoadContext, AssemblyName assemblyName) { + if (assemblyName.Name.Equals("PnP.PowerShell.ALC")) + { + string filePath = GetRequiredAssemblyPath(assemblyName); + if (!string.IsNullOrEmpty(filePath)) + { + // - In .NET, load the assembly into the custom assembly load context. + return s_proxy.LoadFromAssemblyPath(filePath); + } + } + if (IsAssemblyMatching(assemblyName)) { string filePath = GetRequiredAssemblyPath(assemblyName); @@ -131,8 +141,7 @@ private static bool IsAssemblyMatching(AssemblyName assemblyName) private static string GetRequiredAssemblyPath(AssemblyName assemblyName) { string fileName = assemblyName.Name + ".dll"; - string filePath = Path.Combine(s_binBasePath, fileName); - + string filePath = Path.Combine(s_binBasePath, fileName); if (File.Exists(filePath)) return filePath; diff --git a/src/Commands/_debug/debug.ps1 b/src/Commands/_debug/debug.ps1 index d84482c9c..b46697452 100644 --- a/src/Commands/_debug/debug.ps1 +++ b/src/Commands/_debug/debug.ps1 @@ -2,16 +2,8 @@ $BinPath = "$ProjectPath\bin\Debug" $dlls = @("PnP.PowerShell.ALC.dll", "PnP.PowerShell.dll") - $netversion = "net6.0-windows" -if ($PSEdition -eq 'Core') { - $netversion = "net6.0-windows" -} -else { - $netversion = "net462" -} - $BinPath = "$BinPath\$netversion" foreach ($dll in $dlls) { From b042077f8c72a484d7cc3ca83b018b1c4a775419 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sat, 22 Jul 2023 02:46:26 +0000 Subject: [PATCH 17/21] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6160 ++++++++--------- version.txt | 2 +- 3 files changed, 3082 insertions(+), 3082 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 9eca28224..6e9c9ba8a 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -42637d4ec994dd86dc470fceeecb8ce0581620a9 \ No newline at end of file +ac249d56a64eddd54bb04c492afab5f24e303f63 \ 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 2e1ef28bb..59957be28 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -2,9241 +2,9241 @@ { "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-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Id": 68, - "Rank": 1 + "Rank": 1, + "Id": 68 }, { "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Id": 69, - "Rank": 2 + "Rank": 2, + "Id": 69 }, { "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Id": 70, - "Rank": 3 + "Rank": 3, + "Id": 70 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 71, - "Rank": 1 + "Rank": 1, + "Id": 71 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Id": 72, - "Rank": 2 + "Rank": 2, + "Id": 72 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "Id": 73, - "Rank": 3 + "Rank": 3, + "Id": 73 }, { "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 74, - "Rank": 1 + "Rank": 1, + "Id": 74 }, { "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Id": 75, - "Rank": 2 + "Rank": 2, + "Id": 75 }, { "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Id": 76, - "Rank": 1 + "Rank": 1, + "Id": 76 }, { "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Id": 77, - "Rank": 2 + "Rank": 2, + "Id": 77 }, { "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", - "Id": 78, - "Rank": 3 + "Rank": 3, + "Id": 78 }, { "CommandName": "Add-PnPFolderUserSharingLink", "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 79, - "Rank": 1 + "Rank": 1, + "Id": 79 }, { "CommandName": "Add-PnPFolderUserSharingLink", "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 80, - "Rank": 2 + "Rank": 2, + "Id": 80 }, { "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Id": 81, - "Rank": 1 + "Rank": 1, + "Id": 81 }, { "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Id": 82, - "Rank": 2 + "Rank": 2, + "Id": 82 }, { "CommandName": "Add-PnPHtmlPublishingPageLayout", "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Id": 83, - "Rank": 1 + "Rank": 1, + "Id": 83 }, { "CommandName": "Add-PnPHubSiteAssociation", "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "Id": 84, - "Rank": 1 + "Rank": 1, + "Id": 84 }, { "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "Id": 85, - "Rank": 1 + "Rank": 1, + "Id": 85 }, { "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "Id": 86, - "Rank": 2 + "Rank": 2, + "Id": 86 }, { "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": 87, - "Rank": 3 + "Rank": 3, + "Id": 87 }, { "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "Id": 88, - "Rank": 1 + "Rank": 1, + "Id": 88 }, { "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Id": 89, - "Rank": 2 + "Rank": 2, + "Id": 89 }, { "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Id": 90, - "Rank": 1 + "Rank": 1, + "Id": 90 }, { "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "Id": 91, - "Rank": 2 + "Rank": 2, + "Id": 91 }, { "CommandName": "Add-PnPListDesign", "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "Id": 92, - "Rank": 1 + "Rank": 1, + "Id": 92 }, { "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": 93, - "Rank": 2 + "Rank": 2, + "Id": 93 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Id": 94, - "Rank": 1 + "Rank": 1, + "Id": 94 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Id": 95, - "Rank": 2 + "Rank": 2, + "Id": 95 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Id": 96, - "Rank": 3 + "Rank": 3, + "Id": 96 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 97, - "Rank": 1 + "Rank": 1, + "Id": 97 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 98, - "Rank": 2 + "Rank": 2, + "Id": 98 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "Id": 99, - "Rank": 3 + "Rank": 3, + "Id": 99 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "Id": 100, - "Rank": 4 + "Rank": 4, + "Id": 100 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "Id": 101, - "Rank": 5 + "Rank": 5, + "Id": 101 }, { "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "Id": 102, - "Rank": 1 + "Rank": 1, + "Id": 102 }, { "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "Id": 103, - "Rank": 2 + "Rank": 2, + "Id": 103 }, { "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "Id": 104, - "Rank": 3 + "Rank": 3, + "Id": 104 }, { "CommandName": "Add-PnPListItemComment", "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Id": 105, - "Rank": 1 + "Rank": 1, + "Id": 105 }, { "CommandName": "Add-PnPMasterPage", "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "Id": 106, - "Rank": 1 + "Rank": 1, + "Id": 106 }, { "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 107, - "Rank": 1 + "Rank": 1, + "Id": 107 }, { "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Id": 108, - "Rank": 2 + "Rank": 2, + "Id": 108 }, { "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 109, - "Rank": 1 + "Rank": 1, + "Id": 109 }, { "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Id": 110, - "Rank": 2 + "Rank": 2, + "Id": 110 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "Id": 111, - "Rank": 1 + "Rank": 1, + "Id": 111 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Id": 112, - "Rank": 2 + "Rank": 2, + "Id": 112 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Id": 113, - "Rank": 3 + "Rank": 3, + "Id": 113 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "Id": 114, - "Rank": 1 + "Rank": 1, + "Id": 114 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", - "Id": 115, - "Rank": 2 + "Rank": 2, + "Id": 115 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "Id": 116, - "Rank": 3 + "Rank": 3, + "Id": 116 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "Id": 117, - "Rank": 4 + "Rank": 4, + "Id": 117 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Id": 118, - "Rank": 5 + "Rank": 5, + "Id": 118 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Id": 119, - "Rank": 6 + "Rank": 6, + "Id": 119 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Id": 120, - "Rank": 7 + "Rank": 7, + "Id": 120 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "Id": 121, - "Rank": 8 + "Rank": 8, + "Id": 121 }, { "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Id": 122, - "Rank": 1 + "Rank": 1, + "Id": 122 }, { "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": 123, - "Rank": 2 + "Rank": 2, + "Id": 123 }, { "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "Id": 124, - "Rank": 3 + "Rank": 3, + "Id": 124 }, { "CommandName": "Add-PnPOrgNewsSite", "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Id": 125, - "Rank": 1 + "Rank": 1, + "Id": 125 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\"", - "Id": 126, - "Rank": 1 + "Rank": 1, + "Id": 126 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Id": 127, - "Rank": 2 + "Rank": 2, + "Id": 127 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Id": 128, - "Rank": 3 + "Rank": 3, + "Id": 128 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Id": 129, - "Rank": 4 + "Rank": 4, + "Id": 129 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Id": 130, - "Rank": 5 + "Rank": 5, + "Id": 130 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Id": 131, - "Rank": 6 + "Rank": 6, + "Id": 131 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Id": 132, - "Rank": 7 + "Rank": 7, + "Id": 132 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Id": 133, - "Rank": 8 + "Rank": 8, + "Id": 133 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Id": 134, - "Rank": 9 + "Rank": 9, + "Id": 134 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Id": 135, - "Rank": 10 + "Rank": 10, + "Id": 135 }, { "CommandName": "Add-PnPPageImageWebPart", "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Id": 136, - "Rank": 1 + "Rank": 1, + "Id": 136 }, { "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": 137, - "Rank": 2 + "Rank": 2, + "Id": 137 }, { "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Id": 138, - "Rank": 1 + "Rank": 1, + "Id": 138 }, { "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Id": 139, - "Rank": 2 + "Rank": 2, + "Id": 139 }, { "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Id": 140, - "Rank": 1 + "Rank": 1, + "Id": 140 }, { "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Id": 141, - "Rank": 2 + "Rank": 2, + "Id": 141 }, { "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", - "Id": 142, - "Rank": 3 + "Rank": 3, + "Id": 142 }, { "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Id": 143, - "Rank": 1 + "Rank": 1, + "Id": 143 }, { "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Id": 144, - "Rank": 2 + "Rank": 2, + "Id": 144 }, { "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Id": 145, - "Rank": 3 + "Rank": 3, + "Id": 145 }, { "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Id": 146, - "Rank": 1 + "Rank": 1, + "Id": 146 }, { "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Id": 147, - "Rank": 2 + "Rank": 2, + "Id": 147 }, { "CommandName": "Add-PnPPlannerRoster", "Command": "Add-PnPPlannerRoster", - "Id": 148, - "Rank": 1 + "Rank": 1, + "Id": 148 }, { "CommandName": "Add-PnPPlannerRosterMember", "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 149, - "Rank": 1 + "Rank": 1, + "Id": 149 }, { "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Id": 150, - "Rank": 1 + "Rank": 1, + "Id": 150 }, { "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Id": 151, - "Rank": 2 + "Rank": 2, + "Id": 151 }, { "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": 152, - "Rank": 3 + "Rank": 3, + "Id": 152 }, { "CommandName": "Add-PnPPublishingImageRendition", "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Id": 153, - "Rank": 1 + "Rank": 1, + "Id": 153 }, { "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Id": 154, - "Rank": 1 + "Rank": 1, + "Id": 154 }, { "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "Id": 155, - "Rank": 2 + "Rank": 2, + "Id": 155 }, { "CommandName": "Add-PnPPublishingPageLayout", "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Id": 156, - "Rank": 1 + "Rank": 1, + "Id": 156 }, { "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Id": 157, - "Rank": 1 + "Rank": 1, + "Id": 157 }, { "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Id": 158, - "Rank": 2 + "Rank": 2, + "Id": 158 }, { "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Id": 159, - "Rank": 3 + "Rank": 3, + "Id": 159 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 160, - "Rank": 1 + "Rank": 1, + "Id": 160 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 161, - "Rank": 2 + "Rank": 2, + "Id": 161 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Id": 162, - "Rank": 3 + "Rank": 3, + "Id": 162 }, { "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog", - "Id": 163, - "Rank": 1 + "Rank": 1, + "Id": 163 }, { "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Id": 164, - "Rank": 2 + "Rank": 2, + "Id": 164 }, { "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": 165, - "Rank": 1 + "Rank": 1, + "Id": 165 }, { "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": 166, - "Rank": 2 + "Rank": 2, + "Id": 166 }, { "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": 167, - "Rank": 3 + "Rank": 3, + "Id": 167 }, { "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Id": 168, - "Rank": 1 + "Rank": 1, + "Id": 168 }, { "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Id": 169, - "Rank": 2 + "Rank": 2, + "Id": 169 }, { "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": 170, - "Rank": 3 + "Rank": 3, + "Id": 170 }, { "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Id": 171, - "Rank": 1 + "Rank": 1, + "Id": 171 }, { "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Id": 172, - "Rank": 2 + "Rank": 2, + "Id": 172 }, { "CommandName": "Add-PnPSiteScript", "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "Id": 173, - "Rank": 1 + "Rank": 1, + "Id": 173 }, { "CommandName": "Add-PnPSiteScriptPackage", "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "Id": 174, - "Rank": 1 + "Rank": 1, + "Id": 174 }, { "CommandName": "Add-PnPSiteTemplate", "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Id": 175, - "Rank": 1 + "Rank": 1, + "Id": 175 }, { "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Id": 176, - "Rank": 1 + "Rank": 1, + "Id": 176 }, { "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Id": 177, - "Rank": 2 + "Rank": 2, + "Id": 177 }, { "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": 178, - "Rank": 3 + "Rank": 3, + "Id": 178 }, { "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Id": 179, - "Rank": 1 + "Rank": 1, + "Id": 179 }, { "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "Id": 180, - "Rank": 2 + "Rank": 2, + "Id": 180 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "Id": 181, - "Rank": 1 + "Rank": 1, + "Id": 181 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Id": 182, - "Rank": 2 + "Rank": 2, + "Id": 182 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "Id": 183, - "Rank": 3 + "Rank": 3, + "Id": 183 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "Id": 184, - "Rank": 4 + "Rank": 4, + "Id": 184 }, { "CommandName": "Add-PnpTeamsChannelUser", "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", - "Id": 185, - "Rank": 1 + "Rank": 1, + "Id": 185 }, { "CommandName": "Add-PnpTeamsChannelUser", "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "Id": 186, - "Rank": 2 + "Rank": 2, + "Id": 186 }, { "CommandName": "Add-PnPTeamsTab", "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", - "Id": 187, - "Rank": 1 + "Rank": 1, + "Id": 187 }, { "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": 188, - "Rank": 2 + "Rank": 2, + "Id": 188 }, { "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": 189, - "Rank": 3 + "Rank": 3, + "Id": 189 }, { "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": 190, - "Rank": 4 + "Rank": 4, + "Id": 190 }, { "CommandName": "Add-PnPTeamsTeam", "Command": "Add-PnPTeamsTeam", - "Id": 191, - "Rank": 1 + "Rank": 1, + "Id": 191 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 192, - "Rank": 1 + "Rank": 1, + "Id": 192 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Id": 193, - "Rank": 2 + "Rank": 2, + "Id": 193 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "Id": 194, - "Rank": 3 + "Rank": 3, + "Id": 194 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "Id": 195, - "Rank": 4 + "Rank": 4, + "Id": 195 }, { "CommandName": "Add-PnPTenantCdnOrigin", "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Id": 196, - "Rank": 1 + "Rank": 1, + "Id": 196 }, { "CommandName": "Add-PnPTenantSequence", "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Id": 197, - "Rank": 1 + "Rank": 1, + "Id": 197 }, { "CommandName": "Add-PnPTenantSequenceSite", "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Id": 198, - "Rank": 1 + "Rank": 1, + "Id": 198 }, { "CommandName": "Add-PnPTenantSequenceSubSite", "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Id": 199, - "Rank": 1 + "Rank": 1, + "Id": 199 }, { "CommandName": "Add-PnPTermToTerm", "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Id": 200, - "Rank": 1 + "Rank": 1, + "Id": 200 }, { "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Id": 201, - "Rank": 1 + "Rank": 1, + "Id": 201 }, { "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "Id": 202, - "Rank": 2 + "Rank": 2, + "Id": 202 }, { "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "Id": 203, - "Rank": 3 + "Rank": 3, + "Id": 203 }, { "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": 204, - "Rank": 1 + "Rank": 1, + "Id": 204 }, { "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": 205, - "Rank": 2 + "Rank": 2, + "Id": 205 }, { "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": 206, - "Rank": 3 + "Rank": 3, + "Id": 206 }, { "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Id": 207, - "Rank": 1 + "Rank": 1, + "Id": 207 }, { "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Id": 208, - "Rank": 2 + "Rank": 2, + "Id": 208 }, { "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", - "Id": 209, - "Rank": 3 + "Rank": 3, + "Id": 209 }, { "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "Id": 210, - "Rank": 1 + "Rank": 1, + "Id": 210 }, { "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "Id": 211, - "Rank": 2 + "Rank": 2, + "Id": 211 }, { "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "Id": 212, - "Rank": 1 + "Rank": 1, + "Id": 212 }, { "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "Id": 213, - "Rank": 2 + "Rank": 2, + "Id": 213 }, { "CommandName": "Add-PnPWikiPage", "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Id": 214, - "Rank": 1 + "Rank": 1, + "Id": 214 }, { "CommandName": "Clear-PnPAzureADGroupMember", "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Id": 215, - "Rank": 1 + "Rank": 1, + "Id": 215 }, { "CommandName": "Clear-PnPAzureADGroupOwner", "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Id": 216, - "Rank": 1 + "Rank": 1, + "Id": 216 }, { "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Id": 217, - "Rank": 1 + "Rank": 1, + "Id": 217 }, { "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Id": 218, - "Rank": 2 + "Rank": 2, + "Id": 218 }, { "CommandName": "Clear-PnPListItemAsRecord", "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Id": 219, - "Rank": 1 + "Rank": 1, + "Id": 219 }, { "CommandName": "Clear-PnPMicrosoft365GroupMember", "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Id": 220, - "Rank": 1 + "Rank": 1, + "Id": 220 }, { "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Id": 221, - "Rank": 1 + "Rank": 1, + "Id": 221 }, { "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Id": 222, - "Rank": 1 + "Rank": 1, + "Id": 222 }, { "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Id": 223, - "Rank": 2 + "Rank": 2, + "Id": 223 }, { "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Id": 224, - "Rank": 3 + "Rank": 3, + "Id": 224 }, { "CommandName": "Clear-PnPTenantAppCatalogUrl", "Command": "Clear-PnPTenantAppCatalogUrl", - "Id": 225, - "Rank": 1 + "Rank": 1, + "Id": 225 }, { "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 226, - "Rank": 1 + "Rank": 1, + "Id": 226 }, { "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Id": 227, - "Rank": 2 + "Rank": 2, + "Id": 227 }, { "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Id": 228, - "Rank": 1 + "Rank": 1, + "Id": 228 }, { "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Id": 229, - "Rank": 2 + "Rank": 2, + "Id": 229 }, { "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Id": 230, - "Rank": 1 + "Rank": 1, + "Id": 230 }, { "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Id": 231, - "Rank": 2 + "Rank": 2, + "Id": 231 }, { "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Id": 232, - "Rank": 3 + "Rank": 3, + "Id": 232 }, { "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Id": 233, - "Rank": 1 + "Rank": 1, + "Id": 233 }, { "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Id": 234, - "Rank": 2 + "Rank": 2, + "Id": 234 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Id": 235, - "Rank": 1 + "Rank": 1, + "Id": 235 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Id": 236, - "Rank": 2 + "Rank": 2, + "Id": 236 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Id": 237, - "Rank": 3 + "Rank": 3, + "Id": 237 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Id": 238, - "Rank": 4 + "Rank": 4, + "Id": 238 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 239, - "Rank": 5 + "Rank": 5, + "Id": 239 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Id": 240, - "Rank": 6 + "Rank": 6, + "Id": 240 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Id": 241, - "Rank": 7 + "Rank": 7, + "Id": 241 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Id": 242, - "Rank": 8 + "Rank": 8, + "Id": 242 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 243, - "Rank": 9 + "Rank": 9, + "Id": 243 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Id": 244, - "Rank": 10 + "Rank": 10, + "Id": 244 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Id": 245, - "Rank": 11 + "Rank": 11, + "Id": 245 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 246, - "Rank": 12 + "Rank": 12, + "Id": 246 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 247, - "Rank": 13 + "Rank": 13, + "Id": 247 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "Id": 248, - "Rank": 14 + "Rank": 14, + "Id": 248 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 249, - "Rank": 1 + "Rank": 1, + "Id": 249 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Id": 250, - "Rank": 2 + "Rank": 2, + "Id": 250 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Id": 251, - "Rank": 3 + "Rank": 3, + "Id": 251 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 252, - "Rank": 4 + "Rank": 4, + "Id": 252 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Id": 253, - "Rank": 5 + "Rank": 5, + "Id": 253 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Id": 254, - "Rank": 6 + "Rank": 6, + "Id": 254 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Id": 255, - "Rank": 7 + "Rank": 7, + "Id": 255 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 256, - "Rank": 8 + "Rank": 8, + "Id": 256 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Id": 257, - "Rank": 9 + "Rank": 9, + "Id": 257 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Id": 258, - "Rank": 10 + "Rank": 10, + "Id": 258 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 259, - "Rank": 1 + "Rank": 1, + "Id": 259 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Id": 260, - "Rank": 2 + "Rank": 2, + "Id": 260 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Id": 261, - "Rank": 3 + "Rank": 3, + "Id": 261 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 262, - "Rank": 4 + "Rank": 4, + "Id": 262 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Id": 263, - "Rank": 5 + "Rank": 5, + "Id": 263 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Id": 264, - "Rank": 6 + "Rank": 6, + "Id": 264 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Id": 265, - "Rank": 7 + "Rank": 7, + "Id": 265 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 266, - "Rank": 8 + "Rank": 8, + "Id": 266 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Id": 267, - "Rank": 9 + "Rank": 9, + "Id": 267 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Id": 268, - "Rank": 10 + "Rank": 10, + "Id": 268 }, { "CommandName": "Copy-PnPItemProxy", "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Id": 269, - "Rank": 1 + "Rank": 1, + "Id": 269 }, { "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Id": 270, - "Rank": 1 + "Rank": 1, + "Id": 270 }, { "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Id": 271, - "Rank": 2 + "Rank": 2, + "Id": 271 }, { "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "Id": 272, - "Rank": 3 + "Rank": 3, + "Id": 272 }, { "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", - "Id": 273, - "Rank": 4 + "Rank": 4, + "Id": 273 }, { "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "Id": 274, - "Rank": 1 + "Rank": 1, + "Id": 274 }, { "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Id": 275, - "Rank": 2 + "Rank": 2, + "Id": 275 }, { "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": 276, - "Rank": 3 + "Rank": 3, + "Id": 276 }, { "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": 277, - "Rank": 4 + "Rank": 4, + "Id": 277 }, { "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 278, - "Rank": 1 + "Rank": 1, + "Id": 278 }, { "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Id": 279, - "Rank": 2 + "Rank": 2, + "Id": 279 }, { "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Id": 280, - "Rank": 3 + "Rank": 3, + "Id": 280 }, { "CommandName": "Disable-PnPPageScheduling", "Command": "Disable-PnPPageScheduling", - "Id": 281, - "Rank": 1 + "Rank": 1, + "Id": 281 }, { "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry", - "Id": 282, - "Rank": 1 + "Rank": 1, + "Id": 282 }, { "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry -Force", - "Id": 283, - "Rank": 2 + "Rank": 2, + "Id": 283 }, { "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 284, - "Rank": 1 + "Rank": 1, + "Id": 284 }, { "CommandName": "Disable-PnPSiteClassification", "Command": "Disable-PnPSiteClassification", - "Id": 285, - "Rank": 1 + "Rank": 1, + "Id": 285 }, { "CommandName": "Disconnect-PnPOnline", "Command": "Disconnect-PnPOnline", - "Id": 286, - "Rank": 1 + "Rank": 1, + "Id": 286 }, { "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite", - "Id": 287, - "Rank": 1 + "Rank": 1, + "Id": 287 }, { "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Id": 288, - "Rank": 2 + "Rank": 2, + "Id": 288 }, { "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 289, - "Rank": 1 + "Rank": 1, + "Id": 289 }, { "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Id": 290, - "Rank": 2 + "Rank": 2, + "Id": 290 }, { "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Id": 291, - "Rank": 3 + "Rank": 3, + "Id": 291 }, { "CommandName": "Enable-PnPPageScheduling", "Command": "Enable-PnPPageScheduling", - "Id": 292, - "Rank": 1 + "Rank": 1, + "Id": 292 }, { "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry", - "Id": 293, - "Rank": 1 + "Rank": 1, + "Id": 293 }, { "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry -Force", - "Id": 294, - "Rank": 2 + "Rank": 2, + "Id": 294 }, { "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Id": 295, - "Rank": 1 + "Rank": 1, + "Id": 295 }, { "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Id": 296, - "Rank": 2 + "Rank": 2, + "Id": 296 }, { "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Id": 297, - "Rank": 1 + "Rank": 1, + "Id": 297 }, { "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Id": 298, - "Rank": 2 + "Rank": 2, + "Id": 298 }, { "CommandName": "Export-PnPPage", "Command": "Export-PnPPage -Identity Home.aspx", - "Id": 299, - "Rank": 1 + "Rank": 1, + "Id": 299 }, { "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Id": 300, - "Rank": 1 + "Rank": 1, + "Id": 300 }, { "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Id": 301, - "Rank": 2 + "Rank": 2, + "Id": 301 }, { "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Id": 302, - "Rank": 3 + "Rank": 3, + "Id": 302 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy", - "Id": 303, - "Rank": 1 + "Rank": 1, + "Id": 303 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Id": 304, - "Rank": 2 + "Rank": 2, + "Id": 304 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Id": 305, - "Rank": 3 + "Rank": 3, + "Id": 305 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Id": 306, - "Rank": 4 + "Rank": 4, + "Id": 306 }, { "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml", - "Id": 307, - "Rank": 1 + "Rank": 1, + "Id": 307 }, { "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Id": 308, - "Rank": 2 + "Rank": 2, + "Id": 308 }, { "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Id": 309, - "Rank": 3 + "Rank": 3, + "Id": 309 }, { "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Id": 310, - "Rank": 1 + "Rank": 1, + "Id": 310 }, { "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", - "Id": 311, - "Rank": 2 + "Rank": 2, + "Id": 311 }, { "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Id": 312, - "Rank": 1 + "Rank": 1, + "Id": 312 }, { "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Id": 313, - "Rank": 2 + "Rank": 2, + "Id": 313 }, { "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Match *.master", - "Id": 314, - "Rank": 1 + "Rank": 1, + "Id": 314 }, { "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Id": 315, - "Rank": 2 + "Rank": 2, + "Id": 315 }, { "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Id": 316, - "Rank": 3 + "Rank": 3, + "Id": 316 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken", - "Id": 317, - "Rank": 1 + "Rank": 1, + "Id": 317 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -Decoded", - "Id": 318, - "Rank": 2 + "Rank": 2, + "Id": 318 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Id": 319, - "Rank": 3 + "Rank": 3, + "Id": 319 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Id": 320, - "Rank": 4 + "Rank": 4, + "Id": 320 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Id": 321, - "Rank": 5 + "Rank": 5, + "Id": 321 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert", - "Id": 322, - "Rank": 1 + "Rank": 1, + "Id": 322 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\"", - "Id": 323, - "Rank": 2 + "Rank": 2, + "Id": 323 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 324, - "Rank": 3 + "Rank": 3, + "Id": 324 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Id": 325, - "Rank": 4 + "Rank": 4, + "Id": 325 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -AllUsers", - "Id": 326, - "Rank": 5 + "Rank": 5, + "Id": 326 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Id": 327, - "Rank": 6 + "Rank": 6, + "Id": 327 }, { "CommandName": "Get-PnPApp", "Command": "Get-PnPApp", - "Id": 328, - "Rank": 1 + "Rank": 1, + "Id": 328 }, { "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Scope Site", - "Id": 329, - "Rank": 2 + "Rank": 2, + "Id": 329 }, { "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 330, - "Rank": 3 + "Rank": 3, + "Id": 330 }, { "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Id": 331, - "Rank": 1 + "Rank": 1, + "Id": 331 }, { "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Id": 332, - "Rank": 2 + "Rank": 2, + "Id": 332 }, { "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Id": 333, - "Rank": 1 + "Rank": 1, + "Id": 333 }, { "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 334, - "Rank": 2 + "Rank": 2, + "Id": 334 }, { "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Id": 335, - "Rank": 3 + "Rank": 3, + "Id": 335 }, { "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer", - "Id": 336, - "Rank": 1 + "Rank": 1, + "Id": 336 }, { "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 337, - "Rank": 2 + "Rank": 2, + "Id": 337 }, { "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Id": 338, - "Rank": 3 + "Rank": 3, + "Id": 338 }, { "CommandName": "Get-PnPAuditing", "Command": "Get-PnPAuditing", - "Id": 339, - "Rank": 1 + "Rank": 1, + "Id": 339 }, { "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm", - "Id": 340, - "Rank": 1 + "Rank": 1, + "Id": 340 }, { "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Id": 341, - "Rank": 2 + "Rank": 2, + "Id": 341 }, { "CommandName": "Get-PnPAvailableLanguage", "Command": "Get-PnPAvailableLanguage", - "Id": 342, - "Rank": 1 + "Rank": 1, + "Id": 342 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel", - "Id": 343, - "Rank": 1 + "Rank": 1, + "Id": 343 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Id": 344, - "Rank": 2 + "Rank": 2, + "Id": 344 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Id": 345, - "Rank": 3 + "Rank": 3, + "Id": 345 }, { "CommandName": "Get-PnPAvailableSiteClassification", "Command": "Get-PnPAvailableSiteClassification", - "Id": 346, - "Rank": 1 + "Rank": 1, + "Id": 346 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal", - "Id": 347, - "Rank": 1 + "Rank": 1, + "Id": 347 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Id": 348, - "Rank": 2 + "Rank": 2, + "Id": 348 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Id": 349, - "Rank": 3 + "Rank": 3, + "Id": 349 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Id": 350, - "Rank": 4 + "Rank": 4, + "Id": 350 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 351, - "Rank": 1 + "Rank": 1, + "Id": 351 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Id": 352, - "Rank": 2 + "Rank": 2, + "Id": 352 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Id": 353, - "Rank": 3 + "Rank": 3, + "Id": 353 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn", - "Id": 354, - "Rank": 1 + "Rank": 1, + "Id": 354 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Id": 355, - "Rank": 2 + "Rank": 2, + "Id": 355 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Id": 356, - "Rank": 3 + "Rank": 3, + "Id": 356 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp", - "Id": 357, - "Rank": 1 + "Rank": 1, + "Id": 357 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity MyApp", - "Id": 358, - "Rank": 2 + "Rank": 2, + "Id": 358 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 359, - "Rank": 3 + "Rank": 3, + "Id": 359 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Id": 360, - "Rank": 4 + "Rank": 4, + "Id": 360 }, { "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission", - "Id": 361, - "Rank": 1 + "Rank": 1, + "Id": 361 }, { "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Id": 362, - "Rank": 2 + "Rank": 2, + "Id": 362 }, { "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 363, - "Rank": 3 + "Rank": 3, + "Id": 363 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission", - "Id": 364, - "Rank": 1 + "Rank": 1, + "Id": 364 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Id": 365, - "Rank": 2 + "Rank": 2, + "Id": 365 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Id": 366, - "Rank": 3 + "Rank": 3, + "Id": 366 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Id": 367, - "Rank": 4 + "Rank": 4, + "Id": 367 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Id": 368, - "Rank": 5 + "Rank": 5, + "Id": 368 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup", - "Id": 369, - "Rank": 1 + "Rank": 1, + "Id": 369 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Id": 370, - "Rank": 2 + "Rank": 2, + "Id": 370 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Id": 371, - "Rank": 3 + "Rank": 3, + "Id": 371 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Id": 372, - "Rank": 4 + "Rank": 4, + "Id": 372 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $group", - "Id": 373, - "Rank": 5 + "Rank": 5, + "Id": 373 }, { "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Id": 374, - "Rank": 1 + "Rank": 1, + "Id": 374 }, { "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Id": 375, - "Rank": 2 + "Rank": 2, + "Id": 375 }, { "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Id": 376, - "Rank": 1 + "Rank": 1, + "Id": 376 }, { "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Id": 377, - "Rank": 2 + "Rank": 2, + "Id": 377 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal", - "Id": 378, - "Rank": 1 + "Rank": 1, + "Id": 378 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Id": 379, - "Rank": 2 + "Rank": 2, + "Id": 379 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Id": 380, - "Rank": 3 + "Rank": 3, + "Id": 380 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Id": 381, - "Rank": 4 + "Rank": 4, + "Id": 381 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Id": 382, - "Rank": 5 + "Rank": 5, + "Id": 382 }, { "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 383, - "Rank": 1 + "Rank": 1, + "Id": 383 }, { "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Id": 384, - "Rank": 2 + "Rank": 2, + "Id": 384 }, { "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 385, - "Rank": 1 + "Rank": 1, + "Id": 385 }, { "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Id": 386, - "Rank": 2 + "Rank": 2, + "Id": 386 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser", - "Id": 387, - "Rank": 1 + "Rank": 1, + "Id": 387 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -EndIndex 50", - "Id": 388, - "Rank": 2 + "Rank": 2, + "Id": 388 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Id": 389, - "Rank": 3 + "Rank": 3, + "Id": 389 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Id": 390, - "Rank": 4 + "Rank": 4, + "Id": 390 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Id": 391, - "Rank": 5 + "Rank": 5, + "Id": 391 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Id": 392, - "Rank": 6 + "Rank": 6, + "Id": 392 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Id": 393, - "Rank": 7 + "Rank": 7, + "Id": 393 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta", - "Id": 394, - "Rank": 8 + "Rank": 8, + "Id": 394 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Id": 395, - "Rank": 9 + "Rank": 9, + "Id": 395 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Id": 396, - "Rank": 10 + "Rank": 10, + "Id": 396 }, { "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Id": 397, - "Rank": 1 + "Rank": 1, + "Id": 397 }, { "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Id": 398, - "Rank": 2 + "Rank": 2, + "Id": 398 }, { "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Id": 399, - "Rank": 3 + "Rank": 3, + "Id": 399 }, { "CommandName": "Get-PnPBrowserIdleSignout", "Command": "Get-PnPBrowserIdleSignout", - "Id": 400, - "Rank": 1 + "Rank": 1, + "Id": 400 }, { "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Id": 401, - "Rank": 1 + "Rank": 1, + "Id": 401 }, { "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 402, - "Rank": 2 + "Rank": 2, + "Id": 402 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 403, - "Rank": 1 + "Rank": 1, + "Id": 403 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Id": 404, - "Rank": 2 + "Rank": 2, + "Id": 404 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Id": 405, - "Rank": 3 + "Rank": 3, + "Id": 405 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Id": 406, - "Rank": 4 + "Rank": 4, + "Id": 406 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Id": 407, - "Rank": 5 + "Rank": 5, + "Id": 407 }, { "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog", - "Id": 408, - "Rank": 1 + "Rank": 1, + "Id": 408 }, { "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog -Nightly", - "Id": 409, - "Rank": 2 + "Rank": 2, + "Id": 409 }, { "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Id": 410, - "Rank": 1 + "Rank": 1, + "Id": 410 }, { "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "Id": 411, - "Rank": 2 + "Rank": 2, + "Id": 411 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType", - "Id": 412, - "Rank": 1 + "Rank": 1, + "Id": 412 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -InSiteHierarchy", - "Id": 413, - "Rank": 2 + "Rank": 2, + "Id": 413 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Id": 414, - "Rank": 3 + "Rank": 3, + "Id": 414 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -List \"Documents\"", - "Id": 415, - "Rank": 4 + "Rank": 4, + "Id": 415 }, { "CommandName": "Get-PnPContentTypePublishingStatus", "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Id": 416, - "Rank": 1 + "Rank": 1, + "Id": 416 }, { "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction", - "Id": 417, - "Rank": 1 + "Rank": 1, + "Id": 417 }, { "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 418, - "Rank": 2 + "Rank": 2, + "Id": 418 }, { "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Scope web", - "Id": 419, - "Rank": 3 + "Rank": 3, + "Id": 419 }, { "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group", - "Id": 420, - "Rank": 1 + "Rank": 1, + "Id": 420 }, { "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 421, - "Rank": 2 + "Rank": 2, + "Id": 421 }, { "CommandName": "Get-PnPDeletedTeam", "Command": "Get-PnPDeletedTeam", - "Id": 422, - "Rank": 1 + "Rank": 1, + "Id": 422 }, { "CommandName": "Get-PnPDiagnostics", "Command": "Get-PnPDiagnostics", - "Id": 423, - "Rank": 1 + "Rank": 1, + "Id": 423 }, { "CommandName": "Get-PnPDisableSpacesActivation", "Command": "Get-PnPDisableSpacesActivation", - "Id": 424, - "Rank": 1 + "Rank": 1, + "Id": 424 }, { "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Id": 425, - "Rank": 1 + "Rank": 1, + "Id": 425 }, { "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Id": 426, - "Rank": 2 + "Rank": 2, + "Id": 426 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver", - "Id": 427, - "Rank": 1 + "Rank": 1, + "Id": 427 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 428, - "Rank": 2 + "Rank": 2, + "Id": 428 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Id": 429, - "Rank": 3 + "Rank": 3, + "Id": 429 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Id": 430, - "Rank": 4 + "Rank": 4, + "Id": 430 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 431, - "Rank": 5 + "Rank": 5, + "Id": 431 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Id": 432, - "Rank": 6 + "Rank": 6, + "Id": 432 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Site", - "Id": 433, - "Rank": 7 + "Rank": 7, + "Id": 433 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Web", - "Id": 434, - "Rank": 8 + "Rank": 8, + "Id": 434 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope All", - "Id": 435, - "Rank": 9 + "Rank": 9, + "Id": 435 }, { "CommandName": "Get-PnPException", "Command": "Get-PnPException", - "Id": 436, - "Rank": 1 + "Rank": 1, + "Id": 436 }, { "CommandName": "Get-PnPException", "Command": "Get-PnPException -All", - "Id": 437, - "Rank": 2 + "Rank": 2, + "Id": 437 }, { "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Id": 438, - "Rank": 1 + "Rank": 1, + "Id": 438 }, { "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Id": 439, - "Rank": 2 + "Rank": 2, + "Id": 439 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature", - "Id": 440, - "Rank": 1 + "Rank": 1, + "Id": 440 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Scope Site", - "Id": 441, - "Rank": 2 + "Rank": 2, + "Id": 441 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 442, - "Rank": 3 + "Rank": 3, + "Id": 442 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Id": 443, - "Rank": 4 + "Rank": 4, + "Id": 443 }, { "CommandName": "Get-PnPField", "Command": "Get-PnPField", - "Id": 444, - "Rank": 1 + "Rank": 1, + "Id": 444 }, { "CommandName": "Get-PnPField", "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Id": 445, - "Rank": 2 + "Rank": 2, + "Id": 445 }, { "CommandName": "Get-PnPField", "Command": "Get-PnPField -Group \"Custom Columns\"", - "Id": 446, - "Rank": 3 + "Rank": 3, + "Id": 446 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Id": 447, - "Rank": 1 + "Rank": 1, + "Id": 447 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Id": 448, - "Rank": 2 + "Rank": 2, + "Id": 448 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Id": 449, - "Rank": 3 + "Rank": 3, + "Id": 449 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Id": 450, - "Rank": 4 + "Rank": 4, + "Id": 450 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Id": 451, - "Rank": 5 + "Rank": 5, + "Id": 451 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "Id": 452, - "Rank": 6 + "Rank": 6, + "Id": 452 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Id": 453, - "Rank": 7 + "Rank": 7, + "Id": 453 }, { "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 454, - "Rank": 1 + "Rank": 1, + "Id": 454 }, { "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Id": 455, - "Rank": 1 + "Rank": 1, + "Id": 455 }, { "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Id": 456, - "Rank": 2 + "Rank": 2, + "Id": 456 }, { "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Id": 457, - "Rank": 1 + "Rank": 1, + "Id": 457 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Id": 458, - "Rank": 1 + "Rank": 1, + "Id": 458 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Id": 459, - "Rank": 2 + "Rank": 2, + "Id": 459 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Id": 460, - "Rank": 3 + "Rank": 3, + "Id": 460 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\"", - "Id": 461, - "Rank": 1 + "Rank": 1, + "Id": 461 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Id": 462, - "Rank": 2 + "Rank": 2, + "Id": 462 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Id": 463, - "Rank": 3 + "Rank": 3, + "Id": 463 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType File", - "Id": 464, - "Rank": 4 + "Rank": 4, + "Id": 464 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Id": 465, - "Rank": 5 + "Rank": 5, + "Id": 465 }, { "CommandName": "Get-PnPFolderSharingLink", "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 466, - "Rank": 1 + "Rank": 1, + "Id": 466 }, { "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric", - "Id": 467, - "Rank": 1 + "Rank": 1, + "Id": 467 }, { "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Id": 468, - "Rank": 2 + "Rank": 2, + "Id": 468 }, { "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Id": 469, - "Rank": 3 + "Rank": 3, + "Id": 469 }, { "CommandName": "Get-PnPFooter", "Command": "Get-PnPFooter", - "Id": 470, - "Rank": 1 + "Rank": 1, + "Id": 470 }, { "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken", - "Id": 471, - "Rank": 1 + "Rank": 1, + "Id": 471 }, { "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken -Decoded", - "Id": 472, - "Rank": 2 + "Rank": 2, + "Id": 472 }, { "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription", - "Id": 473, - "Rank": 1 + "Rank": 1, + "Id": 473 }, { "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Id": 474, - "Rank": 2 + "Rank": 2, + "Id": 474 }, { "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup", - "Id": 475, - "Rank": 1 + "Rank": 1, + "Id": 475 }, { "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Id": 476, - "Rank": 2 + "Rank": 2, + "Id": 476 }, { "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Id": 477, - "Rank": 3 + "Rank": 3, + "Id": 477 }, { "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Id": 478, - "Rank": 1 + "Rank": 1, + "Id": 478 }, { "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Id": 479, - "Rank": 2 + "Rank": 2, + "Id": 479 }, { "CommandName": "Get-PnPGroupPermissions", "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Id": 480, - "Rank": 1 + "Rank": 1, + "Id": 480 }, { "CommandName": "Get-PnPHideDefaultThemes", "Command": "Get-PnPHideDefaultThemes", - "Id": 481, - "Rank": 1 + "Rank": 1, + "Id": 481 }, { "CommandName": "Get-PnPHomePage", "Command": "Get-PnPHomePage", - "Id": 482, - "Rank": 1 + "Rank": 1, + "Id": 482 }, { "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite", - "Id": 483, - "Rank": 1 + "Rank": 1, + "Id": 483 }, { "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Id": 484, - "Rank": 2 + "Rank": 2, + "Id": 484 }, { "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -Detailed", - "Id": 485, - "Rank": 3 + "Rank": 3, + "Id": 485 }, { "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite", - "Id": 486, - "Rank": 1 + "Rank": 1, + "Id": 486 }, { "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Id": 487, - "Rank": 2 + "Rank": 2, + "Id": 487 }, { "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Id": 488, - "Rank": 3 + "Rank": 3, + "Id": 488 }, { "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild", - "Id": 489, - "Rank": 1 + "Rank": 1, + "Id": 489 }, { "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Id": 490, - "Rank": 2 + "Rank": 2, + "Id": 490 }, { "CommandName": "Get-PnPInPlaceRecordsManagement", "Command": "Get-PnPInPlaceRecordsManagement", - "Id": 491, - "Rank": 1 + "Rank": 1, + "Id": 491 }, { "CommandName": "Get-PnPIsSiteAliasAvailable", "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Id": 492, - "Rank": 1 + "Rank": 1, + "Id": 492 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink", - "Id": 493, - "Rank": 1 + "Rank": 1, + "Id": 493 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope All", - "Id": 494, - "Rank": 2 + "Rank": 2, + "Id": 494 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Web", - "Id": 495, - "Rank": 3 + "Rank": 3, + "Id": 495 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Site", - "Id": 496, - "Rank": 4 + "Rank": 4, + "Id": 496 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Name Test", - "Id": 497, - "Rank": 5 + "Rank": 5, + "Id": 497 }, { "CommandName": "Get-PnPKnowledgeHubSite", "Command": "Get-PnPKnowledgeHubSite", - "Id": 498, - "Rank": 1 + "Rank": 1, + "Id": 498 }, { "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel", - "Id": 499, - "Rank": 1 + "Rank": 1, + "Id": 499 }, { "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Id": 500, - "Rank": 2 + "Rank": 2, + "Id": 500 }, { "CommandName": "Get-PnPLargeListOperationStatus", "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Id": 501, - "Rank": 1 + "Rank": 1, + "Id": 501 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList", - "Id": 502, - "Rank": 1 + "Rank": 1, + "Id": 502 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 503, - "Rank": 2 + "Rank": 2, + "Id": 503 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity Lists/Announcements", - "Id": 504, - "Rank": 3 + "Rank": 3, + "Id": 504 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Id": 505, - "Rank": 4 + "Rank": 4, + "Id": 505 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Id": 506, - "Rank": 5 + "Rank": 5, + "Id": 506 }, { "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign", - "Id": 507, - "Rank": 1 + "Rank": 1, + "Id": 507 }, { "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 508, - "Rank": 2 + "Rank": 2, + "Id": 508 }, { "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity ListEvent", - "Id": 509, - "Rank": 3 + "Rank": 3, + "Id": 509 }, { "CommandName": "Get-PnPListInformationRightsManagement", "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Id": 510, - "Rank": 1 + "Rank": 1, + "Id": 510 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks", - "Id": 511, - "Rank": 1 + "Rank": 1, + "Id": 511 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1", - "Id": 512, - "Rank": 2 + "Rank": 2, + "Id": 512 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Id": 513, - "Rank": 3 + "Rank": 3, + "Id": 513 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Id": 514, - "Rank": 4 + "Rank": 4, + "Id": 514 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Id": 515, - "Rank": 5 + "Rank": 5, + "Id": 515 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Id": 516, - "Rank": 6 + "Rank": 6, + "Id": 516 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "Id": 517, - "Rank": 7 + "Rank": 7, + "Id": 517 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Id": 518, - "Rank": 8 + "Rank": 8, + "Id": 518 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Id": 519, - "Rank": 9 + "Rank": 9, + "Id": 519 }, { "CommandName": "Get-PnPListItemComment", "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Id": 520, - "Rank": 1 + "Rank": 1, + "Id": 520 }, { "CommandName": "Get-PnPListItemPermission", "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Id": 521, - "Rank": 1 + "Rank": 1, + "Id": 521 }, { "CommandName": "Get-PnPListItemVersion", "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Id": 522, - "Rank": 1 + "Rank": 1, + "Id": 522 }, { "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Id": 523, - "Rank": 1 + "Rank": 1, + "Id": 523 }, { "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Id": 524, - "Rank": 2 + "Rank": 2, + "Id": 524 }, { "CommandName": "Get-PnPListRecordDeclaration", "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Id": 525, - "Rank": 1 + "Rank": 1, + "Id": 525 }, { "CommandName": "Get-PnPMasterPage", "Command": "Get-PnPMasterPage", - "Id": 526, - "Rank": 1 + "Rank": 1, + "Id": 526 }, { "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement", - "Id": 527, - "Rank": 1 + "Rank": 1, + "Id": 527 }, { "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Id": 528, - "Rank": 2 + "Rank": 2, + "Id": 528 }, { "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 529, - "Rank": 1 + "Rank": 1, + "Id": 529 }, { "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Id": 530, - "Rank": 2 + "Rank": 2, + "Id": 530 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group", - "Id": 531, - "Rank": 1 + "Rank": 1, + "Id": 531 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Id": 532, - "Rank": 2 + "Rank": 2, + "Id": 532 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Id": 533, - "Rank": 3 + "Rank": 3, + "Id": 533 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Id": 534, - "Rank": 4 + "Rank": 4, + "Id": 534 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Id": 535, - "Rank": 5 + "Rank": 5, + "Id": 535 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Id": 536, - "Rank": 6 + "Rank": 6, + "Id": 536 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 537, - "Rank": 1 + "Rank": 1, + "Id": 537 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Id": 538, - "Rank": 2 + "Rank": 2, + "Id": 538 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 539, - "Rank": 3 + "Rank": 3, + "Id": 539 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Id": 540, - "Rank": 1 + "Rank": 1, + "Id": 540 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Id": 541, - "Rank": 2 + "Rank": 2, + "Id": 541 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Id": 542, - "Rank": 3 + "Rank": 3, + "Id": 542 }, { "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Id": 543, - "Rank": 1 + "Rank": 1, + "Id": 543 }, { "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Id": 544, - "Rank": 2 + "Rank": 2, + "Id": 544 }, { "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings", - "Id": 545, - "Rank": 1 + "Rank": 1, + "Id": 545 }, { "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Id": 546, - "Rank": 2 + "Rank": 2, + "Id": 546 }, { "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 547, - "Rank": 1 + "Rank": 1, + "Id": 547 }, { "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Id": 548, - "Rank": 2 + "Rank": 2, + "Id": 548 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam", - "Id": 549, - "Rank": 1 + "Rank": 1, + "Id": 549 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Id": 550, - "Rank": 2 + "Rank": 2, + "Id": 550 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 551, - "Rank": 3 + "Rank": 3, + "Id": 551 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 552, - "Rank": 1 + "Rank": 1, + "Id": 552 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Id": 553, - "Rank": 2 + "Rank": 2, + "Id": 553 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 554, - "Rank": 3 + "Rank": 3, + "Id": 554 }, { "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode", - "Id": 555, - "Rank": 1 + "Rank": 1, + "Id": 555 }, { "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Id": 556, - "Rank": 2 + "Rank": 2, + "Id": 556 }, { "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Id": 557, - "Rank": 3 + "Rank": 3, + "Id": 557 }, { "CommandName": "Get-PnPOrgAssetsLibrary", "Command": "Get-PnPOrgAssetsLibrary", - "Id": 558, - "Rank": 1 + "Rank": 1, + "Id": 558 }, { "CommandName": "Get-PnPOrgNewsSite", "Command": "Get-PnPOrgNewsSite", - "Id": 559, - "Rank": 1 + "Rank": 1, + "Id": 559 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Id": 560, - "Rank": 1 + "Rank": 1, + "Id": 560 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"MyPage\"", - "Id": 561, - "Rank": 2 + "Rank": 2, + "Id": 561 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Id": 562, - "Rank": 3 + "Rank": 3, + "Id": 562 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Id": 563, - "Rank": 4 + "Rank": 4, + "Id": 563 }, { "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home", - "Id": 564, - "Rank": 1 + "Rank": 1, + "Id": 564 }, { "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 565, - "Rank": 2 + "Rank": 2, + "Id": 565 }, { "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Id": 566, - "Rank": 3 + "Rank": 3, + "Id": 566 }, { "CommandName": "Get-PnPPlannerBucket", "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Id": 567, - "Rank": 1 + "Rank": 1, + "Id": 567 }, { "CommandName": "Get-PnPPlannerConfiguration", "Command": "Get-PnPPlannerConfiguration", - "Id": 568, - "Rank": 1 + "Rank": 1, + "Id": 568 }, { "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Id": 569, - "Rank": 1 + "Rank": 1, + "Id": 569 }, { "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Id": 570, - "Rank": 2 + "Rank": 2, + "Id": 570 }, { "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Id": 571, - "Rank": 3 + "Rank": 3, + "Id": 571 }, { "CommandName": "Get-PnPPlannerRosterMember", "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Id": 572, - "Rank": 1 + "Rank": 1, + "Id": 572 }, { "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Id": 573, - "Rank": 1 + "Rank": 1, + "Id": 573 }, { "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 574, - "Rank": 2 + "Rank": 2, + "Id": 574 }, { "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Id": 575, - "Rank": 1 + "Rank": 1, + "Id": 575 }, { "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Id": 576, - "Rank": 2 + "Rank": 2, + "Id": 576 }, { "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Id": 577, - "Rank": 3 + "Rank": 3, + "Id": 577 }, { "CommandName": "Get-PnPPlannerUserPolicy", "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Id": 578, - "Rank": 1 + "Rank": 1, + "Id": 578 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment", - "Id": 579, - "Rank": 1 + "Rank": 1, + "Id": 579 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Id": 580, - "Rank": 2 + "Rank": 2, + "Id": 580 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Id": 581, - "Rank": 3 + "Rank": 3, + "Id": 581 }, { "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Command": "Get-PnPPowerShellTelemetryEnabled", - "Id": 582, - "Rank": 1 + "Rank": 1, + "Id": 582 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag", - "Id": 583, - "Rank": 1 + "Rank": 1, + "Id": 583 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Key MyKey", - "Id": 584, - "Rank": 2 + "Rank": 2, + "Id": 584 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Id": 585, - "Rank": 3 + "Rank": 3, + "Id": 585 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Id": 586, - "Rank": 4 + "Rank": 4, + "Id": 586 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Id": 587, - "Rank": 5 + "Rank": 5, + "Id": 587 }, { "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition", - "Id": 588, - "Rank": 1 + "Rank": 1, + "Id": 588 }, { "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Id": 589, - "Rank": 2 + "Rank": 2, + "Id": 589 }, { "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Id": 590, - "Rank": 3 + "Rank": 3, + "Id": 590 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem", - "Id": 591, - "Rank": 1 + "Rank": 1, + "Id": 591 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Id": 592, - "Rank": 2 + "Rank": 2, + "Id": 592 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -FirstStage", - "Id": 593, - "Rank": 3 + "Rank": 3, + "Id": 593 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -SecondStage", - "Id": 594, - "Rank": 4 + "Rank": 4, + "Id": 594 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Id": 595, - "Rank": 5 + "Rank": 5, + "Id": 595 }, { "CommandName": "Get-PnPRequestAccessEmails", "Command": "Get-PnPRequestAccessEmails", - "Id": 596, - "Rank": 1 + "Rank": 1, + "Id": 596 }, { "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition", - "Id": 597, - "Rank": 1 + "Rank": 1, + "Id": 597 }, { "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition -Identity Read", - "Id": 598, - "Rank": 2 + "Rank": 2, + "Id": 598 }, { "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Id": 599, - "Rank": 3 + "Rank": 3, + "Id": 599 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration", - "Id": 600, - "Rank": 1 + "Rank": 1, + "Id": 600 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site", - "Id": 601, - "Rank": 2 + "Rank": 2, + "Id": 601 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Id": 602, - "Rank": 3 + "Rank": 3, + "Id": 602 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 603, - "Rank": 4 + "Rank": 4, + "Id": 603 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Id": 604, - "Rank": 5 + "Rank": 5, + "Id": 604 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Id": 605, - "Rank": 6 + "Rank": 6, + "Id": 605 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Id": 606, - "Rank": 7 + "Rank": 7, + "Id": 606 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Id": 607, - "Rank": 8 + "Rank": 8, + "Id": 607 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog", - "Id": 608, - "Rank": 1 + "Rank": 1, + "Id": 608 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Id": 609, - "Rank": 2 + "Rank": 2, + "Id": 609 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Id": 610, - "Rank": 3 + "Rank": 3, + "Id": 610 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Id": 611, - "Rank": 4 + "Rank": 4, + "Id": 611 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Id": 612, - "Rank": 5 + "Rank": 5, + "Id": 612 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Id": 613, - "Rank": 6 + "Rank": 6, + "Id": 613 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Id": 614, - "Rank": 7 + "Rank": 7, + "Id": 614 }, { "CommandName": "Get-PnPSearchSettings", "Command": "Get-PnPSearchSettings", - "Id": 615, - "Rank": 1 + "Rank": 1, + "Id": 615 }, { "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth", - "Id": 616, - "Rank": 1 + "Rank": 1, + "Id": 616 }, { "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Id": 617, - "Rank": 2 + "Rank": 2, + "Id": 617 }, { "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue", - "Id": 618, - "Rank": 1 + "Rank": 1, + "Id": 618 }, { "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Id": 619, - "Rank": 2 + "Rank": 2, + "Id": 619 }, { "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn", - "Id": 620, - "Rank": 1 + "Rank": 1, + "Id": 620 }, { "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Id": 621, - "Rank": 2 + "Rank": 2, + "Id": 621 }, { "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Command": "Get-PnPSharingForNonOwnersOfSite", - "Id": 622, - "Rank": 1 + "Rank": 1, + "Id": 622 }, { "CommandName": "Get-PnPSite", "Command": "Get-PnPSite", - "Id": 623, - "Rank": 1 + "Rank": 1, + "Id": 623 }, { "CommandName": "Get-PnPSite", "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Id": 624, - "Rank": 2 + "Rank": 2, + "Id": 624 }, { "CommandName": "Get-PnPSiteClosure", "Command": "Get-PnPSiteClosure", - "Id": 625, - "Rank": 1 + "Rank": 1, + "Id": 625 }, { "CommandName": "Get-PnPSiteCollectionAdmin", "Command": "Get-PnPSiteCollectionAdmin", - "Id": 626, - "Rank": 1 + "Rank": 1, + "Id": 626 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog", - "Id": 627, - "Rank": 1 + "Rank": 1, + "Id": 627 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Id": 628, - "Rank": 2 + "Rank": 2, + "Id": 628 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Id": 629, - "Rank": 3 + "Rank": 3, + "Id": 629 }, { "CommandName": "Get-PnPSiteCollectionTermStore", "Command": "Get-PnPSiteCollectionTermStore", - "Id": 630, - "Rank": 1 + "Rank": 1, + "Id": 630 }, { "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign", - "Id": 631, - "Rank": 1 + "Rank": 1, + "Id": 631 }, { "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 632, - "Rank": 2 + "Rank": 2, + "Id": 632 }, { "CommandName": "Get-PnPSiteDesignRights", "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 633, - "Rank": 1 + "Rank": 1, + "Id": 633 }, { "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun", - "Id": 634, - "Rank": 1 + "Rank": 1, + "Id": 634 }, { "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Id": 635, - "Rank": 2 + "Rank": 2, + "Id": 635 }, { "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Id": 636, - "Rank": 1 + "Rank": 1, + "Id": 636 }, { "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask", - "Id": 637, - "Rank": 2 + "Rank": 2, + "Id": 637 }, { "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Id": 638, - "Rank": 3 + "Rank": 3, + "Id": 638 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup", - "Id": 639, - "Rank": 1 + "Rank": 1, + "Id": 639 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Id": 640, - "Rank": 2 + "Rank": 2, + "Id": 640 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Id": 641, - "Rank": 3 + "Rank": 3, + "Id": 641 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Id": 642, - "Rank": 4 + "Rank": 4, + "Id": 642 }, { "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy", - "Id": 643, - "Rank": 1 + "Rank": 1, + "Id": 643 }, { "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -AllAvailable", - "Id": 644, - "Rank": 2 + "Rank": 2, + "Id": 644 }, { "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Id": 645, - "Rank": 3 + "Rank": 3, + "Id": 645 }, { "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript", - "Id": 646, - "Rank": 1 + "Rank": 1, + "Id": 646 }, { "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 647, - "Rank": 2 + "Rank": 2, + "Id": 647 }, { "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Id": 648, - "Rank": 1 + "Rank": 1, + "Id": 648 }, { "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Id": 649, - "Rank": 2 + "Rank": 2, + "Id": 649 }, { "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Id": 650, - "Rank": 3 + "Rank": 3, + "Id": 650 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Id": 651, - "Rank": 1 + "Rank": 1, + "Id": 651 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Id": 652, - "Rank": 2 + "Rank": 2, + "Id": 652 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Id": 653, - "Rank": 3 + "Rank": 3, + "Id": 653 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Id": 654, - "Rank": 4 + "Rank": 4, + "Id": 654 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Id": 655, - "Rank": 5 + "Rank": 5, + "Id": 655 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Id": 656, - "Rank": 6 + "Rank": 6, + "Id": 656 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults", - "Id": 657, - "Rank": 1 + "Rank": 1, + "Id": 657 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Id": 658, - "Rank": 2 + "Rank": 2, + "Id": 658 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Id": 659, - "Rank": 3 + "Rank": 3, + "Id": 659 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Id": 660, - "Rank": 4 + "Rank": 4, + "Id": 660 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Id": 661, - "Rank": 5 + "Rank": 5, + "Id": 661 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -All", - "Id": 662, - "Rank": 6 + "Rank": 6, + "Id": 662 }, { "CommandName": "Get-PnPSiteSensitivityLabel", "Command": "Get-PnPSiteSensitivityLabel", - "Id": 663, - "Rank": 1 + "Rank": 1, + "Id": 663 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Id": 664, - "Rank": 1 + "Rank": 1, + "Id": 664 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml", - "Id": 665, - "Rank": 2 + "Rank": 2, + "Id": 665 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.md", - "Id": 666, - "Rank": 3 + "Rank": 3, + "Id": 666 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Id": 667, - "Rank": 4 + "Rank": 4, + "Id": 667 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Id": 668, - "Rank": 5 + "Rank": 5, + "Id": 668 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Id": 669, - "Rank": 6 + "Rank": 6, + "Id": 669 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Id": 670, - "Rank": 7 + "Rank": 7, + "Id": 670 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Id": 671, - "Rank": 8 + "Rank": 8, + "Id": 671 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Id": 672, - "Rank": 9 + "Rank": 9, + "Id": 672 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Id": 673, - "Rank": 10 + "Rank": 10, + "Id": 673 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Id": 674, - "Rank": 11 + "Rank": 11, + "Id": 674 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Id": 675, - "Rank": 12 + "Rank": 12, + "Id": 675 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", - "Id": 676, - "Rank": 13 + "Rank": 13, + "Id": 676 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Id": 677, - "Rank": 14 + "Rank": 14, + "Id": 677 }, { "CommandName": "Get-PnPSiteUserInvitations", "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Id": 678, - "Rank": 1 + "Rank": 1, + "Id": 678 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity", - "Id": 679, - "Rank": 1 + "Rank": 1, + "Id": 679 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey", - "Id": 680, - "Rank": 2 + "Rank": 2, + "Id": 680 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Scope Site", - "Id": 681, - "Rank": 3 + "Rank": 3, + "Id": 681 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Id": 682, - "Rank": 4 + "Rank": 4, + "Id": 682 }, { "CommandName": "Get-PnPStoredCredential", "Command": "Get-PnPStoredCredential -Name O365", - "Id": 683, - "Rank": 1 + "Rank": 1, + "Id": 683 }, { "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 684, - "Rank": 1 + "Rank": 1, + "Id": 684 }, { "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 685, - "Rank": 1 + "Rank": 1, + "Id": 685 }, { "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Id": 686, - "Rank": 1 + "Rank": 1, + "Id": 686 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb", - "Id": 687, - "Rank": 1 + "Rank": 1, + "Id": 687 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse", - "Id": 688, - "Rank": 2 + "Rank": 2, + "Id": 688 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Id": 689, - "Rank": 3 + "Rank": 3, + "Id": 689 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Id": 690, - "Rank": 4 + "Rank": 4, + "Id": 690 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Id": 691, - "Rank": 5 + "Rank": 5, + "Id": 691 }, { "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel", - "Id": 692, - "Rank": 1 + "Rank": 1, + "Id": 692 }, { "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity 1", - "Id": 693, - "Rank": 2 + "Rank": 2, + "Id": 693 }, { "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Id": 694, - "Rank": 3 + "Rank": 3, + "Id": 694 }, { "CommandName": "Get-PnPSyntexModelPublication", "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Id": 695, - "Rank": 1 + "Rank": 1, + "Id": 695 }, { "CommandName": "Get-PnPTaxonomyItem", "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Id": 696, - "Rank": 1 + "Rank": 1, + "Id": 696 }, { "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp", - "Id": 697, - "Rank": 1 + "Rank": 1, + "Id": 697 }, { "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Id": 698, - "Rank": 2 + "Rank": 2, + "Id": 698 }, { "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Id": 699, - "Rank": 3 + "Rank": 3, + "Id": 699 }, { "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Id": 700, - "Rank": 1 + "Rank": 1, + "Id": 700 }, { "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Id": 701, - "Rank": 2 + "Rank": 2, + "Id": 701 }, { "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Id": 702, - "Rank": 3 + "Rank": 3, + "Id": 702 }, { "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Id": 703, - "Rank": 1 + "Rank": 1, + "Id": 703 }, { "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Id": 704, - "Rank": 2 + "Rank": 2, + "Id": 704 }, { "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Id": 705, - "Rank": 1 + "Rank": 1, + "Id": 705 }, { "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Id": 706, - "Rank": 2 + "Rank": 2, + "Id": 706 }, { "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Id": 707, - "Rank": 1 + "Rank": 1, + "Id": 707 }, { "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Id": 708, - "Rank": 2 + "Rank": 2, + "Id": 708 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Id": 709, - "Rank": 1 + "Rank": 1, + "Id": 709 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Id": 710, - "Rank": 2 + "Rank": 2, + "Id": 710 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Id": 711, - "Rank": 3 + "Rank": 3, + "Id": 711 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Id": 712, - "Rank": 4 + "Rank": 4, + "Id": 712 }, { "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Id": 713, - "Rank": 1 + "Rank": 1, + "Id": 713 }, { "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Id": 714, - "Rank": 2 + "Rank": 2, + "Id": 714 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Id": 715, - "Rank": 1 + "Rank": 1, + "Id": 715 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Id": 716, - "Rank": 2 + "Rank": 2, + "Id": 716 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", - "Id": 717, - "Rank": 3 + "Rank": 3, + "Id": 717 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Id": 718, - "Rank": 4 + "Rank": 4, + "Id": 718 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Id": 719, - "Rank": 5 + "Rank": 5, + "Id": 719 }, { "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Id": 720, - "Rank": 1 + "Rank": 1, + "Id": 720 }, { "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Id": 721, - "Rank": 2 + "Rank": 2, + "Id": 721 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam", - "Id": 722, - "Rank": 1 + "Rank": 1, + "Id": 722 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Id": 723, - "Rank": 2 + "Rank": 2, + "Id": 723 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Id": 724, - "Rank": 3 + "Rank": 3, + "Id": 724 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Id": 725, - "Rank": 4 + "Rank": 4, + "Id": 725 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Id": 726, - "Rank": 5 + "Rank": 5, + "Id": 726 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam", - "Id": 727, - "Rank": 1 + "Rank": 1, + "Id": 727 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Id": 728, - "Rank": 2 + "Rank": 2, + "Id": 728 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Id": 729, - "Rank": 3 + "Rank": 3, + "Id": 729 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Id": 730, - "Rank": 4 + "Rank": 4, + "Id": 730 }, { "CommandName": "Get-PnPTemporarilyDisableAppBar", "Command": "Get-PnPTemporarilyDisableAppBar", - "Id": 731, - "Rank": 1 + "Rank": 1, + "Id": 731 }, { "CommandName": "Get-PnPTenant", "Command": "Get-PnPTenant", - "Id": 732, - "Rank": 1 + "Rank": 1, + "Id": 732 }, { "CommandName": "Get-PnPTenantAppCatalogUrl", "Command": "Get-PnPTenantAppCatalogUrl", - "Id": 733, - "Rank": 1 + "Rank": 1, + "Id": 733 }, { "CommandName": "Get-PnPTenantCdnEnabled", "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Id": 734, - "Rank": 1 + "Rank": 1, + "Id": 734 }, { "CommandName": "Get-PnPTenantCdnOrigin", "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Id": 735, - "Rank": 1 + "Rank": 1, + "Id": 735 }, { "CommandName": "Get-PnPTenantCdnPolicies", "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Id": 736, - "Rank": 1 + "Rank": 1, + "Id": 736 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite", - "Id": 737, - "Rank": 1 + "Rank": 1, + "Id": 737 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 738, - "Rank": 2 + "Rank": 2, + "Id": 738 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Id": 739, - "Rank": 3 + "Rank": 3, + "Id": 739 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Id": 740, - "Rank": 4 + "Rank": 4, + "Id": 740 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId", - "Id": 741, - "Rank": 1 + "Rank": 1, + "Id": 741 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId contoso", - "Id": 742, - "Rank": 2 + "Rank": 2, + "Id": 742 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Id": 743, - "Rank": 3 + "Rank": 3, + "Id": 743 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Id": 744, - "Rank": 4 + "Rank": 4, + "Id": 744 }, { "CommandName": "Get-PnPTenantInstance", "Command": "Get-PnPTenantInstance", - "Id": 745, - "Rank": 1 + "Rank": 1, + "Id": 745 }, { "CommandName": "Get-PnPTenantRecycleBinItem", "Command": "Get-PnPTenantRecycleBinItem", - "Id": 746, - "Rank": 1 + "Rank": 1, + "Id": 746 }, { "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Id": 747, - "Rank": 1 + "Rank": 1, + "Id": 747 }, { "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Id": 748, - "Rank": 2 + "Rank": 2, + "Id": 748 }, { "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Id": 749, - "Rank": 1 + "Rank": 1, + "Id": 749 }, { "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Id": 750, - "Rank": 2 + "Rank": 2, + "Id": 750 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite", - "Id": 751, - "Rank": 1 + "Rank": 1, + "Id": 751 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Detailed", - "Id": 752, - "Rank": 2 + "Rank": 2, + "Id": 752 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Id": 753, - "Rank": 3 + "Rank": 3, + "Id": 753 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Id": 754, - "Rank": 4 + "Rank": 4, + "Id": 754 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Id": 755, - "Rank": 5 + "Rank": 5, + "Id": 755 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Id": 756, - "Rank": 6 + "Rank": 6, + "Id": 756 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Id": 757, - "Rank": 7 + "Rank": 7, + "Id": 757 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Id": 758, - "Rank": 8 + "Rank": 8, + "Id": 758 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Id": 759, - "Rank": 9 + "Rank": 9, + "Id": 759 }, { "CommandName": "Get-PnPTenantSyncClientRestriction", "Command": "Get-PnPTenantSyncClientRestriction", - "Id": 760, - "Rank": 1 + "Rank": 1, + "Id": 760 }, { "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Id": 761, - "Rank": 1 + "Rank": 1, + "Id": 761 }, { "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Id": 762, - "Rank": 2 + "Rank": 2, + "Id": 762 }, { "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Id": 763, - "Rank": 3 + "Rank": 3, + "Id": 763 }, { "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme", - "Id": 764, - "Rank": 1 + "Rank": 1, + "Id": 764 }, { "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Id": 765, - "Rank": 2 + "Rank": 2, + "Id": 765 }, { "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Id": 766, - "Rank": 3 + "Rank": 3, + "Id": 766 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 767, - "Rank": 1 + "Rank": 1, + "Id": 767 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 768, - "Rank": 2 + "Rank": 2, + "Id": 768 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 769, - "Rank": 3 + "Rank": 3, + "Id": 769 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Id": 770, - "Rank": 4 + "Rank": 4, + "Id": 770 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Id": 771, - "Rank": 5 + "Rank": 5, + "Id": 771 }, { "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup", - "Id": 772, - "Rank": 1 + "Rank": 1, + "Id": 772 }, { "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Id": 773, - "Rank": 2 + "Rank": 2, + "Id": 773 }, { "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Id": 774, - "Rank": 3 + "Rank": 3, + "Id": 774 }, { "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Id": 775, - "Rank": 1 + "Rank": 1, + "Id": 775 }, { "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Id": 776, - "Rank": 2 + "Rank": 2, + "Id": 776 }, { "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 777, - "Rank": 3 + "Rank": 3, + "Id": 777 }, { "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Id": 778, - "Rank": 1 + "Rank": 1, + "Id": 778 }, { "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Id": 779, - "Rank": 2 + "Rank": 2, + "Id": 779 }, { "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Id": 780, - "Rank": 3 + "Rank": 3, + "Id": 780 }, { "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme", - "Id": 781, - "Rank": 1 + "Rank": 1, + "Id": 781 }, { "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Id": 782, - "Rank": 2 + "Rank": 2, + "Id": 782 }, { "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId", - "Id": 783, - "Rank": 1 + "Rank": 1, + "Id": 783 }, { "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Id": 784, - "Rank": 2 + "Rank": 2, + "Id": 784 }, { "CommandName": "Get-PnPUnfurlLink", "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Id": 785, - "Rank": 1 + "Rank": 1, + "Id": 785 }, { "CommandName": "Get-PnPUnifiedAuditLog", "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Id": 786, - "Rank": 1 + "Rank": 1, + "Id": 786 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus", - "Id": 787, - "Rank": 1 + "Rank": 1, + "Id": 787 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Id": 788, - "Rank": 2 + "Rank": 2, + "Id": 788 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Id": 789, - "Rank": 3 + "Rank": 3, + "Id": 789 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Id": 790, - "Rank": 4 + "Rank": 4, + "Id": 790 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser", - "Id": 791, - "Rank": 1 + "Rank": 1, + "Id": 791 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity 23", - "Id": 792, - "Rank": 2 + "Rank": 2, + "Id": 792 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Id": 793, - "Rank": 3 + "Rank": 3, + "Id": 793 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Id": 794, - "Rank": 4 + "Rank": 4, + "Id": 794 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned", - "Id": 795, - "Rank": 5 + "Rank": 5, + "Id": 795 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Id": 796, - "Rank": 6 + "Rank": 6, + "Id": 796 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Id": 797, - "Rank": 7 + "Rank": 7, + "Id": 797 }, { "CommandName": "Get-PnPUserOneDriveQuota", "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Id": 798, - "Rank": 1 + "Rank": 1, + "Id": 798 }, { "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Id": 799, - "Rank": 1 + "Rank": 1, + "Id": 799 }, { "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Id": 800, - "Rank": 2 + "Rank": 2, + "Id": 800 }, { "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Id": 801, - "Rank": 3 + "Rank": 3, + "Id": 801 }, { "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\"", - "Id": 802, - "Rank": 1 + "Rank": 1, + "Id": 802 }, { "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Id": 803, - "Rank": 2 + "Rank": 2, + "Id": 803 }, { "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Id": 804, - "Rank": 3 + "Rank": 3, + "Id": 804 }, { "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE", - "Id": 805, - "Rank": 1 + "Rank": 1, + "Id": 805 }, { "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Id": 806, - "Rank": 2 + "Rank": 2, + "Id": 806 }, { "CommandName": "Get-PnPWeb", "Command": "Get-PnPWeb", - "Id": 807, - "Rank": 1 + "Rank": 1, + "Id": 807 }, { "CommandName": "Get-PnPWebHeader", "Command": "Get-PnPWebHeader", - "Id": 808, - "Rank": 1 + "Rank": 1, + "Id": 808 }, { "CommandName": "Get-PnPWebhookSubscriptions", "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Id": 809, - "Rank": 1 + "Rank": 1, + "Id": 809 }, { "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Id": 810, - "Rank": 1 + "Rank": 1, + "Id": 810 }, { "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 811, - "Rank": 2 + "Rank": 2, + "Id": 811 }, { "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Id": 812, - "Rank": 1 + "Rank": 1, + "Id": 812 }, { "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "Id": 813, - "Rank": 2 + "Rank": 2, + "Id": 813 }, { "CommandName": "Get-PnPWebPartXml", "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 814, - "Rank": 1 + "Rank": 1, + "Id": 814 }, { "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates", - "Id": 815, - "Rank": 1 + "Rank": 1, + "Id": 815 }, { "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -LCID 1033", - "Id": 816, - "Rank": 2 + "Rank": 2, + "Id": 816 }, { "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Id": 817, - "Rank": 3 + "Rank": 3, + "Id": 817 }, { "CommandName": "Get-PnPWikiPageContent", "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Id": 818, - "Rank": 1 + "Rank": 1, + "Id": 818 }, { "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Id": 819, - "Rank": 1 + "Rank": 1, + "Id": 819 }, { "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "Id": 820, - "Rank": 2 + "Rank": 2, + "Id": 820 }, { "CommandName": "Grant-PnPHubSiteRights", "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 821, - "Rank": 1 + "Rank": 1, + "Id": 821 }, { "CommandName": "Grant-PnPSiteDesignRights", "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 822, - "Rank": 1 + "Rank": 1, + "Id": 822 }, { "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 823, - "Rank": 1 + "Rank": 1, + "Id": 823 }, { "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Id": 824, - "Rank": 1 + "Rank": 1, + "Id": 824 }, { "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Id": 825, - "Rank": 2 + "Rank": 2, + "Id": 825 }, { "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Id": 826, - "Rank": 3 + "Rank": 3, + "Id": 826 }, { "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Id": 827, - "Rank": 1 + "Rank": 1, + "Id": 827 }, { "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Id": 828, - "Rank": 2 + "Rank": 2, + "Id": 828 }, { "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Id": 829, - "Rank": 1 + "Rank": 1, + "Id": 829 }, { "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": 830, - "Rank": 2 + "Rank": 2, + "Id": 830 }, { "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": 831, - "Rank": 3 + "Rank": 3, + "Id": 831 }, { "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 832, - "Rank": 1 + "Rank": 1, + "Id": 832 }, { "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 833, - "Rank": 2 + "Rank": 2, + "Id": 833 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "Id": 834, - "Rank": 1 + "Rank": 1, + "Id": 834 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Id": 835, - "Rank": 2 + "Rank": 2, + "Id": 835 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Id": 836, - "Rank": 3 + "Rank": 3, + "Id": 836 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Id": 837, - "Rank": 4 + "Rank": 4, + "Id": 837 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Id": 838, - "Rank": 5 + "Rank": 5, + "Id": 838 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", - "Id": 839, - "Rank": 6 + "Rank": 6, + "Id": 839 }, { "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": 840, - "Rank": 7 + "Rank": 7, + "Id": 840 }, { "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 841, - "Rank": 1 + "Rank": 1, + "Id": 841 }, { "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 842, - "Rank": 2 + "Rank": 2, + "Id": 842 }, { "CommandName": "Invoke-PnPQuery", "Command": "Invoke-PnPQuery -RetryCount 5", - "Id": 843, - "Rank": 1 + "Rank": 1, + "Id": 843 }, { "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 844, - "Rank": 1 + "Rank": 1, + "Id": 844 }, { "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 845, - "Rank": 2 + "Rank": 2, + "Id": 845 }, { "CommandName": "Invoke-PnPSiteScript", "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Id": 846, - "Rank": 1 + "Rank": 1, + "Id": 846 }, { "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": 847, - "Rank": 1 + "Rank": 1, + "Id": 847 }, { "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": 848, - "Rank": 2 + "Rank": 2, + "Id": 848 }, { "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": 849, - "Rank": 3 + "Rank": 3, + "Id": 849 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Id": 850, - "Rank": 1 + "Rank": 1, + "Id": 850 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Id": 851, - "Rank": 2 + "Rank": 2, + "Id": 851 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 852, - "Rank": 3 + "Rank": 3, + "Id": 852 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Id": 853, - "Rank": 4 + "Rank": 4, + "Id": 853 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Id": 854, - "Rank": 5 + "Rank": 5, + "Id": 854 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Id": 855, - "Rank": 6 + "Rank": 6, + "Id": 855 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Id": 856, - "Rank": 7 + "Rank": 7, + "Id": 856 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Id": 857, - "Rank": 8 + "Rank": 8, + "Id": 857 }, { "CommandName": "Invoke-PnPSPRestMethod", "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Id": 858, - "Rank": 1 + "Rank": 1, + "Id": 858 }, { "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Id": 859, - "Rank": 1 + "Rank": 1, + "Id": 859 }, { "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Id": 860, - "Rank": 2 + "Rank": 2, + "Id": 860 }, { "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 861, - "Rank": 3 + "Rank": 3, + "Id": 861 }, { "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Id": 862, - "Rank": 1 + "Rank": 1, + "Id": 862 }, { "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Id": 863, - "Rank": 2 + "Rank": 2, + "Id": 863 }, { "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\"", - "Id": 864, - "Rank": 1 + "Rank": 1, + "Id": 864 }, { "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Id": 865, - "Rank": 2 + "Rank": 2, + "Id": 865 }, { "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb", - "Id": 866, - "Rank": 1 + "Rank": 1, + "Id": 866 }, { "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb $web -Recursive", - "Id": 867, - "Rank": 2 + "Rank": 2, + "Id": 867 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Id": 868, - "Rank": 1 + "Rank": 1, + "Id": 868 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Id": 869, - "Rank": 2 + "Rank": 2, + "Id": 869 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 870, - "Rank": 3 + "Rank": 3, + "Id": 870 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 871, - "Rank": 4 + "Rank": 4, + "Id": 871 }, { "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Id": 872, - "Rank": 1 + "Rank": 1, + "Id": 872 }, { "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Id": 873, - "Rank": 2 + "Rank": 2, + "Id": 873 }, { "CommandName": "Move-PnPListItemToRecycleBin", "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Id": 874, - "Rank": 1 + "Rank": 1, + "Id": 874 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Id": 875, - "Rank": 1 + "Rank": 1, + "Id": 875 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Id": 876, - "Rank": 2 + "Rank": 2, + "Id": 876 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Id": 877, - "Rank": 3 + "Rank": 3, + "Id": 877 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "Id": 878, - "Rank": 4 + "Rank": 4, + "Id": 878 }, { "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem", - "Id": 879, - "Rank": 1 + "Rank": 1, + "Id": 879 }, { "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Id": 880, - "Rank": 2 + "Rank": 2, + "Id": 880 }, { "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Force", - "Id": 881, - "Rank": 3 + "Rank": 3, + "Id": 881 }, { "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": 882, - "Rank": 1 + "Rank": 1, + "Id": 882 }, { "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Id": 883, - "Rank": 2 + "Rank": 2, + "Id": 883 }, { "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Id": 884, - "Rank": 3 + "Rank": 3, + "Id": 884 }, { "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": 885, - "Rank": 1 + "Rank": 1, + "Id": 885 }, { "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Id": 886, - "Rank": 2 + "Rank": 2, + "Id": 886 }, { "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 887, - "Rank": 1 + "Rank": 1, + "Id": 887 }, { "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Id": 888, - "Rank": 2 + "Rank": 2, + "Id": 888 }, { "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Id": 889, - "Rank": 3 + "Rank": 3, + "Id": 889 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Id": 890, - "Rank": 1 + "Rank": 1, + "Id": 890 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Id": 891, - "Rank": 2 + "Rank": 2, + "Id": 891 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "Id": 892, - "Rank": 3 + "Rank": 3, + "Id": 892 }, { "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Id": 893, - "Rank": 1 + "Rank": 1, + "Id": 893 }, { "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Id": 894, - "Rank": 2 + "Rank": 2, + "Id": 894 }, { "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "Id": 895, - "Rank": 3 + "Rank": 3, + "Id": 895 }, { "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": 896, - "Rank": 1 + "Rank": 1, + "Id": 896 }, { "CommandName": "New-PnPGraphSubscription", "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "Id": 897, - "Rank": 2 + "Rank": 2, + "Id": 897 }, { "CommandName": "New-PnPGroup", "Command": "New-PnPGroup -Title \"My Site Users\"", - "Id": 898, - "Rank": 1 + "Rank": 1, + "Id": 898 }, { "CommandName": "New-PnPList", "Command": "New-PnPList -Title Announcements -Template Announcements", - "Id": 899, - "Rank": 1 + "Rank": 1, + "Id": 899 }, { "CommandName": "New-PnPList", "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Id": 900, - "Rank": 2 + "Rank": 2, + "Id": 900 }, { "CommandName": "New-PnPList", "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Id": 901, - "Rank": 3 + "Rank": 3, + "Id": 901 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 902, - "Rank": 1 + "Rank": 1, + "Id": 902 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "Id": 903, - "Rank": 2 + "Rank": 2, + "Id": 903 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Id": 904, - "Rank": 3 + "Rank": 3, + "Id": 904 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Id": 905, - "Rank": 4 + "Rank": 4, + "Id": 905 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 906, - "Rank": 5 + "Rank": 5, + "Id": 906 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 907, - "Rank": 6 + "Rank": 6, + "Id": 907 }, { "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": 908, - "Rank": 1 + "Rank": 1, + "Id": 908 }, { "CommandName": "New-PnPMicrosoft365GroupSettings", "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "Id": 909, - "Rank": 2 + "Rank": 2, + "Id": 909 }, { "CommandName": "New-PnPPersonalSite", "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Id": 910, - "Rank": 1 + "Rank": 1, + "Id": 910 }, { "CommandName": "New-PnPPlannerPlan", "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Id": 911, - "Rank": 1 + "Rank": 1, + "Id": 911 }, { "CommandName": "New-PnPSdnProvider", "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Id": 912, - "Rank": 1 + "Rank": 1, + "Id": 912 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 913, - "Rank": 1 + "Rank": 1, + "Id": 913 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Id": 914, - "Rank": 2 + "Rank": 2, + "Id": 914 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Id": 915, - "Rank": 3 + "Rank": 3, + "Id": 915 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 916, - "Rank": 4 + "Rank": 4, + "Id": 916 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 917, - "Rank": 5 + "Rank": 5, + "Id": 917 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 918, - "Rank": 6 + "Rank": 6, + "Id": 918 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Id": 919, - "Rank": 7 + "Rank": 7, + "Id": 919 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Id": 920, - "Rank": 8 + "Rank": 8, + "Id": 920 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Id": 921, - "Rank": 9 + "Rank": 9, + "Id": 921 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Id": 922, - "Rank": 10 + "Rank": 10, + "Id": 922 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 923, - "Rank": 11 + "Rank": 11, + "Id": 923 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Id": 924, - "Rank": 12 + "Rank": 12, + "Id": 924 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 925, - "Rank": 13 + "Rank": 13, + "Id": 925 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 926, - "Rank": 14 + "Rank": 14, + "Id": 926 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 927, - "Rank": 15 + "Rank": 15, + "Id": 927 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "Id": 928, - "Rank": 16 + "Rank": 16, + "Id": 928 }, { "CommandName": "New-PnPSiteCollectionTermStore", "Command": "New-PnPSiteCollectionTermStore", - "Id": 929, - "Rank": 1 + "Rank": 1, + "Id": 929 }, { "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Id": 930, - "Rank": 1 + "Rank": 1, + "Id": 930 }, { "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Id": 931, - "Rank": 2 + "Rank": 2, + "Id": 931 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Id": 932, - "Rank": 1 + "Rank": 1, + "Id": 932 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Id": 933, - "Rank": 2 + "Rank": 2, + "Id": 933 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Id": 934, - "Rank": 3 + "Rank": 3, + "Id": 934 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Id": 935, - "Rank": 4 + "Rank": 4, + "Id": 935 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "Id": 936, - "Rank": 5 + "Rank": 5, + "Id": 936 }, { "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": 937, - "Rank": 6 + "Rank": 6, + "Id": 937 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Id": 938, - "Rank": 7 + "Rank": 7, + "Id": 938 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Id": 939, - "Rank": 8 + "Rank": 8, + "Id": 939 }, { "CommandName": "New-PnPTeamsApp", "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Id": 940, - "Rank": 1 + "Rank": 1, + "Id": 940 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Id": 941, - "Rank": 1 + "Rank": 1, + "Id": 941 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Id": 942, - "Rank": 2 + "Rank": 2, + "Id": 942 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Id": 943, - "Rank": 3 + "Rank": 3, + "Id": 943 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 944, - "Rank": 4 + "Rank": 4, + "Id": 944 }, { "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": 945, - "Rank": 5 + "Rank": 5, + "Id": 945 }, { "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": 946, - "Rank": 6 + "Rank": 6, + "Id": 946 }, { "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": 947, - "Rank": 1 + "Rank": 1, + "Id": 947 }, { "CommandName": "New-PnPTenantSite", "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "Id": 948, - "Rank": 2 + "Rank": 2, + "Id": 948 }, { "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Id": 949, - "Rank": 1 + "Rank": 1, + "Id": 949 }, { "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 950, - "Rank": 2 + "Rank": 2, + "Id": 950 }, { "CommandName": "New-PnPTermGroup", "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Id": 951, - "Rank": 1 + "Rank": 1, + "Id": 951 }, { "CommandName": "New-PnPTermLabel", "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Id": 952, - "Rank": 1 + "Rank": 1, + "Id": 952 }, { "CommandName": "New-PnPTermSet", "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Id": 953, - "Rank": 1 + "Rank": 1, + "Id": 953 }, { "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Id": 954, - "Rank": 1 + "Rank": 1, + "Id": 954 }, { "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": 955, - "Rank": 2 + "Rank": 2, + "Id": 955 }, { "CommandName": "New-PnPUser", "Command": "New-PnPUser -LoginName user@company.com", - "Id": 956, - "Rank": 1 + "Rank": 1, + "Id": 956 }, { "CommandName": "New-PnPWeb", "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "Id": 957, - "Rank": 1 + "Rank": 1, + "Id": 957 }, { "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 958, - "Rank": 1 + "Rank": 1, + "Id": 958 }, { "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Id": 959, - "Rank": 2 + "Rank": 2, + "Id": 959 }, { "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": 960, - "Rank": 1 + "Rank": 1, + "Id": 960 }, { "CommandName": "Publish-PnPContentType", "Command": "Publish-PnPContentType -ContentType 0x0101", - "Id": 961, - "Rank": 1 + "Rank": 1, + "Id": 961 }, { "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 962, - "Rank": 1 + "Rank": 1, + "Id": 962 }, { "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": 963, - "Rank": 2 + "Rank": 2, + "Id": 963 }, { "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Id": 964, - "Rank": 1 + "Rank": 1, + "Id": 964 }, { "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Id": 965, - "Rank": 2 + "Rank": 2, + "Id": 965 }, { "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Xml $xml", - "Id": 966, - "Rank": 3 + "Rank": 3, + "Id": 966 }, { "CommandName": "Read-PnPTenantTemplate", "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Id": 967, - "Rank": 1 + "Rank": 1, + "Id": 967 }, { "CommandName": "Register-PnPAppCatalogSite", "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Id": 968, - "Rank": 1 + "Rank": 1, + "Id": 968 }, { "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": 969, - "Rank": 1 + "Rank": 1, + "Id": 969 }, { "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": 970, - "Rank": 2 + "Rank": 2, + "Id": 970 }, { "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": 971, - "Rank": 3 + "Rank": 3, + "Id": 971 }, { "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": 972, - "Rank": 4 + "Rank": 4, + "Id": 972 }, { "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": 973, - "Rank": 5 + "Rank": 5, + "Id": 973 }, { "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": 974, - "Rank": 6 + "Rank": 6, + "Id": 974 }, { "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": 975, - "Rank": 7 + "Rank": 7, + "Id": 975 }, { "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 976, - "Rank": 1 + "Rank": 1, + "Id": 976 }, { "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Id": 977, - "Rank": 2 + "Rank": 2, + "Id": 977 }, { "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess", - "Id": 978, - "Rank": 1 + "Rank": 1, + "Id": 978 }, { "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Id": 979, - "Rank": 2 + "Rank": 2, + "Id": 979 }, { "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Id": 980, - "Rank": 3 + "Rank": 3, + "Id": 980 }, { "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Id": 981, - "Rank": 1 + "Rank": 1, + "Id": 981 }, { "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Id": 982, - "Rank": 2 + "Rank": 2, + "Id": 982 }, { "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Id": 983, - "Rank": 1 + "Rank": 1, + "Id": 983 }, { "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 984, - "Rank": 2 + "Rank": 2, + "Id": 984 }, { "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 985, - "Rank": 1 + "Rank": 1, + "Id": 985 }, { "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 986, - "Rank": 2 + "Rank": 2, + "Id": 986 }, { "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 987, - "Rank": 1 + "Rank": 1, + "Id": 987 }, { "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 988, - "Rank": 2 + "Rank": 2, + "Id": 988 }, { "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Id": 989, - "Rank": 1 + "Rank": 1, + "Id": 989 }, { "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 990, - "Rank": 2 + "Rank": 2, + "Id": 990 }, { "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Id": 991, - "Rank": 1 + "Rank": 1, + "Id": 991 }, { "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 992, - "Rank": 2 + "Rank": 2, + "Id": 992 }, { "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Id": 993, - "Rank": 1 + "Rank": 1, + "Id": 993 }, { "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $group", - "Id": 994, - "Rank": 2 + "Rank": 2, + "Id": 994 }, { "CommandName": "Remove-PnPAzureADGroupMember", "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 995, - "Rank": 1 + "Rank": 1, + "Id": 995 }, { "CommandName": "Remove-PnPAzureADGroupOwner", "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 996, - "Rank": 1 + "Rank": 1, + "Id": 996 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Id": 997, - "Rank": 1 + "Rank": 1, + "Id": 997 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Id": 998, - "Rank": 2 + "Rank": 2, + "Id": 998 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 999, - "Rank": 3 + "Rank": 3, + "Id": 999 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Id": 1000, - "Rank": 4 + "Rank": 4, + "Id": 1000 }, { "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Id": 1001, - "Rank": 1 + "Rank": 1, + "Id": 1001 }, { "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Id": 1002, - "Rank": 2 + "Rank": 2, + "Id": 1002 }, { "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Id": 1003, - "Rank": 1 + "Rank": 1, + "Id": 1003 }, { "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Id": 1004, - "Rank": 2 + "Rank": 2, + "Id": 1004 }, { "CommandName": "Remove-PnPContentTypeFromList", "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Id": 1005, - "Rank": 1 + "Rank": 1, + "Id": 1005 }, { "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1006, - "Rank": 1 + "Rank": 1, + "Id": 1006 }, { "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 1007, - "Rank": 2 + "Rank": 2, + "Id": 1007 }, { "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Id": 1008, - "Rank": 3 + "Rank": 3, + "Id": 1008 }, { "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1009, - "Rank": 1 + "Rank": 1, + "Id": 1009 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1010, - "Rank": 1 + "Rank": 1, + "Id": 1010 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1011, - "Rank": 2 + "Rank": 2, + "Id": 1011 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Id": 1012, - "Rank": 3 + "Rank": 3, + "Id": 1012 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList", - "Id": 1013, - "Rank": 4 + "Rank": 4, + "Id": 1013 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver", - "Id": 1014, - "Rank": 5 + "Rank": 5, + "Id": 1014 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Site", - "Id": 1015, - "Rank": 6 + "Rank": 6, + "Id": 1015 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Web", - "Id": 1016, - "Rank": 7 + "Rank": 7, + "Id": 1016 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope All", - "Id": 1017, - "Rank": 8 + "Rank": 8, + "Id": 1017 }, { "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -Identity \"Speakers\"", - "Id": 1018, - "Rank": 1 + "Rank": 1, + "Id": 1018 }, { "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Id": 1019, - "Rank": 2 + "Rank": 2, + "Id": 1019 }, { "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Id": 1020, - "Rank": 1 + "Rank": 1, + "Id": 1020 }, { "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Id": 1021, - "Rank": 2 + "Rank": 2, + "Id": 1021 }, { "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Id": 1022, - "Rank": 1 + "Rank": 1, + "Id": 1022 }, { "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Id": 1023, - "Rank": 2 + "Rank": 2, + "Id": 1023 }, { "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Id": 1024, - "Rank": 3 + "Rank": 3, + "Id": 1024 }, { "CommandName": "Remove-PnPFileFromSiteTemplate", "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Id": 1025, - "Rank": 1 + "Rank": 1, + "Id": 1025 }, { "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 1026, - "Rank": 1 + "Rank": 1, + "Id": 1026 }, { "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Id": 1027, - "Rank": 2 + "Rank": 2, + "Id": 1027 }, { "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1028, - "Rank": 1 + "Rank": 1, + "Id": 1028 }, { "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1029, - "Rank": 2 + "Rank": 2, + "Id": 1029 }, { "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Id": 1030, - "Rank": 3 + "Rank": 3, + "Id": 1030 }, { "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Id": 1031, - "Rank": 1 + "Rank": 1, + "Id": 1031 }, { "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Id": 1032, - "Rank": 2 + "Rank": 2, + "Id": 1032 }, { "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 1033, - "Rank": 1 + "Rank": 1, + "Id": 1033 }, { "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Id": 1034, - "Rank": 2 + "Rank": 2, + "Id": 1034 }, { "CommandName": "Remove-PnPGraphSubscription", "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Id": 1035, - "Rank": 1 + "Rank": 1, + "Id": 1035 }, { "CommandName": "Remove-PnPGroup", "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Id": 1036, - "Rank": 1 + "Rank": 1, + "Id": 1036 }, { "CommandName": "Remove-PnPGroupMember", "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Id": 1037, - "Rank": 1 + "Rank": 1, + "Id": 1037 }, { "CommandName": "Remove-PnPHomeSite", "Command": "Remove-PnPHomeSite", - "Id": 1038, - "Rank": 1 + "Rank": 1, + "Id": 1038 }, { "CommandName": "Remove-PnPHubSiteAssociation", "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1039, - "Rank": 1 + "Rank": 1, + "Id": 1039 }, { "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Id": 1040, - "Rank": 1 + "Rank": 1, + "Id": 1040 }, { "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Id": 1041, - "Rank": 2 + "Rank": 2, + "Id": 1041 }, { "CommandName": "Remove-PnPIndexedProperty", "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Id": 1042, - "Rank": 1 + "Rank": 1, + "Id": 1042 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Id": 1043, - "Rank": 1 + "Rank": 1, + "Id": 1043 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Id": 1044, - "Rank": 2 + "Rank": 2, + "Id": 1044 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Id": 1045, - "Rank": 3 + "Rank": 3, + "Id": 1045 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Id": 1046, - "Rank": 4 + "Rank": 4, + "Id": 1046 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Id": 1047, - "Rank": 5 + "Rank": 5, + "Id": 1047 }, { "CommandName": "Remove-PnPKnowledgeHubSite", "Command": "Remove-PnPKnowledgeHubSite", - "Id": 1048, - "Rank": 1 + "Rank": 1, + "Id": 1048 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements", - "Id": 1049, - "Rank": 1 + "Rank": 1, + "Id": 1049 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Force", - "Id": 1050, - "Rank": 2 + "Rank": 2, + "Id": 1050 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Id": 1051, - "Rank": 3 + "Rank": 3, + "Id": 1051 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Id": 1052, - "Rank": 4 + "Rank": 4, + "Id": 1052 }, { "CommandName": "Remove-PnPListDesign", "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1053, - "Rank": 1 + "Rank": 1, + "Id": 1053 }, { "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Id": 1054, - "Rank": 1 + "Rank": 1, + "Id": 1054 }, { "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Id": 1055, - "Rank": 2 + "Rank": 2, + "Id": 1055 }, { "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\"", - "Id": 1056, - "Rank": 3 + "Rank": 3, + "Id": 1056 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Id": 1057, - "Rank": 1 + "Rank": 1, + "Id": 1057 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Id": 1058, - "Rank": 2 + "Rank": 2, + "Id": 1058 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Id": 1059, - "Rank": 3 + "Rank": 3, + "Id": 1059 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Id": 1060, - "Rank": 4 + "Rank": 4, + "Id": 1060 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Id": 1061, - "Rank": 5 + "Rank": 5, + "Id": 1061 }, { "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1062, - "Rank": 1 + "Rank": 1, + "Id": 1062 }, { "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1063, - "Rank": 2 + "Rank": 2, + "Id": 1063 }, { "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Id": 1064, - "Rank": 1 + "Rank": 1, + "Id": 1064 }, { "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Id": 1065, - "Rank": 2 + "Rank": 2, + "Id": 1065 }, { "CommandName": "Remove-PnPMicrosoft365GroupMember", "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1066, - "Rank": 1 + "Rank": 1, + "Id": 1066 }, { "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1067, - "Rank": 1 + "Rank": 1, + "Id": 1067 }, { "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Id": 1068, - "Rank": 1 + "Rank": 1, + "Id": 1068 }, { "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Id": 1069, - "Rank": 2 + "Rank": 2, + "Id": 1069 }, { "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Identity 1032", - "Id": 1070, - "Rank": 1 + "Rank": 1, + "Id": 1070 }, { "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Id": 1071, - "Rank": 2 + "Rank": 2, + "Id": 1071 }, { "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Id": 1072, - "Rank": 3 + "Rank": 3, + "Id": 1072 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Id": 1073, - "Rank": 1 + "Rank": 1, + "Id": 1073 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Id": 1074, - "Rank": 2 + "Rank": 2, + "Id": 1074 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Id": 1075, - "Rank": 3 + "Rank": 3, + "Id": 1075 }, { "CommandName": "Remove-PnPOrgNewsSite", "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1076, - "Rank": 1 + "Rank": 1, + "Id": 1076 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Id": 1077, - "Rank": 1 + "Rank": 1, + "Id": 1077 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Id": 1078, - "Rank": 2 + "Rank": 2, + "Id": 1078 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage $page", - "Id": 1079, - "Rank": 3 + "Rank": 3, + "Id": 1079 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Id": 1080, - "Rank": 4 + "Rank": 4, + "Id": 1080 }, { "CommandName": "Remove-PnPPageComponent", "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1081, - "Rank": 1 + "Rank": 1, + "Id": 1081 }, { "CommandName": "Remove-PnPPlannerBucket", "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Id": 1082, - "Rank": 1 + "Rank": 1, + "Id": 1082 }, { "CommandName": "Remove-PnPPlannerPlan", "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Id": 1083, - "Rank": 1 + "Rank": 1, + "Id": 1083 }, { "CommandName": "Remove-PnPPlannerRoster", "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Id": 1084, - "Rank": 1 + "Rank": 1, + "Id": 1084 }, { "CommandName": "Remove-PnPPlannerRosterMember", "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1085, - "Rank": 1 + "Rank": 1, + "Id": 1085 }, { "CommandName": "Remove-PnPPlannerTask", "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Id": 1086, - "Rank": 1 + "Rank": 1, + "Id": 1086 }, { "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Id": 1087, - "Rank": 1 + "Rank": 1, + "Id": 1087 }, { "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Id": 1088, - "Rank": 2 + "Rank": 2, + "Id": 1088 }, { "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Id": 1089, - "Rank": 3 + "Rank": 3, + "Id": 1089 }, { "CommandName": "Remove-PnPPublishingImageRendition", "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Id": 1090, - "Rank": 1 + "Rank": 1, + "Id": 1090 }, { "CommandName": "Remove-PnPRoleDefinition", "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Id": 1091, - "Rank": 1 + "Rank": 1, + "Id": 1091 }, { "CommandName": "Remove-PnPSdnProvider", "Command": "Remove-PnPSdnProvider -Confirm:false", - "Id": 1092, - "Rank": 1 + "Rank": 1, + "Id": 1092 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Id": 1093, - "Rank": 1 + "Rank": 1, + "Id": 1093 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1094, - "Rank": 2 + "Rank": 2, + "Id": 1094 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1095, - "Rank": 3 + "Rank": 3, + "Id": 1095 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1096, - "Rank": 4 + "Rank": 4, + "Id": 1096 }, { "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1097, - "Rank": 1 + "Rank": 1, + "Id": 1097 }, { "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1098, - "Rank": 2 + "Rank": 2, + "Id": 1098 }, { "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Id": 1099, - "Rank": 1 + "Rank": 1, + "Id": 1099 }, { "CommandName": "Remove-PnPSiteCollectionTermStore", "Command": "Remove-PnPSiteCollectionTermStore", - "Id": 1100, - "Rank": 1 + "Rank": 1, + "Id": 1100 }, { "CommandName": "Remove-PnPSiteDesign", "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1101, - "Rank": 1 + "Rank": 1, + "Id": 1101 }, { "CommandName": "Remove-PnPSiteDesignTask", "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1102, - "Rank": 1 + "Rank": 1, + "Id": 1102 }, { "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1103, - "Rank": 1 + "Rank": 1, + "Id": 1103 }, { "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Id": 1104, - "Rank": 2 + "Rank": 2, + "Id": 1104 }, { "CommandName": "Remove-PnPSiteScript", "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1105, - "Rank": 1 + "Rank": 1, + "Id": 1105 }, { "CommandName": "Remove-PnPSiteUserInvitations", "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Id": 1106, - "Rank": 1 + "Rank": 1, + "Id": 1106 }, { "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey", - "Id": 1107, - "Rank": 1 + "Rank": 1, + "Id": 1107 }, { "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Id": 1108, - "Rank": 2 + "Rank": 2, + "Id": 1108 }, { "CommandName": "Remove-PnPStoredCredential", "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Id": 1109, - "Rank": 1 + "Rank": 1, + "Id": 1109 }, { "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Id": 1110, - "Rank": 1 + "Rank": 1, + "Id": 1110 }, { "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Id": 1111, - "Rank": 2 + "Rank": 2, + "Id": 1111 }, { "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Id": 1112, - "Rank": 1 + "Rank": 1, + "Id": 1112 }, { "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Id": 1113, - "Rank": 2 + "Rank": 2, + "Id": 1113 }, { "CommandName": "Remove-PnPTeamsChannel", "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Id": 1114, - "Rank": 1 + "Rank": 1, + "Id": 1114 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Id": 1115, - "Rank": 1 + "Rank": 1, + "Id": 1115 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Id": 1116, - "Rank": 2 + "Rank": 2, + "Id": 1116 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Id": 1117, - "Rank": 3 + "Rank": 3, + "Id": 1117 }, { "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Id": 1118, - "Rank": 1 + "Rank": 1, + "Id": 1118 }, { "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Id": 1119, - "Rank": 2 + "Rank": 2, + "Id": 1119 }, { "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", - "Id": 1120, - "Rank": 3 + "Rank": 3, + "Id": 1120 }, { "CommandName": "Remove-PnPTeamsTag", "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Id": 1121, - "Rank": 1 + "Rank": 1, + "Id": 1121 }, { "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Id": 1122, - "Rank": 1 + "Rank": 1, + "Id": 1122 }, { "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Id": 1123, - "Rank": 2 + "Rank": 2, + "Id": 1123 }, { "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Id": 1124, - "Rank": 1 + "Rank": 1, + "Id": 1124 }, { "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1125, - "Rank": 2 + "Rank": 2, + "Id": 1125 }, { "CommandName": "Remove-PnPTenantCdnOrigin", "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Id": 1126, - "Rank": 1 + "Rank": 1, + "Id": 1126 }, { "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1127, - "Rank": 1 + "Rank": 1, + "Id": 1127 }, { "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1128, - "Rank": 2 + "Rank": 2, + "Id": 1128 }, { "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1129, - "Rank": 1 + "Rank": 1, + "Id": 1129 }, { "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Id": 1130, - "Rank": 2 + "Rank": 2, + "Id": 1130 }, { "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Id": 1131, - "Rank": 3 + "Rank": 3, + "Id": 1131 }, { "CommandName": "Remove-PnPTenantSyncClientRestriction", "Command": "Remove-PnPTenantSyncClientRestriction", - "Id": 1132, - "Rank": 1 + "Rank": 1, + "Id": 1132 }, { "CommandName": "Remove-PnPTenantTheme", "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Id": 1133, - "Rank": 1 + "Rank": 1, + "Id": 1133 }, { "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1134, - "Rank": 1 + "Rank": 1, + "Id": 1134 }, { "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1135, - "Rank": 2 + "Rank": 2, + "Id": 1135 }, { "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1136, - "Rank": 1 + "Rank": 1, + "Id": 1136 }, { "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Id": 1137, - "Rank": 2 + "Rank": 2, + "Id": 1137 }, { "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Id": 1138, - "Rank": 3 + "Rank": 3, + "Id": 1138 }, { "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Id": 1139, - "Rank": 1 + "Rank": 1, + "Id": 1139 }, { "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1140, - "Rank": 2 + "Rank": 2, + "Id": 1140 }, { "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity 23", - "Id": 1141, - "Rank": 1 + "Rank": 1, + "Id": 1141 }, { "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Id": 1142, - "Rank": 2 + "Rank": 2, + "Id": 1142 }, { "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Id": 1143, - "Rank": 3 + "Rank": 3, + "Id": 1143 }, { "CommandName": "Remove-PnPUserInfo", "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Id": 1144, - "Rank": 1 + "Rank": 1, + "Id": 1144 }, { "CommandName": "Remove-PnPUserProfile", "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Id": 1145, - "Rank": 1 + "Rank": 1, + "Id": 1145 }, { "CommandName": "Remove-PnPView", "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Id": 1146, - "Rank": 1 + "Rank": 1, + "Id": 1146 }, { "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Id": 1147, - "Rank": 1 + "Rank": 1, + "Id": 1147 }, { "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity projectA", - "Id": 1148, - "Rank": 1 + "Rank": 1, + "Id": 1148 }, { "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Id": 1149, - "Rank": 2 + "Rank": 2, + "Id": 1149 }, { "CommandName": "Remove-PnPWebhookSubscription", "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Id": 1150, - "Rank": 1 + "Rank": 1, + "Id": 1150 }, { "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1151, - "Rank": 1 + "Rank": 1, + "Id": 1151 }, { "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Id": 1152, - "Rank": 2 + "Rank": 2, + "Id": 1152 }, { "CommandName": "Remove-PnPWikiPage", "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Id": 1153, - "Rank": 1 + "Rank": 1, + "Id": 1153 }, { "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Id": 1154, - "Rank": 1 + "Rank": 1, + "Id": 1154 }, { "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Id": 1155, - "Rank": 2 + "Rank": 2, + "Id": 1155 }, { "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Id": 1156, - "Rank": 3 + "Rank": 3, + "Id": 1156 }, { "CommandName": "Rename-PnPFolder", "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Id": 1157, - "Rank": 1 + "Rank": 1, + "Id": 1157 }, { "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1158, - "Rank": 1 + "Rank": 1, + "Id": 1158 }, { "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1159, - "Rank": 2 + "Rank": 2, + "Id": 1159 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken", - "Id": 1160, - "Rank": 1 + "Rank": 1, + "Id": 1160 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Id": 1161, - "Rank": 2 + "Rank": 2, + "Id": 1161 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Id": 1162, - "Rank": 3 + "Rank": 3, + "Id": 1162 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Id": 1163, - "Rank": 4 + "Rank": 4, + "Id": 1163 }, { "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Id": 1164, - "Rank": 1 + "Rank": 1, + "Id": 1164 }, { "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Id": 1165, - "Rank": 2 + "Rank": 2, + "Id": 1165 }, { "CommandName": "Request-PnPReIndexList", "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Id": 1166, - "Rank": 1 + "Rank": 1, + "Id": 1166 }, { "CommandName": "Request-PnPReIndexWeb", "Command": "Request-PnPReIndexWeb", - "Id": 1167, - "Rank": 1 + "Rank": 1, + "Id": 1167 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Id": 1168, - "Rank": 1 + "Rank": 1, + "Id": 1168 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Id": 1169, - "Rank": 2 + "Rank": 2, + "Id": 1169 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Id": 1170, - "Rank": 3 + "Rank": 3, + "Id": 1170 }, { "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Id": 1171, - "Rank": 1 + "Rank": 1, + "Id": 1171 }, { "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Id": 1172, - "Rank": 2 + "Rank": 2, + "Id": 1172 }, { "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\"", - "Id": 1173, - "Rank": 1 + "Rank": 1, + "Id": 1173 }, { "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Id": 1174, - "Rank": 2 + "Rank": 2, + "Id": 1174 }, { "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1175, - "Rank": 1 + "Rank": 1, + "Id": 1175 }, { "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Id": 1176, - "Rank": 1 + "Rank": 1, + "Id": 1176 }, { "CommandName": "Resolve-PnPFolder", "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Id": 1177, - "Rank": 1 + "Rank": 1, + "Id": 1177 }, { "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1178, - "Rank": 1 + "Rank": 1, + "Id": 1178 }, { "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1179, - "Rank": 1 + "Rank": 1, + "Id": 1179 }, { "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Id": 1180, - "Rank": 2 + "Rank": 2, + "Id": 1180 }, { "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1181, - "Rank": 3 + "Rank": 3, + "Id": 1181 }, { "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1182, - "Rank": 1 + "Rank": 1, + "Id": 1182 }, { "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1183, - "Rank": 2 + "Rank": 2, + "Id": 1183 }, { "CommandName": "Restore-PnPRecycleBinItem", "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Id": 1184, - "Rank": 1 + "Rank": 1, + "Id": 1184 }, { "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1185, - "Rank": 1 + "Rank": 1, + "Id": 1185 }, { "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Id": 1186, - "Rank": 2 + "Rank": 2, + "Id": 1186 }, { "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1187, - "Rank": 1 + "Rank": 1, + "Id": 1187 }, { "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1188, - "Rank": 2 + "Rank": 2, + "Id": 1188 }, { "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Id": 1189, - "Rank": 3 + "Rank": 3, + "Id": 1189 }, { "CommandName": "Revoke-PnPAzureADAppSitePermission", "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Id": 1190, - "Rank": 1 + "Rank": 1, + "Id": 1190 }, { "CommandName": "Revoke-PnPHubSiteRights", "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1191, - "Rank": 1 + "Rank": 1, + "Id": 1191 }, { "CommandName": "Revoke-PnPSiteDesignRights", "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1192, - "Rank": 1 + "Rank": 1, + "Id": 1192 }, { "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 1193, - "Rank": 1 + "Rank": 1, + "Id": 1193 }, { "CommandName": "Revoke-PnPUserSession", "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Id": 1194, - "Rank": 1 + "Rank": 1, + "Id": 1194 }, { "CommandName": "Save-PnPPageConversionLog", "Command": "Save-PnPPageConversionLog", - "Id": 1195, - "Rank": 1 + "Rank": 1, + "Id": 1195 }, { "CommandName": "Save-PnPSiteTemplate", "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Id": 1196, - "Rank": 1 + "Rank": 1, + "Id": 1196 }, { "CommandName": "Save-PnPTenantTemplate", "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Id": 1197, - "Rank": 1 + "Rank": 1, + "Id": 1197 }, { "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": 1198, - "Rank": 1 + "Rank": 1, + "Id": 1198 }, { "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": 1199, - "Rank": 2 + "Rank": 2, + "Id": 1199 }, { "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Id": 1200, - "Rank": 3 + "Rank": 3, + "Id": 1200 }, { "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": 1201, - "Rank": 4 + "Rank": 4, + "Id": 1201 }, { "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": 1202, - "Rank": 5 + "Rank": 5, + "Id": 1202 }, { "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": 1203, - "Rank": 6 + "Rank": 6, + "Id": 1203 }, { "CommandName": "Set-PnPAdaptiveScopeProperty", "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Id": 1204, - "Rank": 1 + "Rank": 1, + "Id": 1204 }, { "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1205, - "Rank": 1 + "Rank": 1, + "Id": 1205 }, { "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "Id": 1206, - "Rank": 2 + "Rank": 2, + "Id": 1206 }, { "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -On", - "Id": 1207, - "Rank": 1 + "Rank": 1, + "Id": 1207 }, { "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -Off", - "Id": 1208, - "Rank": 2 + "Rank": 2, + "Id": 1208 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -EnableAll", - "Id": 1209, - "Rank": 1 + "Rank": 1, + "Id": 1209 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -DisableAll", - "Id": 1210, - "Rank": 2 + "Rank": 2, + "Id": 1210 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7", - "Id": 1211, - "Rank": 3 + "Rank": 3, + "Id": 1211 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -TrimAuditLog", - "Id": 1212, - "Rank": 4 + "Rank": 4, + "Id": 1212 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Id": 1213, - "Rank": 5 + "Rank": 5, + "Id": 1213 }, { "CommandName": "Set-PnPAvailablePageLayouts", "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Id": 1214, - "Rank": 1 + "Rank": 1, + "Id": 1214 }, { "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Id": 1215, - "Rank": 1 + "Rank": 1, + "Id": 1215 }, { "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Id": 1216, - "Rank": 2 + "Rank": 2, + "Id": 1216 }, { "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1217, - "Rank": 1 + "Rank": 1, + "Id": 1217 }, { "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1218, - "Rank": 2 + "Rank": 2, + "Id": 1218 }, { "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Id": 1219, - "Rank": 3 + "Rank": 3, + "Id": 1219 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Id": 1220, - "Rank": 1 + "Rank": 1, + "Id": 1220 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Id": 1221, - "Rank": 2 + "Rank": 2, + "Id": 1221 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Id": 1222, - "Rank": 3 + "Rank": 3, + "Id": 1222 }, { "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Id": 1223, - "Rank": 1 + "Rank": 1, + "Id": 1223 }, { "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Id": 1224, - "Rank": 2 + "Rank": 2, + "Id": 1224 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Id": 1225, - "Rank": 1 + "Rank": 1, + "Id": 1225 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Id": 1226, - "Rank": 2 + "Rank": 2, + "Id": 1226 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Id": 1227, - "Rank": 3 + "Rank": 3, + "Id": 1227 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Id": 1228, - "Rank": 4 + "Rank": 4, + "Id": 1228 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1229, - "Rank": 1 + "Rank": 1, + "Id": 1229 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Id": 1230, - "Rank": 2 + "Rank": 2, + "Id": 1230 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1231, - "Rank": 3 + "Rank": 3, + "Id": 1231 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1232, - "Rank": 4 + "Rank": 4, + "Id": 1232 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1233, - "Rank": 5 + "Rank": 5, + "Id": 1233 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Id": 1234, - "Rank": 1 + "Rank": 1, + "Id": 1234 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Id": 1235, - "Rank": 2 + "Rank": 2, + "Id": 1235 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Id": 1236, - "Rank": 3 + "Rank": 3, + "Id": 1236 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Id": 1237, - "Rank": 4 + "Rank": 4, + "Id": 1237 }, { "CommandName": "Set-PnPDefaultContentTypeToList", "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Id": 1238, - "Rank": 1 + "Rank": 1, + "Id": 1238 }, { "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Id": 1239, - "Rank": 1 + "Rank": 1, + "Id": 1239 }, { "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Id": 1240, - "Rank": 2 + "Rank": 2, + "Id": 1240 }, { "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Id": 1241, - "Rank": 3 + "Rank": 3, + "Id": 1241 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Id": 1242, - "Rank": 1 + "Rank": 1, + "Id": 1242 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1243, - "Rank": 2 + "Rank": 2, + "Id": 1243 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1244, - "Rank": 3 + "Rank": 3, + "Id": 1244 }, { "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Id": 1245, - "Rank": 1 + "Rank": 1, + "Id": 1245 }, { "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Id": 1246, - "Rank": 2 + "Rank": 2, + "Id": 1246 }, { "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Id": 1247, - "Rank": 1 + "Rank": 1, + "Id": 1247 }, { "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Id": 1248, - "Rank": 2 + "Rank": 2, + "Id": 1248 }, { "CommandName": "Set-PnPField", "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Id": 1249, - "Rank": 3 + "Rank": 3, + "Id": 1249 }, { "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Id": 1250, - "Rank": 1 + "Rank": 1, + "Id": 1250 }, { "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Id": 1251, - "Rank": 2 + "Rank": 2, + "Id": 1251 }, { "CommandName": "Set-PnPFileCheckedOut", "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Id": 1252, - "Rank": 1 + "Rank": 1, + "Id": 1252 }, { "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1253, - "Rank": 1 + "Rank": 1, + "Id": 1253 }, { "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1254, - "Rank": 2 + "Rank": 2, + "Id": 1254 }, { "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1255, - "Rank": 3 + "Rank": 3, + "Id": 1255 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true", - "Id": 1256, - "Rank": 1 + "Rank": 1, + "Id": 1256 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Id": 1257, - "Rank": 2 + "Rank": 2, + "Id": 1257 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Id": 1258, - "Rank": 3 + "Rank": 3, + "Id": 1258 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -LogoUrl \"\"", - "Id": 1259, - "Rank": 4 + "Rank": 4, + "Id": 1259 }, { "CommandName": "Set-PnPGraphSubscription", "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Id": 1260, - "Rank": 1 + "Rank": 1, + "Id": 1260 }, { "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Id": 1261, - "Rank": 1 + "Rank": 1, + "Id": 1261 }, { "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Id": 1262, - "Rank": 2 + "Rank": 2, + "Id": 1262 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Id": 1263, - "Rank": 1 + "Rank": 1, + "Id": 1263 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Id": 1264, - "Rank": 2 + "Rank": 2, + "Id": 1264 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Id": 1265, - "Rank": 3 + "Rank": 3, + "Id": 1265 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Id": 1266, - "Rank": 4 + "Rank": 4, + "Id": 1266 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Id": 1267, - "Rank": 5 + "Rank": 5, + "Id": 1267 }, { "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Id": 1268, - "Rank": 1 + "Rank": 1, + "Id": 1268 }, { "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Id": 1269, - "Rank": 2 + "Rank": 2, + "Id": 1269 }, { "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Id": 1270, - "Rank": 1 + "Rank": 1, + "Id": 1270 }, { "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Id": 1271, - "Rank": 2 + "Rank": 2, + "Id": 1271 }, { "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Id": 1272, - "Rank": 1 + "Rank": 1, + "Id": 1272 }, { "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Id": 1273, - "Rank": 2 + "Rank": 2, + "Id": 1273 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Id": 1274, - "Rank": 1 + "Rank": 1, + "Id": 1274 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Id": 1275, - "Rank": 2 + "Rank": 2, + "Id": 1275 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Id": 1276, - "Rank": 3 + "Rank": 3, + "Id": 1276 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "Id": 1277, - "Rank": 4 + "Rank": 4, + "Id": 1277 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Id": 1278, - "Rank": 5 + "Rank": 5, + "Id": 1278 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Id": 1279, - "Rank": 6 + "Rank": 6, + "Id": 1279 }, { "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Id": 1280, - "Rank": 1 + "Rank": 1, + "Id": 1280 }, { "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Id": 1281, - "Rank": 2 + "Rank": 2, + "Id": 1281 }, { "CommandName": "Set-PnPIndexedProperties", "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Id": 1282, - "Rank": 1 + "Rank": 1, + "Id": 1282 }, { "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Id": 1283, - "Rank": 1 + "Rank": 1, + "Id": 1283 }, { "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Id": 1284, - "Rank": 2 + "Rank": 2, + "Id": 1284 }, { "CommandName": "Set-PnPKnowledgeHubSite", "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Id": 1285, - "Rank": 1 + "Rank": 1, + "Id": 1285 }, { "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Id": 1286, - "Rank": 1 + "Rank": 1, + "Id": 1286 }, { "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Id": 1287, - "Rank": 2 + "Rank": 2, + "Id": 1287 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Id": 1288, - "Rank": 1 + "Rank": 1, + "Id": 1288 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Id": 1289, - "Rank": 2 + "Rank": 2, + "Id": 1289 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Id": 1290, - "Rank": 3 + "Rank": 3, + "Id": 1290 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Id": 1291, - "Rank": 4 + "Rank": 4, + "Id": 1291 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Id": 1292, - "Rank": 5 + "Rank": 5, + "Id": 1292 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Id": 1293, - "Rank": 6 + "Rank": 6, + "Id": 1293 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Id": 1294, - "Rank": 7 + "Rank": 7, + "Id": 1294 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Id": 1295, - "Rank": 8 + "Rank": 8, + "Id": 1295 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Id": 1296, - "Rank": 9 + "Rank": 9, + "Id": 1296 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Id": 1297, - "Rank": 10 + "Rank": 10, + "Id": 1297 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Id": 1298, - "Rank": 11 + "Rank": 11, + "Id": 1298 }, { "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Id": 1299, - "Rank": 1 + "Rank": 1, + "Id": 1299 }, { "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Id": 1300, - "Rank": 2 + "Rank": 2, + "Id": 1300 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1301, - "Rank": 1 + "Rank": 1, + "Id": 1301 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1302, - "Rank": 2 + "Rank": 2, + "Id": 1302 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1303, - "Rank": 3 + "Rank": 3, + "Id": 1303 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Id": 1304, - "Rank": 4 + "Rank": 4, + "Id": 1304 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Id": 1305, - "Rank": 5 + "Rank": 5, + "Id": 1305 }, { "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Id": 1306, - "Rank": 1 + "Rank": 1, + "Id": 1306 }, { "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Id": 1307, - "Rank": 2 + "Rank": 2, + "Id": 1307 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1308, - "Rank": 1 + "Rank": 1, + "Id": 1308 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1309, - "Rank": 2 + "Rank": 2, + "Id": 1309 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1310, - "Rank": 3 + "Rank": 3, + "Id": 1310 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Id": 1311, - "Rank": 4 + "Rank": 4, + "Id": 1311 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Id": 1312, - "Rank": 5 + "Rank": 5, + "Id": 1312 }, { "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1313, - "Rank": 1 + "Rank": 1, + "Id": 1313 }, { "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1314, - "Rank": 2 + "Rank": 2, + "Id": 1314 }, { "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Id": 1315, - "Rank": 1 + "Rank": 1, + "Id": 1315 }, { "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Id": 1316, - "Rank": 2 + "Rank": 2, + "Id": 1316 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1317, - "Rank": 1 + "Rank": 1, + "Id": 1317 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1318, - "Rank": 2 + "Rank": 2, + "Id": 1318 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1319, - "Rank": 3 + "Rank": 3, + "Id": 1319 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1320, - "Rank": 4 + "Rank": 4, + "Id": 1320 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Id": 1321, - "Rank": 1 + "Rank": 1, + "Id": 1321 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1322, - "Rank": 2 + "Rank": 2, + "Id": 1322 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1323, - "Rank": 3 + "Rank": 3, + "Id": 1323 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Id": 1324, - "Rank": 1 + "Rank": 1, + "Id": 1324 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1325, - "Rank": 2 + "Rank": 2, + "Id": 1325 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1326, - "Rank": 3 + "Rank": 3, + "Id": 1326 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Id": 1327, - "Rank": 1 + "Rank": 1, + "Id": 1327 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1328, - "Rank": 2 + "Rank": 2, + "Id": 1328 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1329, - "Rank": 3 + "Rank": 3, + "Id": 1329 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Id": 1330, - "Rank": 1 + "Rank": 1, + "Id": 1330 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1331, - "Rank": 2 + "Rank": 2, + "Id": 1331 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1332, - "Rank": 3 + "Rank": 3, + "Id": 1332 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Id": 1333, - "Rank": 1 + "Rank": 1, + "Id": 1333 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Id": 1334, - "Rank": 2 + "Rank": 2, + "Id": 1334 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1335, - "Rank": 3 + "Rank": 3, + "Id": 1335 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Id": 1336, - "Rank": 1 + "Rank": 1, + "Id": 1336 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Id": 1337, - "Rank": 2 + "Rank": 2, + "Id": 1337 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1338, - "Rank": 3 + "Rank": 3, + "Id": 1338 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1339, - "Rank": 1 + "Rank": 1, + "Id": 1339 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1340, - "Rank": 2 + "Rank": 2, + "Id": 1340 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Id": 1341, - "Rank": 3 + "Rank": 3, + "Id": 1341 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Id": 1342, - "Rank": 4 + "Rank": 4, + "Id": 1342 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Id": 1343, - "Rank": 5 + "Rank": 5, + "Id": 1343 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 1344, - "Rank": 6 + "Rank": 6, + "Id": 1344 }, { "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Id": 1345, - "Rank": 1 + "Rank": 1, + "Id": 1345 }, { "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Id": 1346, - "Rank": 2 + "Rank": 2, + "Id": 1346 }, { "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Id": 1347, - "Rank": 1 + "Rank": 1, + "Id": 1347 }, { "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -On", - "Id": 1348, - "Rank": 2 + "Rank": 2, + "Id": 1348 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Id": 1349, - "Rank": 1 + "Rank": 1, + "Id": 1349 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Id": 1350, - "Rank": 2 + "Rank": 2, + "Id": 1350 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Id": 1351, - "Rank": 3 + "Rank": 3, + "Id": 1351 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Id": 1352, - "Rank": 4 + "Rank": 4, + "Id": 1352 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Id": 1353, - "Rank": 5 + "Rank": 5, + "Id": 1353 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "Id": 1354, - "Rank": 6 + "Rank": 6, + "Id": 1354 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Id": 1355, - "Rank": 7 + "Rank": 7, + "Id": 1355 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Name \"NewPage\" -Translate", - "Id": 1356, - "Rank": 8 + "Rank": 8, + "Id": 1356 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Id": 1357, - "Rank": 9 + "Rank": 9, + "Id": 1357 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Id": 1358, - "Rank": 10 + "Rank": 10, + "Id": 1358 }, { "CommandName": "Set-PnPPageTextPart", "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Id": 1359, - "Rank": 1 + "Rank": 1, + "Id": 1359 }, { "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Id": 1360, - "Rank": 1 + "Rank": 1, + "Id": 1360 }, { "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Id": 1361, - "Rank": 2 + "Rank": 2, + "Id": 1361 }, { "CommandName": "Set-PnPPlannerBucket", "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Id": 1362, - "Rank": 1 + "Rank": 1, + "Id": 1362 }, { "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Id": 1363, - "Rank": 1 + "Rank": 1, + "Id": 1363 }, { "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Id": 1364, - "Rank": 2 + "Rank": 2, + "Id": 1364 }, { "CommandName": "Set-PnPPlannerPlan", "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Id": 1365, - "Rank": 1 + "Rank": 1, + "Id": 1365 }, { "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Id": 1366, - "Rank": 1 + "Rank": 1, + "Id": 1366 }, { "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Id": 1367, - "Rank": 2 + "Rank": 2, + "Id": 1367 }, { "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Id": 1368, - "Rank": 3 + "Rank": 3, + "Id": 1368 }, { "CommandName": "Set-PnPPlannerUserPolicy", "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1369, - "Rank": 1 + "Rank": 1, + "Id": 1369 }, { "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Id": 1370, - "Rank": 1 + "Rank": 1, + "Id": 1370 }, { "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Id": 1371, - "Rank": 2 + "Rank": 2, + "Id": 1371 }, { "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Id": 1372, - "Rank": 3 + "Rank": 3, + "Id": 1372 }, { "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Id": 1373, - "Rank": 1 + "Rank": 1, + "Id": 1373 }, { "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled", - "Id": 1374, - "Rank": 2 + "Rank": 2, + "Id": 1374 }, { "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Id": 1375, - "Rank": 3 + "Rank": 3, + "Id": 1375 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Id": 1376, - "Rank": 1 + "Rank": 1, + "Id": 1376 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Id": 1377, - "Rank": 2 + "Rank": 2, + "Id": 1377 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Id": 1378, - "Rank": 3 + "Rank": 3, + "Id": 1378 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Id": 1379, - "Rank": 4 + "Rank": 4, + "Id": 1379 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Id": 1380, - "Rank": 1 + "Rank": 1, + "Id": 1380 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1381, - "Rank": 2 + "Rank": 2, + "Id": 1381 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1382, - "Rank": 3 + "Rank": 3, + "Id": 1382 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1383, - "Rank": 4 + "Rank": 4, + "Id": 1383 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Id": 1384, - "Rank": 1 + "Rank": 1, + "Id": 1384 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Id": 1385, - "Rank": 2 + "Rank": 2, + "Id": 1385 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Id": 1386, - "Rank": 3 + "Rank": 3, + "Id": 1386 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Id": 1387, - "Rank": 4 + "Rank": 4, + "Id": 1387 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Id": 1388, - "Rank": 5 + "Rank": 5, + "Id": 1388 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Id": 1389, - "Rank": 6 + "Rank": 6, + "Id": 1389 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Id": 1390, - "Rank": 7 + "Rank": 7, + "Id": 1390 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification \"HBI\"", - "Id": 1391, - "Rank": 1 + "Rank": 1, + "Id": 1391 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification $null", - "Id": 1392, - "Rank": 2 + "Rank": 2, + "Id": 1392 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows", - "Id": 1393, - "Rank": 3 + "Rank": 3, + "Id": 1393 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows:$false", - "Id": 1394, - "Rank": 4 + "Rank": 4, + "Id": 1394 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Id": 1395, - "Rank": 5 + "Rank": 5, + "Id": 1395 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -NoScriptSite $false", - "Id": 1396, - "Rank": 6 + "Rank": 6, + "Id": 1396 }, { "CommandName": "Set-PnPSiteClassification", "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Id": 1397, - "Rank": 1 + "Rank": 1, + "Id": 1397 }, { "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Open", - "Id": 1398, - "Rank": 1 + "Rank": 1, + "Id": 1398 }, { "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Closed", - "Id": 1399, - "Rank": 2 + "Rank": 2, + "Id": 1399 }, { "CommandName": "Set-PnPSiteDesign", "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Id": 1400, - "Rank": 1 + "Rank": 1, + "Id": 1400 }, { "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": 1401, - "Rank": 2 + "Rank": 2, + "Id": 1401 }, { "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Id": 1402, - "Rank": 1 + "Rank": 1, + "Id": 1402 }, { "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Id": 1403, - "Rank": 2 + "Rank": 2, + "Id": 1403 }, { "CommandName": "Set-PnPSitePolicy", "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Id": 1404, - "Rank": 1 + "Rank": 1, + "Id": 1404 }, { "CommandName": "Set-PnPSiteScript", "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1405, - "Rank": 1 + "Rank": 1, + "Id": 1405 }, { "CommandName": "Set-PnPSiteScriptPackage", "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1406, - "Rank": 1 + "Rank": 1, + "Id": 1406 }, { "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Id": 1407, - "Rank": 1 + "Rank": 1, + "Id": 1407 }, { "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Id": 1408, - "Rank": 2 + "Rank": 2, + "Id": 1408 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1409, - "Rank": 1 + "Rank": 1, + "Id": 1409 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1410, - "Rank": 2 + "Rank": 2, + "Id": 1410 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1411, - "Rank": 3 + "Rank": 3, + "Id": 1411 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1412, - "Rank": 4 + "Rank": 4, + "Id": 1412 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1413, - "Rank": 5 + "Rank": 5, + "Id": 1413 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1414, - "Rank": 6 + "Rank": 6, + "Id": 1414 }, { "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1415, - "Rank": 1 + "Rank": 1, + "Id": 1415 }, { "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1416, - "Rank": 2 + "Rank": 2, + "Id": 1416 }, { "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1417, - "Rank": 1 + "Rank": 1, + "Id": 1417 }, { "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1418, - "Rank": 2 + "Rank": 2, + "Id": 1418 }, { "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1419, - "Rank": 1 + "Rank": 1, + "Id": 1419 }, { "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1420, - "Rank": 2 + "Rank": 2, + "Id": 1420 }, { "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Id": 1421, - "Rank": 1 + "Rank": 1, + "Id": 1421 }, { "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Id": 1422, - "Rank": 2 + "Rank": 2, + "Id": 1422 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Id": 1423, - "Rank": 1 + "Rank": 1, + "Id": 1423 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Id": 1424, - "Rank": 2 + "Rank": 2, + "Id": 1424 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Id": 1425, - "Rank": 3 + "Rank": 3, + "Id": 1425 }, { "CommandName": "Set-PnPTeamifyPromptHidden", "Command": "Set-PnPTeamifyPromptHidden", - "Id": 1426, - "Rank": 1 + "Rank": 1, + "Id": 1426 }, { "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Id": 1427, - "Rank": 1 + "Rank": 1, + "Id": 1427 }, { "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Id": 1428, - "Rank": 2 + "Rank": 2, + "Id": 1428 }, { "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "Id": 1429, - "Rank": 1 + "Rank": 1, + "Id": 1429 }, { "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Id": 1430, - "Rank": 2 + "Rank": 2, + "Id": 1430 }, { "CommandName": "Set-PnPTeamsTab", "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Id": 1431, - "Rank": 1 + "Rank": 1, + "Id": 1431 }, { "CommandName": "Set-PnPTeamsTag", "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Id": 1432, - "Rank": 1 + "Rank": 1, + "Id": 1432 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Id": 1433, - "Rank": 1 + "Rank": 1, + "Id": 1433 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Id": 1434, - "Rank": 2 + "Rank": 2, + "Id": 1434 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Id": 1435, - "Rank": 3 + "Rank": 3, + "Id": 1435 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Id": 1436, - "Rank": 4 + "Rank": 4, + "Id": 1436 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Id": 1437, - "Rank": 1 + "Rank": 1, + "Id": 1437 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Id": 1438, - "Rank": 2 + "Rank": 2, + "Id": 1438 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Id": 1439, - "Rank": 3 + "Rank": 3, + "Id": 1439 }, { "CommandName": "Set-PnPTeamsTeamPicture", "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Id": 1440, - "Rank": 1 + "Rank": 1, + "Id": 1440 }, { "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Id": 1441, - "Rank": 1 + "Rank": 1, + "Id": 1441 }, { "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Id": 1442, - "Rank": 2 + "Rank": 2, + "Id": 1442 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", - "Id": 1443, - "Rank": 1 + "Rank": 1, + "Id": 1443 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Id": 1444, - "Rank": 2 + "Rank": 2, + "Id": 1444 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Id": 1445, - "Rank": 3 + "Rank": 3, + "Id": 1445 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Id": 1446, - "Rank": 4 + "Rank": 4, + "Id": 1446 }, { "CommandName": "Set-PnPTenantAppCatalogUrl", "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Id": 1447, - "Rank": 1 + "Rank": 1, + "Id": 1447 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Id": 1448, - "Rank": 1 + "Rank": 1, + "Id": 1448 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Id": 1449, - "Rank": 2 + "Rank": 2, + "Id": 1449 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Id": 1450, - "Rank": 3 + "Rank": 3, + "Id": 1450 }, { "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", - "Id": 1451, - "Rank": 1 + "Rank": 1, + "Id": 1451 }, { "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Id": 1452, - "Rank": 2 + "Rank": 2, + "Id": 1452 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Id": 1453, - "Rank": 1 + "Rank": 1, + "Id": 1453 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Id": 1454, - "Rank": 2 + "Rank": 2, + "Id": 1454 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1455, - "Rank": 3 + "Rank": 3, + "Id": 1455 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1456, - "Rank": 4 + "Rank": 4, + "Id": 1456 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Id": 1457, - "Rank": 5 + "Rank": 5, + "Id": 1457 }, { "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Id": 1458, - "Rank": 1 + "Rank": 1, + "Id": 1458 }, { "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Id": 1459, - "Rank": 2 + "Rank": 2, + "Id": 1459 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Id": 1460, - "Rank": 1 + "Rank": 1, + "Id": 1460 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1461, - "Rank": 2 + "Rank": 2, + "Id": 1461 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1462, - "Rank": 3 + "Rank": 3, + "Id": 1462 }, { "CommandName": "Set-PnPTermGroup", "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Id": 1463, - "Rank": 1 + "Rank": 1, + "Id": 1463 }, { "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Id": 1464, - "Rank": 1 + "Rank": 1, + "Id": 1464 }, { "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Id": 1465, - "Rank": 2 + "Rank": 2, + "Id": 1465 }, { "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Id": 1466, - "Rank": 3 + "Rank": 3, + "Id": 1466 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme", - "Id": 1467, - "Rank": 1 + "Rank": 1, + "Id": 1467 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Id": 1468, - "Rank": 2 + "Rank": 2, + "Id": 1468 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Id": 1469, - "Rank": 3 + "Rank": 3, + "Id": 1469 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Id": 1470, - "Rank": 4 + "Rank": 4, + "Id": 1470 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Id": 1471, - "Rank": 1 + "Rank": 1, + "Id": 1471 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Id": 1472, - "Rank": 2 + "Rank": 2, + "Id": 1472 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Id": 1473, - "Rank": 3 + "Rank": 3, + "Id": 1473 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -Off", - "Id": 1474, - "Rank": 4 + "Rank": 4, + "Id": 1474 }, { "CommandName": "Set-PnPUserOneDriveQuota", "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Id": 1475, - "Rank": 1 + "Rank": 1, + "Id": 1475 }, { "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Id": 1476, - "Rank": 1 + "Rank": 1, + "Id": 1476 }, { "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Id": 1477, - "Rank": 2 + "Rank": 2, + "Id": 1477 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Id": 1478, - "Rank": 1 + "Rank": 1, + "Id": 1478 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Id": 1479, - "Rank": 2 + "Rank": 2, + "Id": 1479 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "Id": 1480, - "Rank": 3 + "Rank": 3, + "Id": 1480 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Id": 1481, - "Rank": 4 + "Rank": 4, + "Id": 1481 }, { "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": 1482, - "Rank": 1 + "Rank": 1, + "Id": 1482 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Id": 1483, - "Rank": 2 + "Rank": 2, + "Id": 1483 }, { "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": 1484, - "Rank": 3 + "Rank": 3, + "Id": 1484 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Id": 1485, - "Rank": 4 + "Rank": 4, + "Id": 1485 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Id": 1486, - "Rank": 1 + "Rank": 1, + "Id": 1486 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Id": 1487, - "Rank": 2 + "Rank": 2, + "Id": 1487 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Id": 1488, - "Rank": 3 + "Rank": 3, + "Id": 1488 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -NoCrawl:$true", - "Id": 1489, - "Rank": 4 + "Rank": 4, + "Id": 1489 }, { "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Id": 1490, - "Rank": 1 + "Rank": 1, + "Id": 1490 }, { "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Id": 1491, - "Rank": 2 + "Rank": 2, + "Id": 1491 }, { "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Id": 1492, - "Rank": 3 + "Rank": 3, + "Id": 1492 }, { "CommandName": "Set-PnPWebhookSubscription", "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Id": 1493, - "Rank": 1 + "Rank": 1, + "Id": 1493 }, { "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": 1494, - "Rank": 2 + "Rank": 2, + "Id": 1494 }, { "CommandName": "Set-PnPWebPartProperty", "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "Id": 1495, - "Rank": 1 + "Rank": 1, + "Id": 1495 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1496, - "Rank": 1 + "Rank": 1, + "Id": 1496 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Id": 1497, - "Rank": 2 + "Rank": 2, + "Id": 1497 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1498, - "Rank": 3 + "Rank": 3, + "Id": 1498 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Id": 1499, - "Rank": 4 + "Rank": 4, + "Id": 1499 }, { "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme MyTheme", - "Id": 1500, - "Rank": 1 + "Rank": 1, + "Id": 1500 }, { "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Id": 1501, - "Rank": 2 + "Rank": 2, + "Id": 1501 }, { "CommandName": "Set-PnPWikiPageContent", "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Id": 1502, - "Rank": 1 + "Rank": 1, + "Id": 1502 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Id": 1503, - "Rank": 1 + "Rank": 1, + "Id": 1503 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Id": 1504, - "Rank": 2 + "Rank": 2, + "Id": 1504 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Id": 1505, - "Rank": 3 + "Rank": 3, + "Id": 1505 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Id": 1506, - "Rank": 4 + "Rank": 4, + "Id": 1506 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Id": 1507, - "Rank": 5 + "Rank": 5, + "Id": 1507 }, { "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Id": 1508, - "Rank": 1 + "Rank": 1, + "Id": 1508 }, { "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Id": 1509, - "Rank": 2 + "Rank": 2, + "Id": 1509 }, { "CommandName": "Sync-PnPAppToTeams", "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1510, - "Rank": 1 + "Rank": 1, + "Id": 1510 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Id": 1511, - "Rank": 1 + "Rank": 1, + "Id": 1511 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Id": 1512, - "Rank": 2 + "Rank": 2, + "Id": 1512 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Id": 1513, - "Rank": 3 + "Rank": 3, + "Id": 1513 }, { "CommandName": "Test-PnPListItemIsRecord", "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Id": 1514, - "Rank": 1 + "Rank": 1, + "Id": 1514 }, { "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Id": 1515, - "Rank": 1 + "Rank": 1, + "Id": 1515 }, { "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1516, - "Rank": 1 + "Rank": 1, + "Id": 1516 }, { "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1517, - "Rank": 2 + "Rank": 2, + "Id": 1517 }, { "CommandName": "Test-PnPTenantTemplate", "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Id": 1518, - "Rank": 1 + "Rank": 1, + "Id": 1518 }, { "CommandName": "Undo-PnPFileCheckedOut", "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Id": 1519, - "Rank": 1 + "Rank": 1, + "Id": 1519 }, { "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1520, - "Rank": 1 + "Rank": 1, + "Id": 1520 }, { "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1521, - "Rank": 2 + "Rank": 2, + "Id": 1521 }, { "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1522, - "Rank": 1 + "Rank": 1, + "Id": 1522 }, { "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1523, - "Rank": 2 + "Rank": 2, + "Id": 1523 }, { "CommandName": "Unpublish-PnPContentType", "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Id": 1524, - "Rank": 1 + "Rank": 1, + "Id": 1524 }, { "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 1525, - "Rank": 1 + "Rank": 1, + "Id": 1525 }, { "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": 1526, - "Rank": 2 + "Rank": 2, + "Id": 1526 }, { "CommandName": "Unregister-PnPHubSite", "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 1527, - "Rank": 1 + "Rank": 1, + "Id": 1527 }, { "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1528, - "Rank": 1 + "Rank": 1, + "Id": 1528 }, { "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1529, - "Rank": 2 + "Rank": 2, + "Id": 1529 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 1530, - "Rank": 1 + "Rank": 1, + "Id": 1530 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Id": 1531, - "Rank": 2 + "Rank": 2, + "Id": 1531 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Id": 1532, - "Rank": 3 + "Rank": 3, + "Id": 1532 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Id": 1533, - "Rank": 1 + "Rank": 1, + "Id": 1533 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Id": 1534, - "Rank": 2 + "Rank": 2, + "Id": 1534 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "Id": 1535, - "Rank": 3 + "Rank": 3, + "Id": 1535 }, { "CommandName": "Update-PnPTeamsApp", "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Id": 1536, - "Rank": 1 + "Rank": 1, + "Id": 1536 }, { "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1537, - "Rank": 1 + "Rank": 1, + "Id": 1537 }, { "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Id": 1538, - "Rank": 2 + "Rank": 2, + "Id": 1538 }, { "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Id": 1539, - "Rank": 3 + "Rank": 3, + "Id": 1539 }, { "CommandName": "Update-PnPUserType", "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Id": 1540, - "Rank": 1 + "Rank": 1, + "Id": 1540 } ] diff --git a/version.txt b/version.txt index e05032b6a..5ca525ee5 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.21 \ No newline at end of file +2.2.22 \ No newline at end of file From 0a87e032579d236691515e335fac0e529bf4db51 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Sun, 23 Jul 2023 02:54:26 +0000 Subject: [PATCH 18/21] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6160 ++++++++--------- version.txt | 2 +- 3 files changed, 3082 insertions(+), 3082 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 0edcd1b70..7a67e4848 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -697a27179fae065b17a55788a92947bae852b052 \ No newline at end of file +4d868c467d6d8eb7be1d87c78223d4b98bcd0e5b \ 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 59957be28..2e1ef28bb 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -2,9241 +2,9241 @@ { "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-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1, - "Id": 68 + "Id": 68, + "Rank": 1 }, { "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Rank": 2, - "Id": 69 + "Id": 69, + "Rank": 2 }, { "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Rank": 3, - "Id": 70 + "Id": 70, + "Rank": 3 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "Id": 71 + "Id": 71, + "Rank": 1 }, { "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2, - "Id": 72 + "Id": 72, + "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": 73 + "Id": 73, + "Rank": 3 }, { "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "Id": 74 + "Id": 74, + "Rank": 1 }, { "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Rank": 2, - "Id": 75 + "Id": 75, + "Rank": 2 }, { "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1, - "Id": 76 + "Id": 76, + "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": 77 + "Id": 77, + "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": 78 + "Id": 78, + "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": 79 + "Id": 79, + "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": 80 + "Id": 80, + "Rank": 2 }, { "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1, - "Id": 81 + "Id": 81, + "Rank": 1 }, { "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Rank": 2, - "Id": 82 + "Id": 82, + "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": 83 + "Id": 83, + "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": 84 + "Id": 84, + "Rank": 1 }, { "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "Rank": 1, - "Id": 85 + "Id": 85, + "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": 86 + "Id": 86, + "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": 87 + "Id": 87, + "Rank": 3 }, { "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "Rank": 1, - "Id": 88 + "Id": 88, + "Rank": 1 }, { "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Rank": 2, - "Id": 89 + "Id": 89, + "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": 90 + "Id": 90, + "Rank": 1 }, { "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "Rank": 2, - "Id": 91 + "Id": 91, + "Rank": 2 }, { "CommandName": "Add-PnPListDesign", "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "Rank": 1, - "Id": 92 + "Id": 92, + "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": 93 + "Id": 93, + "Rank": 2 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Rank": 1, - "Id": 94 + "Id": 94, + "Rank": 1 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Rank": 2, - "Id": 95 + "Id": 95, + "Rank": 2 }, { "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Rank": 3, - "Id": 96 + "Id": 96, + "Rank": 3 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1, - "Id": 97 + "Id": 97, + "Rank": 1 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2, - "Id": 98 + "Id": 98, + "Rank": 2 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "Rank": 3, - "Id": 99 + "Id": 99, + "Rank": 3 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "Rank": 4, - "Id": 100 + "Id": 100, + "Rank": 4 }, { "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "Rank": 5, - "Id": 101 + "Id": 101, + "Rank": 5 }, { "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "Rank": 1, - "Id": 102 + "Id": 102, + "Rank": 1 }, { "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 2, - "Id": 103 + "Id": 103, + "Rank": 2 }, { "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "Rank": 3, - "Id": 104 + "Id": 104, + "Rank": 3 }, { "CommandName": "Add-PnPListItemComment", "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Rank": 1, - "Id": 105 + "Id": 105, + "Rank": 1 }, { "CommandName": "Add-PnPMasterPage", "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "Rank": 1, - "Id": 106 + "Id": 106, + "Rank": 1 }, { "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 107 + "Id": 107, + "Rank": 1 }, { "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, - "Id": 108 + "Id": 108, + "Rank": 2 }, { "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 109 + "Id": 109, + "Rank": 1 }, { "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2, - "Id": 110 + "Id": 110, + "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": 111 + "Id": 111, + "Rank": 1 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Rank": 2, - "Id": 112 + "Id": 112, + "Rank": 2 }, { "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Rank": 3, - "Id": 113 + "Id": 113, + "Rank": 3 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "Rank": 1, - "Id": 114 + "Id": 114, + "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": 115 + "Id": 115, + "Rank": 2 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "Rank": 3, - "Id": 116 + "Id": 116, + "Rank": 3 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "Rank": 4, - "Id": 117 + "Id": 117, + "Rank": 4 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Rank": 5, - "Id": 118 + "Id": 118, + "Rank": 5 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Rank": 6, - "Id": 119 + "Id": 119, + "Rank": 6 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Rank": 7, - "Id": 120 + "Id": 120, + "Rank": 7 }, { "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "Rank": 8, - "Id": 121 + "Id": 121, + "Rank": 8 }, { "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Rank": 1, - "Id": 122 + "Id": 122, + "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": 123 + "Id": 123, + "Rank": 2 }, { "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "Rank": 3, - "Id": 124 + "Id": 124, + "Rank": 3 }, { "CommandName": "Add-PnPOrgNewsSite", "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Rank": 1, - "Id": 125 + "Id": 125, + "Rank": 1 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\"", - "Rank": 1, - "Id": 126 + "Id": 126, + "Rank": 1 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Rank": 2, - "Id": 127 + "Id": 127, + "Rank": 2 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Rank": 3, - "Id": 128 + "Id": 128, + "Rank": 3 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Rank": 4, - "Id": 129 + "Id": 129, + "Rank": 4 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Rank": 5, - "Id": 130 + "Id": 130, + "Rank": 5 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Rank": 6, - "Id": 131 + "Id": 131, + "Rank": 6 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7, - "Id": 132 + "Id": 132, + "Rank": 7 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8, - "Id": 133 + "Id": 133, + "Rank": 8 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, - "Id": 134 + "Id": 134, + "Rank": 9 }, { "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, - "Id": 135 + "Id": 135, + "Rank": 10 }, { "CommandName": "Add-PnPPageImageWebPart", "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Rank": 1, - "Id": 136 + "Id": 136, + "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": 137 + "Id": 137, + "Rank": 2 }, { "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Rank": 1, - "Id": 138 + "Id": 138, + "Rank": 1 }, { "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Rank": 2, - "Id": 139 + "Id": 139, + "Rank": 2 }, { "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Rank": 1, - "Id": 140 + "Id": 140, + "Rank": 1 }, { "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 2, - "Id": 141 + "Id": 141, + "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": 142 + "Id": 142, + "Rank": 3 }, { "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Rank": 1, - "Id": 143 + "Id": 143, + "Rank": 1 }, { "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Rank": 2, - "Id": 144 + "Id": 144, + "Rank": 2 }, { "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Rank": 3, - "Id": 145 + "Id": 145, + "Rank": 3 }, { "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Rank": 1, - "Id": 146 + "Id": 146, + "Rank": 1 }, { "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Rank": 2, - "Id": 147 + "Id": 147, + "Rank": 2 }, { "CommandName": "Add-PnPPlannerRoster", "Command": "Add-PnPPlannerRoster", - "Rank": 1, - "Id": 148 + "Id": 148, + "Rank": 1 }, { "CommandName": "Add-PnPPlannerRosterMember", "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 149 + "Id": 149, + "Rank": 1 }, { "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 1, - "Id": 150 + "Id": 150, + "Rank": 1 }, { "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 2, - "Id": 151 + "Id": 151, + "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": 152 + "Id": 152, + "Rank": 3 }, { "CommandName": "Add-PnPPublishingImageRendition", "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1, - "Id": 153 + "Id": 153, + "Rank": 1 }, { "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Rank": 1, - "Id": 154 + "Id": 154, + "Rank": 1 }, { "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "Rank": 2, - "Id": 155 + "Id": 155, + "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": 156 + "Id": 156, + "Rank": 1 }, { "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Rank": 1, - "Id": 157 + "Id": 157, + "Rank": 1 }, { "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Rank": 2, - "Id": 158 + "Id": 158, + "Rank": 2 }, { "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Rank": 3, - "Id": 159 + "Id": 159, + "Rank": 3 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 160 + "Id": 160, + "Rank": 1 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, - "Id": 161 + "Id": 161, + "Rank": 2 }, { "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Rank": 3, - "Id": 162 + "Id": 162, + "Rank": 3 }, { "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1, - "Id": 163 + "Id": 163, + "Rank": 1 }, { "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 2, - "Id": 164 + "Id": 164, + "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": 165 + "Id": 165, + "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": 166 + "Id": 166, + "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": 167 + "Id": 167, + "Rank": 3 }, { "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Rank": 1, - "Id": 168 + "Id": 168, + "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": 169 + "Id": 169, + "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": 170 + "Id": 170, + "Rank": 3 }, { "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, - "Id": 171 + "Id": 171, + "Rank": 1 }, { "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 2, - "Id": 172 + "Id": 172, + "Rank": 2 }, { "CommandName": "Add-PnPSiteScript", "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "Rank": 1, - "Id": 173 + "Id": 173, + "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": 174 + "Id": 174, + "Rank": 1 }, { "CommandName": "Add-PnPSiteTemplate", "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Rank": 1, - "Id": 175 + "Id": 175, + "Rank": 1 }, { "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Rank": 1, - "Id": 176 + "Id": 176, + "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": 177 + "Id": 177, + "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": 178 + "Id": 178, + "Rank": 3 }, { "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Rank": 1, - "Id": 179 + "Id": 179, + "Rank": 1 }, { "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "Rank": 2, - "Id": 180 + "Id": 180, + "Rank": 2 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "Rank": 1, - "Id": 181 + "Id": 181, + "Rank": 1 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Rank": 2, - "Id": 182 + "Id": 182, + "Rank": 2 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "Rank": 3, - "Id": 183 + "Id": 183, + "Rank": 3 }, { "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "Rank": 4, - "Id": 184 + "Id": 184, + "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": 185 + "Id": 185, + "Rank": 1 }, { "CommandName": "Add-PnpTeamsChannelUser", "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "Rank": 2, - "Id": 186 + "Id": 186, + "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": 187 + "Id": 187, + "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": 188 + "Id": 188, + "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": 189 + "Id": 189, + "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": 190 + "Id": 190, + "Rank": 4 }, { "CommandName": "Add-PnPTeamsTeam", "Command": "Add-PnPTeamsTeam", - "Rank": 1, - "Id": 191 + "Id": 191, + "Rank": 1 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1, - "Id": 192 + "Id": 192, + "Rank": 1 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, - "Id": 193 + "Id": 193, + "Rank": 2 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "Rank": 3, - "Id": 194 + "Id": 194, + "Rank": 3 }, { "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "Rank": 4, - "Id": 195 + "Id": 195, + "Rank": 4 }, { "CommandName": "Add-PnPTenantCdnOrigin", "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, - "Id": 196 + "Id": 196, + "Rank": 1 }, { "CommandName": "Add-PnPTenantSequence", "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Rank": 1, - "Id": 197 + "Id": 197, + "Rank": 1 }, { "CommandName": "Add-PnPTenantSequenceSite", "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Rank": 1, - "Id": 198 + "Id": 198, + "Rank": 1 }, { "CommandName": "Add-PnPTenantSequenceSubSite", "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Rank": 1, - "Id": 199 + "Id": 199, + "Rank": 1 }, { "CommandName": "Add-PnPTermToTerm", "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Rank": 1, - "Id": 200 + "Id": 200, + "Rank": 1 }, { "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Rank": 1, - "Id": 201 + "Id": 201, + "Rank": 1 }, { "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "Rank": 2, - "Id": 202 + "Id": 202, + "Rank": 2 }, { "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "Rank": 3, - "Id": 203 + "Id": 203, + "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": 204 + "Id": 204, + "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": 205 + "Id": 205, + "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": 206 + "Id": 206, + "Rank": 3 }, { "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1, - "Id": 207 + "Id": 207, + "Rank": 1 }, { "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Rank": 2, - "Id": 208 + "Id": 208, + "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": 209 + "Id": 209, + "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": 210 + "Id": 210, + "Rank": 1 }, { "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "Rank": 2, - "Id": 211 + "Id": 211, + "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": 212 + "Id": 212, + "Rank": 1 }, { "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "Rank": 2, - "Id": 213 + "Id": 213, + "Rank": 2 }, { "CommandName": "Add-PnPWikiPage", "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Rank": 1, - "Id": 214 + "Id": 214, + "Rank": 1 }, { "CommandName": "Clear-PnPAzureADGroupMember", "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Rank": 1, - "Id": 215 + "Id": 215, + "Rank": 1 }, { "CommandName": "Clear-PnPAzureADGroupOwner", "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Rank": 1, - "Id": 216 + "Id": 216, + "Rank": 1 }, { "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Rank": 1, - "Id": 217 + "Id": 217, + "Rank": 1 }, { "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Rank": 2, - "Id": 218 + "Id": 218, + "Rank": 2 }, { "CommandName": "Clear-PnPListItemAsRecord", "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, - "Id": 219 + "Id": 219, + "Rank": 1 }, { "CommandName": "Clear-PnPMicrosoft365GroupMember", "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Rank": 1, - "Id": 220 + "Id": 220, + "Rank": 1 }, { "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Rank": 1, - "Id": 221 + "Id": 221, + "Rank": 1 }, { "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, - "Id": 222 + "Id": 222, + "Rank": 1 }, { "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Rank": 2, - "Id": 223 + "Id": 223, + "Rank": 2 }, { "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Rank": 3, - "Id": 224 + "Id": 224, + "Rank": 3 }, { "CommandName": "Clear-PnPTenantAppCatalogUrl", "Command": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1, - "Id": 225 + "Id": 225, + "Rank": 1 }, { "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "Id": 226 + "Id": 226, + "Rank": 1 }, { "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, - "Id": 227 + "Id": 227, + "Rank": 2 }, { "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Rank": 1, - "Id": 228 + "Id": 228, + "Rank": 1 }, { "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Rank": 2, - "Id": 229 + "Id": 229, + "Rank": 2 }, { "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Rank": 1, - "Id": 230 + "Id": 230, + "Rank": 1 }, { "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Rank": 2, - "Id": 231 + "Id": 231, + "Rank": 2 }, { "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Rank": 3, - "Id": 232 + "Id": 232, + "Rank": 3 }, { "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Rank": 1, - "Id": 233 + "Id": 233, + "Rank": 1 }, { "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Rank": 2, - "Id": 234 + "Id": 234, + "Rank": 2 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Rank": 1, - "Id": 235 + "Id": 235, + "Rank": 1 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Rank": 2, - "Id": 236 + "Id": 236, + "Rank": 2 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Rank": 3, - "Id": 237 + "Id": 237, + "Rank": 3 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Rank": 4, - "Id": 238 + "Id": 238, + "Rank": 4 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 5, - "Id": 239 + "Id": 239, + "Rank": 5 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Rank": 6, - "Id": 240 + "Id": 240, + "Rank": 6 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Rank": 7, - "Id": 241 + "Id": 241, + "Rank": 7 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Rank": 8, - "Id": 242 + "Id": 242, + "Rank": 8 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 9, - "Id": 243 + "Id": 243, + "Rank": 9 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Rank": 10, - "Id": 244 + "Id": 244, + "Rank": 10 }, { "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Rank": 11, - "Id": 245 + "Id": 245, + "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": 246 + "Id": 246, + "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": 247 + "Id": 247, + "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": 248 + "Id": 248, + "Rank": 14 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1, - "Id": 249 + "Id": 249, + "Rank": 1 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2, - "Id": 250 + "Id": 250, + "Rank": 2 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3, - "Id": 251 + "Id": 251, + "Rank": 3 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4, - "Id": 252 + "Id": 252, + "Rank": 4 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5, - "Id": 253 + "Id": 253, + "Rank": 5 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6, - "Id": 254 + "Id": 254, + "Rank": 6 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7, - "Id": 255 + "Id": 255, + "Rank": 7 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8, - "Id": 256 + "Id": 256, + "Rank": 8 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9, - "Id": 257 + "Id": 257, + "Rank": 9 }, { "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10, - "Id": 258 + "Id": 258, + "Rank": 10 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1, - "Id": 259 + "Id": 259, + "Rank": 1 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2, - "Id": 260 + "Id": 260, + "Rank": 2 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3, - "Id": 261 + "Id": 261, + "Rank": 3 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4, - "Id": 262 + "Id": 262, + "Rank": 4 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5, - "Id": 263 + "Id": 263, + "Rank": 5 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6, - "Id": 264 + "Id": 264, + "Rank": 6 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7, - "Id": 265 + "Id": 265, + "Rank": 7 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8, - "Id": 266 + "Id": 266, + "Rank": 8 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9, - "Id": 267 + "Id": 267, + "Rank": 9 }, { "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10, - "Id": 268 + "Id": 268, + "Rank": 10 }, { "CommandName": "Copy-PnPItemProxy", "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Rank": 1, - "Id": 269 + "Id": 269, + "Rank": 1 }, { "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Rank": 1, - "Id": 270 + "Id": 270, + "Rank": 1 }, { "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Rank": 2, - "Id": 271 + "Id": 271, + "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": 272 + "Id": 272, + "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": 273 + "Id": 273, + "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": 274 + "Id": 274, + "Rank": 1 }, { "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Rank": 2, - "Id": 275 + "Id": 275, + "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": 276 + "Id": 276, + "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": 277 + "Id": 277, + "Rank": 4 }, { "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 278 + "Id": 278, + "Rank": 1 }, { "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, - "Id": 279 + "Id": 279, + "Rank": 2 }, { "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, - "Id": 280 + "Id": 280, + "Rank": 3 }, { "CommandName": "Disable-PnPPageScheduling", "Command": "Disable-PnPPageScheduling", - "Rank": 1, - "Id": 281 + "Id": 281, + "Rank": 1 }, { "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry", - "Rank": 1, - "Id": 282 + "Id": 282, + "Rank": 1 }, { "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry -Force", - "Rank": 2, - "Id": 283 + "Id": 283, + "Rank": 2 }, { "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1, - "Id": 284 + "Id": 284, + "Rank": 1 }, { "CommandName": "Disable-PnPSiteClassification", "Command": "Disable-PnPSiteClassification", - "Rank": 1, - "Id": 285 + "Id": 285, + "Rank": 1 }, { "CommandName": "Disconnect-PnPOnline", "Command": "Disconnect-PnPOnline", - "Rank": 1, - "Id": 286 + "Id": 286, + "Rank": 1 }, { "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite", - "Rank": 1, - "Id": 287 + "Id": 287, + "Rank": 1 }, { "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Rank": 2, - "Id": 288 + "Id": 288, + "Rank": 2 }, { "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 289 + "Id": 289, + "Rank": 1 }, { "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2, - "Id": 290 + "Id": 290, + "Rank": 2 }, { "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3, - "Id": 291 + "Id": 291, + "Rank": 3 }, { "CommandName": "Enable-PnPPageScheduling", "Command": "Enable-PnPPageScheduling", - "Rank": 1, - "Id": 292 + "Id": 292, + "Rank": 1 }, { "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry", - "Rank": 1, - "Id": 293 + "Id": 293, + "Rank": 1 }, { "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry -Force", - "Rank": 2, - "Id": 294 + "Id": 294, + "Rank": 2 }, { "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Rank": 1, - "Id": 295 + "Id": 295, + "Rank": 1 }, { "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 2, - "Id": 296 + "Id": 296, + "Rank": 2 }, { "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Rank": 1, - "Id": 297 + "Id": 297, + "Rank": 1 }, { "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Rank": 2, - "Id": 298 + "Id": 298, + "Rank": 2 }, { "CommandName": "Export-PnPPage", "Command": "Export-PnPPage -Identity Home.aspx", - "Rank": 1, - "Id": 299 + "Id": 299, + "Rank": 1 }, { "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Rank": 1, - "Id": 300 + "Id": 300, + "Rank": 1 }, { "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Rank": 2, - "Id": 301 + "Id": 301, + "Rank": 2 }, { "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Rank": 3, - "Id": 302 + "Id": 302, + "Rank": 3 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy", - "Rank": 1, - "Id": 303 + "Id": 303, + "Rank": 1 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Rank": 2, - "Id": 304 + "Id": 304, + "Rank": 2 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Rank": 3, - "Id": 305 + "Id": 305, + "Rank": 3 }, { "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Rank": 4, - "Id": 306 + "Id": 306, + "Rank": 4 }, { "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml", - "Rank": 1, - "Id": 307 + "Id": 307, + "Rank": 1 }, { "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Rank": 2, - "Id": 308 + "Id": 308, + "Rank": 2 }, { "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Rank": 3, - "Id": 309 + "Id": 309, + "Rank": 3 }, { "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1, - "Id": 310 + "Id": 310, + "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": 311 + "Id": 311, + "Rank": 2 }, { "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, - "Id": 312 + "Id": 312, + "Rank": 1 }, { "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2, - "Id": 313 + "Id": 313, + "Rank": 2 }, { "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Match *.master", - "Rank": 1, - "Id": 314 + "Id": 314, + "Rank": 1 }, { "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Rank": 2, - "Id": 315 + "Id": 315, + "Rank": 2 }, { "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Rank": 3, - "Id": 316 + "Id": 316, + "Rank": 3 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken", - "Rank": 1, - "Id": 317 + "Id": 317, + "Rank": 1 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -Decoded", - "Rank": 2, - "Id": 318 + "Id": 318, + "Rank": 2 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Rank": 3, - "Id": 319 + "Id": 319, + "Rank": 3 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Rank": 4, - "Id": 320 + "Id": 320, + "Rank": 4 }, { "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Rank": 5, - "Id": 321 + "Id": 321, + "Rank": 5 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert", - "Rank": 1, - "Id": 322 + "Id": 322, + "Rank": 1 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\"", - "Rank": 2, - "Id": 323 + "Id": 323, + "Rank": 2 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3, - "Id": 324 + "Id": 324, + "Rank": 3 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Rank": 4, - "Id": 325 + "Id": 325, + "Rank": 4 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -AllUsers", - "Rank": 5, - "Id": 326 + "Id": 326, + "Rank": 5 }, { "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Rank": 6, - "Id": 327 + "Id": 327, + "Rank": 6 }, { "CommandName": "Get-PnPApp", "Command": "Get-PnPApp", - "Rank": 1, - "Id": 328 + "Id": 328, + "Rank": 1 }, { "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Scope Site", - "Rank": 2, - "Id": 329 + "Id": 329, + "Rank": 2 }, { "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 3, - "Id": 330 + "Id": 330, + "Rank": 3 }, { "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Rank": 1, - "Id": 331 + "Id": 331, + "Rank": 1 }, { "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Rank": 2, - "Id": 332 + "Id": 332, + "Rank": 2 }, { "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Rank": 1, - "Id": 333 + "Id": 333, + "Rank": 1 }, { "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 2, - "Id": 334 + "Id": 334, + "Rank": 2 }, { "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Rank": 3, - "Id": 335 + "Id": 335, + "Rank": 3 }, { "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer", - "Rank": 1, - "Id": 336 + "Id": 336, + "Rank": 1 }, { "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, - "Id": 337 + "Id": 337, + "Rank": 2 }, { "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Rank": 3, - "Id": 338 + "Id": 338, + "Rank": 3 }, { "CommandName": "Get-PnPAuditing", "Command": "Get-PnPAuditing", - "Rank": 1, - "Id": 339 + "Id": 339, + "Rank": 1 }, { "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm", - "Rank": 1, - "Id": 340 + "Id": 340, + "Rank": 1 }, { "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Rank": 2, - "Id": 341 + "Id": 341, + "Rank": 2 }, { "CommandName": "Get-PnPAvailableLanguage", "Command": "Get-PnPAvailableLanguage", - "Rank": 1, - "Id": 342 + "Id": 342, + "Rank": 1 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel", - "Rank": 1, - "Id": 343 + "Id": 343, + "Rank": 1 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Rank": 2, - "Id": 344 + "Id": 344, + "Rank": 2 }, { "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Rank": 3, - "Id": 345 + "Id": 345, + "Rank": 3 }, { "CommandName": "Get-PnPAvailableSiteClassification", "Command": "Get-PnPAvailableSiteClassification", - "Rank": 1, - "Id": 346 + "Id": 346, + "Rank": 1 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal", - "Rank": 1, - "Id": 347 + "Id": 347, + "Rank": 1 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Rank": 2, - "Id": 348 + "Id": 348, + "Rank": 2 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Rank": 3, - "Id": 349 + "Id": 349, + "Rank": 3 }, { "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Rank": 4, - "Id": 350 + "Id": 350, + "Rank": 4 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1, - "Id": 351 + "Id": 351, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Rank": 2, - "Id": 352 + "Id": 352, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Rank": 3, - "Id": 353 + "Id": 353, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1, - "Id": 354 + "Id": 354, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Rank": 2, - "Id": 355 + "Id": 355, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Rank": 3, - "Id": 356 + "Id": 356, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp", - "Rank": 1, - "Id": 357 + "Id": 357, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity MyApp", - "Rank": 2, - "Id": 358 + "Id": 358, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, - "Id": 359 + "Id": 359, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Rank": 4, - "Id": 360 + "Id": 360, + "Rank": 4 }, { "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission", - "Rank": 1, - "Id": 361 + "Id": 361, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Rank": 2, - "Id": 362 + "Id": 362, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3, - "Id": 363 + "Id": 363, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission", - "Rank": 1, - "Id": 364 + "Id": 364, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2, - "Id": 365 + "Id": 365, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Rank": 3, - "Id": 366 + "Id": 366, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Rank": 4, - "Id": 367 + "Id": 367, + "Rank": 4 }, { "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Rank": 5, - "Id": 368 + "Id": 368, + "Rank": 5 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup", - "Rank": 1, - "Id": 369 + "Id": 369, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Rank": 2, - "Id": 370 + "Id": 370, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Rank": 3, - "Id": 371 + "Id": 371, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Rank": 4, - "Id": 372 + "Id": 372, + "Rank": 4 }, { "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $group", - "Rank": 5, - "Id": 373 + "Id": 373, + "Rank": 5 }, { "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Rank": 1, - "Id": 374 + "Id": 374, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Rank": 2, - "Id": 375 + "Id": 375, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Rank": 1, - "Id": 376 + "Id": 376, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Rank": 2, - "Id": 377 + "Id": 377, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal", - "Rank": 1, - "Id": 378 + "Id": 378, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Rank": 2, - "Id": 379 + "Id": 379, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Rank": 3, - "Id": 380 + "Id": 380, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Rank": 4, - "Id": 381 + "Id": 381, + "Rank": 4 }, { "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, - "Id": 382 + "Id": 382, + "Rank": 5 }, { "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, - "Id": 383 + "Id": 383, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 2, - "Id": 384 + "Id": 384, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1, - "Id": 385 + "Id": 385, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Rank": 2, - "Id": 386 + "Id": 386, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser", - "Rank": 1, - "Id": 387 + "Id": 387, + "Rank": 1 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -EndIndex 50", - "Rank": 2, - "Id": 388 + "Id": 388, + "Rank": 2 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 3, - "Id": 389 + "Id": 389, + "Rank": 3 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Rank": 4, - "Id": 390 + "Id": 390, + "Rank": 4 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Rank": 5, - "Id": 391 + "Id": 391, + "Rank": 5 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Rank": 6, - "Id": 392 + "Id": 392, + "Rank": 6 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Rank": 7, - "Id": 393 + "Id": 393, + "Rank": 7 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta", - "Rank": 8, - "Id": 394 + "Id": 394, + "Rank": 8 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Rank": 9, - "Id": 395 + "Id": 395, + "Rank": 9 }, { "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Rank": 10, - "Id": 396 + "Id": 396, + "Rank": 10 }, { "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Rank": 1, - "Id": 397 + "Id": 397, + "Rank": 1 }, { "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Rank": 2, - "Id": 398 + "Id": 398, + "Rank": 2 }, { "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Rank": 3, - "Id": 399 + "Id": 399, + "Rank": 3 }, { "CommandName": "Get-PnPBrowserIdleSignout", "Command": "Get-PnPBrowserIdleSignout", - "Rank": 1, - "Id": 400 + "Id": 400, + "Rank": 1 }, { "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Rank": 1, - "Id": 401 + "Id": 401, + "Rank": 1 }, { "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2, - "Id": 402 + "Id": 402, + "Rank": 2 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1, - "Id": 403 + "Id": 403, + "Rank": 1 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Rank": 2, - "Id": 404 + "Id": 404, + "Rank": 2 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Rank": 3, - "Id": 405 + "Id": 405, + "Rank": 3 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4, - "Id": 406 + "Id": 406, + "Rank": 4 }, { "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Rank": 5, - "Id": 407 + "Id": 407, + "Rank": 5 }, { "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog", - "Rank": 1, - "Id": 408 + "Id": 408, + "Rank": 1 }, { "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog -Nightly", - "Rank": 2, - "Id": 409 + "Id": 409, + "Rank": 2 }, { "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Rank": 1, - "Id": 410 + "Id": 410, + "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": 411 + "Id": 411, + "Rank": 2 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType", - "Rank": 1, - "Id": 412 + "Id": 412, + "Rank": 1 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -InSiteHierarchy", - "Rank": 2, - "Id": 413 + "Id": 413, + "Rank": 2 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Rank": 3, - "Id": 414 + "Id": 414, + "Rank": 3 }, { "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -List \"Documents\"", - "Rank": 4, - "Id": 415 + "Id": 415, + "Rank": 4 }, { "CommandName": "Get-PnPContentTypePublishingStatus", "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Rank": 1, - "Id": 416 + "Id": 416, + "Rank": 1 }, { "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction", - "Rank": 1, - "Id": 417 + "Id": 417, + "Rank": 1 }, { "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2, - "Id": 418 + "Id": 418, + "Rank": 2 }, { "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Scope web", - "Rank": 3, - "Id": 419 + "Id": 419, + "Rank": 3 }, { "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1, - "Id": 420 + "Id": 420, + "Rank": 1 }, { "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 2, - "Id": 421 + "Id": 421, + "Rank": 2 }, { "CommandName": "Get-PnPDeletedTeam", "Command": "Get-PnPDeletedTeam", - "Rank": 1, - "Id": 422 + "Id": 422, + "Rank": 1 }, { "CommandName": "Get-PnPDiagnostics", "Command": "Get-PnPDiagnostics", - "Rank": 1, - "Id": 423 + "Id": 423, + "Rank": 1 }, { "CommandName": "Get-PnPDisableSpacesActivation", "Command": "Get-PnPDisableSpacesActivation", - "Rank": 1, - "Id": 424 + "Id": 424, + "Rank": 1 }, { "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Rank": 1, - "Id": 425 + "Id": 425, + "Rank": 1 }, { "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Rank": 2, - "Id": 426 + "Id": 426, + "Rank": 2 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver", - "Rank": 1, - "Id": 427 + "Id": 427, + "Rank": 1 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, - "Id": 428 + "Id": 428, + "Rank": 2 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Rank": 3, - "Id": 429 + "Id": 429, + "Rank": 3 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Rank": 4, - "Id": 430 + "Id": 430, + "Rank": 4 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 5, - "Id": 431 + "Id": 431, + "Rank": 5 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Rank": 6, - "Id": 432 + "Id": 432, + "Rank": 6 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Site", - "Rank": 7, - "Id": 433 + "Id": 433, + "Rank": 7 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Web", - "Rank": 8, - "Id": 434 + "Id": 434, + "Rank": 8 }, { "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope All", - "Rank": 9, - "Id": 435 + "Id": 435, + "Rank": 9 }, { "CommandName": "Get-PnPException", "Command": "Get-PnPException", - "Rank": 1, - "Id": 436 + "Id": 436, + "Rank": 1 }, { "CommandName": "Get-PnPException", "Command": "Get-PnPException -All", - "Rank": 2, - "Id": 437 + "Id": 437, + "Rank": 2 }, { "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Rank": 1, - "Id": 438 + "Id": 438, + "Rank": 1 }, { "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Rank": 2, - "Id": 439 + "Id": 439, + "Rank": 2 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature", - "Rank": 1, - "Id": 440 + "Id": 440, + "Rank": 1 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Scope Site", - "Rank": 2, - "Id": 441 + "Id": 441, + "Rank": 2 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 3, - "Id": 442 + "Id": 442, + "Rank": 3 }, { "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Rank": 4, - "Id": 443 + "Id": 443, + "Rank": 4 }, { "CommandName": "Get-PnPField", "Command": "Get-PnPField", - "Rank": 1, - "Id": 444 + "Id": 444, + "Rank": 1 }, { "CommandName": "Get-PnPField", "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, - "Id": 445 + "Id": 445, + "Rank": 2 }, { "CommandName": "Get-PnPField", "Command": "Get-PnPField -Group \"Custom Columns\"", - "Rank": 3, - "Id": 446 + "Id": 446, + "Rank": 3 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Rank": 1, - "Id": 447 + "Id": 447, + "Rank": 1 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Rank": 2, - "Id": 448 + "Id": 448, + "Rank": 2 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Rank": 3, - "Id": 449 + "Id": 449, + "Rank": 3 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Rank": 4, - "Id": 450 + "Id": 450, + "Rank": 4 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Rank": 5, - "Id": 451 + "Id": 451, + "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": 452 + "Id": 452, + "Rank": 6 }, { "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Rank": 7, - "Id": 453 + "Id": 453, + "Rank": 7 }, { "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "Id": 454 + "Id": 454, + "Rank": 1 }, { "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Rank": 1, - "Id": 455 + "Id": 455, + "Rank": 1 }, { "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Rank": 2, - "Id": 456 + "Id": 456, + "Rank": 2 }, { "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Rank": 1, - "Id": 457 + "Id": 457, + "Rank": 1 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Rank": 1, - "Id": 458 + "Id": 458, + "Rank": 1 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Rank": 2, - "Id": 459 + "Id": 459, + "Rank": 2 }, { "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Rank": 3, - "Id": 460 + "Id": 460, + "Rank": 3 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\"", - "Rank": 1, - "Id": 461 + "Id": 461, + "Rank": 1 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 2, - "Id": 462 + "Id": 462, + "Rank": 2 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Rank": 3, - "Id": 463 + "Id": 463, + "Rank": 3 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType File", - "Rank": 4, - "Id": 464 + "Id": 464, + "Rank": 4 }, { "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 5, - "Id": 465 + "Id": 465, + "Rank": 5 }, { "CommandName": "Get-PnPFolderSharingLink", "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "Id": 466 + "Id": 466, + "Rank": 1 }, { "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric", - "Rank": 1, - "Id": 467 + "Id": 467, + "Rank": 1 }, { "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Rank": 2, - "Id": 468 + "Id": 468, + "Rank": 2 }, { "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Rank": 3, - "Id": 469 + "Id": 469, + "Rank": 3 }, { "CommandName": "Get-PnPFooter", "Command": "Get-PnPFooter", - "Rank": 1, - "Id": 470 + "Id": 470, + "Rank": 1 }, { "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken", - "Rank": 1, - "Id": 471 + "Id": 471, + "Rank": 1 }, { "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken -Decoded", - "Rank": 2, - "Id": 472 + "Id": 472, + "Rank": 2 }, { "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription", - "Rank": 1, - "Id": 473 + "Id": 473, + "Rank": 1 }, { "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 2, - "Id": 474 + "Id": 474, + "Rank": 2 }, { "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup", - "Rank": 1, - "Id": 475 + "Id": 475, + "Rank": 1 }, { "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Rank": 2, - "Id": 476 + "Id": 476, + "Rank": 2 }, { "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Rank": 3, - "Id": 477 + "Id": 477, + "Rank": 3 }, { "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Rank": 1, - "Id": 478 + "Id": 478, + "Rank": 1 }, { "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Rank": 2, - "Id": 479 + "Id": 479, + "Rank": 2 }, { "CommandName": "Get-PnPGroupPermissions", "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Rank": 1, - "Id": 480 + "Id": 480, + "Rank": 1 }, { "CommandName": "Get-PnPHideDefaultThemes", "Command": "Get-PnPHideDefaultThemes", - "Rank": 1, - "Id": 481 + "Id": 481, + "Rank": 1 }, { "CommandName": "Get-PnPHomePage", "Command": "Get-PnPHomePage", - "Rank": 1, - "Id": 482 + "Id": 482, + "Rank": 1 }, { "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite", - "Rank": 1, - "Id": 483 + "Id": 483, + "Rank": 1 }, { "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Rank": 2, - "Id": 484 + "Id": 484, + "Rank": 2 }, { "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -Detailed", - "Rank": 3, - "Id": 485 + "Id": 485, + "Rank": 3 }, { "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite", - "Rank": 1, - "Id": 486 + "Id": 486, + "Rank": 1 }, { "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, - "Id": 487 + "Id": 487, + "Rank": 2 }, { "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Rank": 3, - "Id": 488 + "Id": 488, + "Rank": 3 }, { "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild", - "Rank": 1, - "Id": 489 + "Id": 489, + "Rank": 1 }, { "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2, - "Id": 490 + "Id": 490, + "Rank": 2 }, { "CommandName": "Get-PnPInPlaceRecordsManagement", "Command": "Get-PnPInPlaceRecordsManagement", - "Rank": 1, - "Id": 491 + "Id": 491, + "Rank": 1 }, { "CommandName": "Get-PnPIsSiteAliasAvailable", "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Rank": 1, - "Id": 492 + "Id": 492, + "Rank": 1 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink", - "Rank": 1, - "Id": 493 + "Id": 493, + "Rank": 1 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope All", - "Rank": 2, - "Id": 494 + "Id": 494, + "Rank": 2 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Web", - "Rank": 3, - "Id": 495 + "Id": 495, + "Rank": 3 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Site", - "Rank": 4, - "Id": 496 + "Id": 496, + "Rank": 4 }, { "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Name Test", - "Rank": 5, - "Id": 497 + "Id": 497, + "Rank": 5 }, { "CommandName": "Get-PnPKnowledgeHubSite", "Command": "Get-PnPKnowledgeHubSite", - "Rank": 1, - "Id": 498 + "Id": 498, + "Rank": 1 }, { "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel", - "Rank": 1, - "Id": 499 + "Id": 499, + "Rank": 1 }, { "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Rank": 2, - "Id": 500 + "Id": 500, + "Rank": 2 }, { "CommandName": "Get-PnPLargeListOperationStatus", "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Rank": 1, - "Id": 501 + "Id": 501, + "Rank": 1 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList", - "Rank": 1, - "Id": 502 + "Id": 502, + "Rank": 1 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 2, - "Id": 503 + "Id": 503, + "Rank": 2 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity Lists/Announcements", - "Rank": 3, - "Id": 504 + "Id": 504, + "Rank": 3 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Rank": 4, - "Id": 505 + "Id": 505, + "Rank": 4 }, { "CommandName": "Get-PnPList", "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Rank": 5, - "Id": 506 + "Id": 506, + "Rank": 5 }, { "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign", - "Rank": 1, - "Id": 507 + "Id": 507, + "Rank": 1 }, { "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, - "Id": 508 + "Id": 508, + "Rank": 2 }, { "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity ListEvent", - "Rank": 3, - "Id": 509 + "Id": 509, + "Rank": 3 }, { "CommandName": "Get-PnPListInformationRightsManagement", "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Rank": 1, - "Id": 510 + "Id": 510, + "Rank": 1 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks", - "Rank": 1, - "Id": 511 + "Id": 511, + "Rank": 1 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1", - "Rank": 2, - "Id": 512 + "Id": 512, + "Rank": 2 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Rank": 3, - "Id": 513 + "Id": 513, + "Rank": 3 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Rank": 4, - "Id": 514 + "Id": 514, + "Rank": 4 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Rank": 5, - "Id": 515 + "Id": 515, + "Rank": 5 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Rank": 6, - "Id": 516 + "Id": 516, + "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": 517 + "Id": 517, + "Rank": 7 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Rank": 8, - "Id": 518 + "Id": 518, + "Rank": 8 }, { "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Rank": 9, - "Id": 519 + "Id": 519, + "Rank": 9 }, { "CommandName": "Get-PnPListItemComment", "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Rank": 1, - "Id": 520 + "Id": 520, + "Rank": 1 }, { "CommandName": "Get-PnPListItemPermission", "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Rank": 1, - "Id": 521 + "Id": 521, + "Rank": 1 }, { "CommandName": "Get-PnPListItemVersion", "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Rank": 1, - "Id": 522 + "Id": 522, + "Rank": 1 }, { "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Rank": 1, - "Id": 523 + "Id": 523, + "Rank": 1 }, { "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Rank": 2, - "Id": 524 + "Id": 524, + "Rank": 2 }, { "CommandName": "Get-PnPListRecordDeclaration", "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Rank": 1, - "Id": 525 + "Id": 525, + "Rank": 1 }, { "CommandName": "Get-PnPMasterPage", "Command": "Get-PnPMasterPage", - "Rank": 1, - "Id": 526 + "Id": 526, + "Rank": 1 }, { "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement", - "Rank": 1, - "Id": 527 + "Id": 527, + "Rank": 1 }, { "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Rank": 2, - "Id": 528 + "Id": 528, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1, - "Id": 529 + "Id": 529, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Rank": 2, - "Id": 530 + "Id": 530, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group", - "Rank": 1, - "Id": 531 + "Id": 531, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Rank": 2, - "Id": 532 + "Id": 532, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Rank": 3, - "Id": 533 + "Id": 533, + "Rank": 3 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Rank": 4, - "Id": 534 + "Id": 534, + "Rank": 4 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Rank": 5, - "Id": 535 + "Id": 535, + "Rank": 5 }, { "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Rank": 6, - "Id": 536 + "Id": 536, + "Rank": 6 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1, - "Id": 537 + "Id": 537, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Rank": 2, - "Id": 538 + "Id": 538, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, - "Id": 539 + "Id": 539, + "Rank": 3 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Rank": 1, - "Id": 540 + "Id": 540, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Rank": 2, - "Id": 541 + "Id": 541, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Rank": 3, - "Id": 542 + "Id": 542, + "Rank": 3 }, { "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Rank": 1, - "Id": 543 + "Id": 543, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Rank": 2, - "Id": 544 + "Id": 544, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1, - "Id": 545 + "Id": 545, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Rank": 2, - "Id": 546 + "Id": 546, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1, - "Id": 547 + "Id": 547, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Rank": 2, - "Id": 548 + "Id": 548, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1, - "Id": 549 + "Id": 549, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Rank": 2, - "Id": 550 + "Id": 550, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, - "Id": 551 + "Id": 551, + "Rank": 3 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1, - "Id": 552 + "Id": 552, + "Rank": 1 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Rank": 2, - "Id": 553 + "Id": 553, + "Rank": 2 }, { "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3, - "Id": 554 + "Id": 554, + "Rank": 3 }, { "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode", - "Rank": 1, - "Id": 555 + "Id": 555, + "Rank": 1 }, { "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Rank": 2, - "Id": 556 + "Id": 556, + "Rank": 2 }, { "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Rank": 3, - "Id": 557 + "Id": 557, + "Rank": 3 }, { "CommandName": "Get-PnPOrgAssetsLibrary", "Command": "Get-PnPOrgAssetsLibrary", - "Rank": 1, - "Id": 558 + "Id": 558, + "Rank": 1 }, { "CommandName": "Get-PnPOrgNewsSite", "Command": "Get-PnPOrgNewsSite", - "Rank": 1, - "Id": 559 + "Id": 559, + "Rank": 1 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Rank": 1, - "Id": 560 + "Id": 560, + "Rank": 1 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"MyPage\"", - "Rank": 2, - "Id": 561 + "Id": 561, + "Rank": 2 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Rank": 3, - "Id": 562 + "Id": 562, + "Rank": 3 }, { "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Rank": 4, - "Id": 563 + "Id": 563, + "Rank": 4 }, { "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home", - "Rank": 1, - "Id": 564 + "Id": 564, + "Rank": 1 }, { "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2, - "Id": 565 + "Id": 565, + "Rank": 2 }, { "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Rank": 3, - "Id": 566 + "Id": 566, + "Rank": 3 }, { "CommandName": "Get-PnPPlannerBucket", "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, - "Id": 567 + "Id": 567, + "Rank": 1 }, { "CommandName": "Get-PnPPlannerConfiguration", "Command": "Get-PnPPlannerConfiguration", - "Rank": 1, - "Id": 568 + "Id": 568, + "Rank": 1 }, { "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Rank": 1, - "Id": 569 + "Id": 569, + "Rank": 1 }, { "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Rank": 2, - "Id": 570 + "Id": 570, + "Rank": 2 }, { "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Rank": 3, - "Id": 571 + "Id": 571, + "Rank": 3 }, { "CommandName": "Get-PnPPlannerRosterMember", "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, - "Id": 572 + "Id": 572, + "Rank": 1 }, { "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Rank": 1, - "Id": 573 + "Id": 573, + "Rank": 1 }, { "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 2, - "Id": 574 + "Id": 574, + "Rank": 2 }, { "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1, - "Id": 575 + "Id": 575, + "Rank": 1 }, { "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 2, - "Id": 576 + "Id": 576, + "Rank": 2 }, { "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 3, - "Id": 577 + "Id": 577, + "Rank": 3 }, { "CommandName": "Get-PnPPlannerUserPolicy", "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 578 + "Id": 578, + "Rank": 1 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment", - "Rank": 1, - "Id": 579 + "Id": 579, + "Rank": 1 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Rank": 2, - "Id": 580 + "Id": 580, + "Rank": 2 }, { "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Rank": 3, - "Id": 581 + "Id": 581, + "Rank": 3 }, { "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Command": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1, - "Id": 582 + "Id": 582, + "Rank": 1 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag", - "Rank": 1, - "Id": 583 + "Id": 583, + "Rank": 1 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Key MyKey", - "Rank": 2, - "Id": 584 + "Id": 584, + "Rank": 2 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Rank": 3, - "Id": 585 + "Id": 585, + "Rank": 3 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Rank": 4, - "Id": 586 + "Id": 586, + "Rank": 4 }, { "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Rank": 5, - "Id": 587 + "Id": 587, + "Rank": 5 }, { "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition", - "Rank": 1, - "Id": 588 + "Id": 588, + "Rank": 1 }, { "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Rank": 2, - "Id": 589 + "Id": 589, + "Rank": 2 }, { "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Rank": 3, - "Id": 590 + "Id": 590, + "Rank": 3 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem", - "Rank": 1, - "Id": 591 + "Id": 591, + "Rank": 1 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Rank": 2, - "Id": 592 + "Id": 592, + "Rank": 2 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -FirstStage", - "Rank": 3, - "Id": 593 + "Id": 593, + "Rank": 3 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -SecondStage", - "Rank": 4, - "Id": 594 + "Id": 594, + "Rank": 4 }, { "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Rank": 5, - "Id": 595 + "Id": 595, + "Rank": 5 }, { "CommandName": "Get-PnPRequestAccessEmails", "Command": "Get-PnPRequestAccessEmails", - "Rank": 1, - "Id": 596 + "Id": 596, + "Rank": 1 }, { "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition", - "Rank": 1, - "Id": 597 + "Id": 597, + "Rank": 1 }, { "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition -Identity Read", - "Rank": 2, - "Id": 598 + "Id": 598, + "Rank": 2 }, { "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Rank": 3, - "Id": 599 + "Id": 599, + "Rank": 3 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration", - "Rank": 1, - "Id": 600 + "Id": 600, + "Rank": 1 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site", - "Rank": 2, - "Id": 601 + "Id": 601, + "Rank": 2 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Rank": 3, - "Id": 602 + "Id": 602, + "Rank": 3 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, - "Id": 603 + "Id": 603, + "Rank": 4 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Rank": 5, - "Id": 604 + "Id": 604, + "Rank": 5 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Rank": 6, - "Id": 605 + "Id": 605, + "Rank": 6 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Rank": 7, - "Id": 606 + "Id": 606, + "Rank": 7 }, { "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Rank": 8, - "Id": 607 + "Id": 607, + "Rank": 8 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog", - "Rank": 1, - "Id": 608 + "Id": 608, + "Rank": 1 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Rank": 2, - "Id": 609 + "Id": 609, + "Rank": 2 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Rank": 3, - "Id": 610 + "Id": 610, + "Rank": 3 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Rank": 4, - "Id": 611 + "Id": 611, + "Rank": 4 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Rank": 5, - "Id": 612 + "Id": 612, + "Rank": 5 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Rank": 6, - "Id": 613 + "Id": 613, + "Rank": 6 }, { "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Rank": 7, - "Id": 614 + "Id": 614, + "Rank": 7 }, { "CommandName": "Get-PnPSearchSettings", "Command": "Get-PnPSearchSettings", - "Rank": 1, - "Id": 615 + "Id": 615, + "Rank": 1 }, { "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth", - "Rank": 1, - "Id": 616 + "Id": 616, + "Rank": 1 }, { "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Rank": 2, - "Id": 617 + "Id": 617, + "Rank": 2 }, { "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue", - "Rank": 1, - "Id": 618 + "Id": 618, + "Rank": 1 }, { "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Rank": 2, - "Id": 619 + "Id": 619, + "Rank": 2 }, { "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn", - "Rank": 1, - "Id": 620 + "Id": 620, + "Rank": 1 }, { "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Rank": 2, - "Id": 621 + "Id": 621, + "Rank": 2 }, { "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Command": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1, - "Id": 622 + "Id": 622, + "Rank": 1 }, { "CommandName": "Get-PnPSite", "Command": "Get-PnPSite", - "Rank": 1, - "Id": 623 + "Id": 623, + "Rank": 1 }, { "CommandName": "Get-PnPSite", "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Rank": 2, - "Id": 624 + "Id": 624, + "Rank": 2 }, { "CommandName": "Get-PnPSiteClosure", "Command": "Get-PnPSiteClosure", - "Rank": 1, - "Id": 625 + "Id": 625, + "Rank": 1 }, { "CommandName": "Get-PnPSiteCollectionAdmin", "Command": "Get-PnPSiteCollectionAdmin", - "Rank": 1, - "Id": 626 + "Id": 626, + "Rank": 1 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1, - "Id": 627 + "Id": 627, + "Rank": 1 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Rank": 2, - "Id": 628 + "Id": 628, + "Rank": 2 }, { "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Rank": 3, - "Id": 629 + "Id": 629, + "Rank": 3 }, { "CommandName": "Get-PnPSiteCollectionTermStore", "Command": "Get-PnPSiteCollectionTermStore", - "Rank": 1, - "Id": 630 + "Id": 630, + "Rank": 1 }, { "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign", - "Rank": 1, - "Id": 631 + "Id": 631, + "Rank": 1 }, { "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, - "Id": 632 + "Id": 632, + "Rank": 2 }, { "CommandName": "Get-PnPSiteDesignRights", "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 633 + "Id": 633, + "Rank": 1 }, { "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun", - "Rank": 1, - "Id": 634 + "Id": 634, + "Rank": 1 }, { "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Rank": 2, - "Id": 635 + "Id": 635, + "Rank": 2 }, { "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1, - "Id": 636 + "Id": 636, + "Rank": 1 }, { "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask", - "Rank": 2, - "Id": 637 + "Id": 637, + "Rank": 2 }, { "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 3, - "Id": 638 + "Id": 638, + "Rank": 3 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup", - "Rank": 1, - "Id": 639 + "Id": 639, + "Rank": 1 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 2, - "Id": 640 + "Id": 640, + "Rank": 2 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Rank": 3, - "Id": 641 + "Id": 641, + "Rank": 3 }, { "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 4, - "Id": 642 + "Id": 642, + "Rank": 4 }, { "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy", - "Rank": 1, - "Id": 643 + "Id": 643, + "Rank": 1 }, { "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -AllAvailable", - "Rank": 2, - "Id": 644 + "Id": 644, + "Rank": 2 }, { "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 3, - "Id": 645 + "Id": 645, + "Rank": 3 }, { "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript", - "Rank": 1, - "Id": 646 + "Id": 646, + "Rank": 1 }, { "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2, - "Id": 647 + "Id": 647, + "Rank": 2 }, { "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Rank": 1, - "Id": 648 + "Id": 648, + "Rank": 1 }, { "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Rank": 2, - "Id": 649 + "Id": 649, + "Rank": 2 }, { "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Rank": 3, - "Id": 650 + "Id": 650, + "Rank": 3 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Rank": 1, - "Id": 651 + "Id": 651, + "Rank": 1 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Rank": 2, - "Id": 652 + "Id": 652, + "Rank": 2 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Rank": 3, - "Id": 653 + "Id": 653, + "Rank": 3 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Rank": 4, - "Id": 654 + "Id": 654, + "Rank": 4 }, { "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Rank": 5, - "Id": 655 + "Id": 655, + "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": 656 + "Id": 656, + "Rank": 6 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults", - "Rank": 1, - "Id": 657 + "Id": 657, + "Rank": 1 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Rank": 2, - "Id": 658 + "Id": 658, + "Rank": 2 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Rank": 3, - "Id": 659 + "Id": 659, + "Rank": 3 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Rank": 4, - "Id": 660 + "Id": 660, + "Rank": 4 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Rank": 5, - "Id": 661 + "Id": 661, + "Rank": 5 }, { "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -All", - "Rank": 6, - "Id": 662 + "Id": 662, + "Rank": 6 }, { "CommandName": "Get-PnPSiteSensitivityLabel", "Command": "Get-PnPSiteSensitivityLabel", - "Rank": 1, - "Id": 663 + "Id": 663, + "Rank": 1 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Rank": 1, - "Id": 664 + "Id": 664, + "Rank": 1 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml", - "Rank": 2, - "Id": 665 + "Id": 665, + "Rank": 2 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.md", - "Rank": 3, - "Id": 666 + "Id": 666, + "Rank": 3 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Rank": 4, - "Id": 667 + "Id": 667, + "Rank": 4 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Rank": 5, - "Id": 668 + "Id": 668, + "Rank": 5 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Rank": 6, - "Id": 669 + "Id": 669, + "Rank": 6 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Rank": 7, - "Id": 670 + "Id": 670, + "Rank": 7 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Rank": 8, - "Id": 671 + "Id": 671, + "Rank": 8 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Rank": 9, - "Id": 672 + "Id": 672, + "Rank": 9 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Rank": 10, - "Id": 673 + "Id": 673, + "Rank": 10 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Rank": 11, - "Id": 674 + "Id": 674, + "Rank": 11 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Rank": 12, - "Id": 675 + "Id": 675, + "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": 676 + "Id": 676, + "Rank": 13 }, { "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Rank": 14, - "Id": 677 + "Id": 677, + "Rank": 14 }, { "CommandName": "Get-PnPSiteUserInvitations", "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1, - "Id": 678 + "Id": 678, + "Rank": 1 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity", - "Rank": 1, - "Id": 679 + "Id": 679, + "Rank": 1 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey", - "Rank": 2, - "Id": 680 + "Id": 680, + "Rank": 2 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Scope Site", - "Rank": 3, - "Id": 681 + "Id": 681, + "Rank": 3 }, { "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 4, - "Id": 682 + "Id": 682, + "Rank": 4 }, { "CommandName": "Get-PnPStoredCredential", "Command": "Get-PnPStoredCredential -Name O365", - "Rank": 1, - "Id": 683 + "Id": 683, + "Rank": 1 }, { "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1, - "Id": 684 + "Id": 684, + "Rank": 1 }, { "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1, - "Id": 685 + "Id": 685, + "Rank": 1 }, { "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Rank": 1, - "Id": 686 + "Id": 686, + "Rank": 1 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb", - "Rank": 1, - "Id": 687 + "Id": 687, + "Rank": 1 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse", - "Rank": 2, - "Id": 688 + "Id": 688, + "Rank": 2 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Rank": 3, - "Id": 689 + "Id": 689, + "Rank": 3 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Rank": 4, - "Id": 690 + "Id": 690, + "Rank": 4 }, { "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Rank": 5, - "Id": 691 + "Id": 691, + "Rank": 5 }, { "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel", - "Rank": 1, - "Id": 692 + "Id": 692, + "Rank": 1 }, { "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity 1", - "Rank": 2, - "Id": 693 + "Id": 693, + "Rank": 2 }, { "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Rank": 3, - "Id": 694 + "Id": 694, + "Rank": 3 }, { "CommandName": "Get-PnPSyntexModelPublication", "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Rank": 1, - "Id": 695 + "Id": 695, + "Rank": 1 }, { "CommandName": "Get-PnPTaxonomyItem", "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Rank": 1, - "Id": 696 + "Id": 696, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp", - "Rank": 1, - "Id": 697 + "Id": 697, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Rank": 2, - "Id": 698 + "Id": 698, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Rank": 3, - "Id": 699 + "Id": 699, + "Rank": 3 }, { "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Rank": 1, - "Id": 700 + "Id": 700, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Rank": 2, - "Id": 701 + "Id": 701, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 3, - "Id": 702 + "Id": 702, + "Rank": 3 }, { "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Rank": 1, - "Id": 703 + "Id": 703, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 2, - "Id": 704 + "Id": 704, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Rank": 1, - "Id": 705 + "Id": 705, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Rank": 2, - "Id": 706 + "Id": 706, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Rank": 1, - "Id": 707 + "Id": 707, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Rank": 2, - "Id": 708 + "Id": 708, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 1, - "Id": 709 + "Id": 709, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Rank": 2, - "Id": 710 + "Id": 710, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Rank": 3, - "Id": 711 + "Id": 711, + "Rank": 3 }, { "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4, - "Id": 712 + "Id": 712, + "Rank": 4 }, { "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Rank": 1, - "Id": 713 + "Id": 713, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Rank": 2, - "Id": 714 + "Id": 714, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Rank": 1, - "Id": 715 + "Id": 715, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Rank": 2, - "Id": 716 + "Id": 716, + "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": 717 + "Id": 717, + "Rank": 3 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 4, - "Id": 718 + "Id": 718, + "Rank": 4 }, { "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Rank": 5, - "Id": 719 + "Id": 719, + "Rank": 5 }, { "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, - "Id": 720 + "Id": 720, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 2, - "Id": 721 + "Id": 721, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam", - "Rank": 1, - "Id": 722 + "Id": 722, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Rank": 2, - "Id": 723 + "Id": 723, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Rank": 3, - "Id": 724 + "Id": 724, + "Rank": 3 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Rank": 4, - "Id": 725 + "Id": 725, + "Rank": 4 }, { "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Rank": 5, - "Id": 726 + "Id": 726, + "Rank": 5 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam", - "Rank": 1, - "Id": 727 + "Id": 727, + "Rank": 1 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Rank": 2, - "Id": 728 + "Id": 728, + "Rank": 2 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Rank": 3, - "Id": 729 + "Id": 729, + "Rank": 3 }, { "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Rank": 4, - "Id": 730 + "Id": 730, + "Rank": 4 }, { "CommandName": "Get-PnPTemporarilyDisableAppBar", "Command": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1, - "Id": 731 + "Id": 731, + "Rank": 1 }, { "CommandName": "Get-PnPTenant", "Command": "Get-PnPTenant", - "Rank": 1, - "Id": 732 + "Id": 732, + "Rank": 1 }, { "CommandName": "Get-PnPTenantAppCatalogUrl", "Command": "Get-PnPTenantAppCatalogUrl", - "Rank": 1, - "Id": 733 + "Id": 733, + "Rank": 1 }, { "CommandName": "Get-PnPTenantCdnEnabled", "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Rank": 1, - "Id": 734 + "Id": 734, + "Rank": 1 }, { "CommandName": "Get-PnPTenantCdnOrigin", "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Rank": 1, - "Id": 735 + "Id": 735, + "Rank": 1 }, { "CommandName": "Get-PnPTenantCdnPolicies", "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Rank": 1, - "Id": 736 + "Id": 736, + "Rank": 1 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite", - "Rank": 1, - "Id": 737 + "Id": 737, + "Rank": 1 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 2, - "Id": 738 + "Id": 738, + "Rank": 2 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Rank": 3, - "Id": 739 + "Id": 739, + "Rank": 3 }, { "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Rank": 4, - "Id": 740 + "Id": 740, + "Rank": 4 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId", - "Rank": 1, - "Id": 741 + "Id": 741, + "Rank": 1 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId contoso", - "Rank": 2, - "Id": 742 + "Id": 742, + "Rank": 2 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Rank": 3, - "Id": 743 + "Id": 743, + "Rank": 3 }, { "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Rank": 4, - "Id": 744 + "Id": 744, + "Rank": 4 }, { "CommandName": "Get-PnPTenantInstance", "Command": "Get-PnPTenantInstance", - "Rank": 1, - "Id": 745 + "Id": 745, + "Rank": 1 }, { "CommandName": "Get-PnPTenantRecycleBinItem", "Command": "Get-PnPTenantRecycleBinItem", - "Rank": 1, - "Id": 746 + "Id": 746, + "Rank": 1 }, { "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Rank": 1, - "Id": 747 + "Id": 747, + "Rank": 1 }, { "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Rank": 2, - "Id": 748 + "Id": 748, + "Rank": 2 }, { "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Rank": 1, - "Id": 749 + "Id": 749, + "Rank": 1 }, { "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Rank": 2, - "Id": 750 + "Id": 750, + "Rank": 2 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite", - "Rank": 1, - "Id": 751 + "Id": 751, + "Rank": 1 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Detailed", - "Rank": 2, - "Id": 752 + "Id": 752, + "Rank": 2 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Rank": 3, - "Id": 753 + "Id": 753, + "Rank": 3 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Rank": 4, - "Id": 754 + "Id": 754, + "Rank": 4 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Rank": 5, - "Id": 755 + "Id": 755, + "Rank": 5 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Rank": 6, - "Id": 756 + "Id": 756, + "Rank": 6 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Rank": 7, - "Id": 757 + "Id": 757, + "Rank": 7 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Rank": 8, - "Id": 758 + "Id": 758, + "Rank": 8 }, { "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Rank": 9, - "Id": 759 + "Id": 759, + "Rank": 9 }, { "CommandName": "Get-PnPTenantSyncClientRestriction", "Command": "Get-PnPTenantSyncClientRestriction", - "Rank": 1, - "Id": 760 + "Id": 760, + "Rank": 1 }, { "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Rank": 1, - "Id": 761 + "Id": 761, + "Rank": 1 }, { "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Rank": 2, - "Id": 762 + "Id": 762, + "Rank": 2 }, { "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Rank": 3, - "Id": 763 + "Id": 763, + "Rank": 3 }, { "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme", - "Rank": 1, - "Id": 764 + "Id": 764, + "Rank": 1 }, { "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 2, - "Id": 765 + "Id": 765, + "Rank": 2 }, { "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Rank": 3, - "Id": 766 + "Id": 766, + "Rank": 3 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 1, - "Id": 767 + "Id": 767, + "Rank": 1 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "Id": 768 + "Id": 768, + "Rank": 2 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, - "Id": 769 + "Id": 769, + "Rank": 3 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Rank": 4, - "Id": 770 + "Id": 770, + "Rank": 4 }, { "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Rank": 5, - "Id": 771 + "Id": 771, + "Rank": 5 }, { "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup", - "Rank": 1, - "Id": 772 + "Id": 772, + "Rank": 1 }, { "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Rank": 2, - "Id": 773 + "Id": 773, + "Rank": 2 }, { "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Rank": 3, - "Id": 774 + "Id": 774, + "Rank": 3 }, { "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Rank": 1, - "Id": 775 + "Id": 775, + "Rank": 1 }, { "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Rank": 2, - "Id": 776 + "Id": 776, + "Rank": 2 }, { "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3, - "Id": 777 + "Id": 777, + "Rank": 3 }, { "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Rank": 1, - "Id": 778 + "Id": 778, + "Rank": 1 }, { "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "Id": 779 + "Id": 779, + "Rank": 2 }, { "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Rank": 3, - "Id": 780 + "Id": 780, + "Rank": 3 }, { "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme", - "Rank": 1, - "Id": 781 + "Id": 781, + "Rank": 1 }, { "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Rank": 2, - "Id": 782 + "Id": 782, + "Rank": 2 }, { "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId", - "Rank": 1, - "Id": 783 + "Id": 783, + "Rank": 1 }, { "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Rank": 2, - "Id": 784 + "Id": 784, + "Rank": 2 }, { "CommandName": "Get-PnPUnfurlLink", "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Rank": 1, - "Id": 785 + "Id": 785, + "Rank": 1 }, { "CommandName": "Get-PnPUnifiedAuditLog", "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Rank": 1, - "Id": 786 + "Id": 786, + "Rank": 1 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus", - "Rank": 1, - "Id": 787 + "Id": 787, + "Rank": 1 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Rank": 2, - "Id": 788 + "Id": 788, + "Rank": 2 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Rank": 3, - "Id": 789 + "Id": 789, + "Rank": 3 }, { "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Rank": 4, - "Id": 790 + "Id": 790, + "Rank": 4 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser", - "Rank": 1, - "Id": 791 + "Id": 791, + "Rank": 1 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity 23", - "Rank": 2, - "Id": 792 + "Id": 792, + "Rank": 2 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Rank": 3, - "Id": 793 + "Id": 793, + "Rank": 3 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Rank": 4, - "Id": 794 + "Id": 794, + "Rank": 4 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned", - "Rank": 5, - "Id": 795 + "Id": 795, + "Rank": 5 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Rank": 6, - "Id": 796 + "Id": 796, + "Rank": 6 }, { "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Rank": 7, - "Id": 797 + "Id": 797, + "Rank": 7 }, { "CommandName": "Get-PnPUserOneDriveQuota", "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Rank": 1, - "Id": 798 + "Id": 798, + "Rank": 1 }, { "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Rank": 1, - "Id": 799 + "Id": 799, + "Rank": 1 }, { "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Rank": 2, - "Id": 800 + "Id": 800, + "Rank": 2 }, { "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Rank": 3, - "Id": 801 + "Id": 801, + "Rank": 3 }, { "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\"", - "Rank": 1, - "Id": 802 + "Id": 802, + "Rank": 1 }, { "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Rank": 2, - "Id": 803 + "Id": 803, + "Rank": 2 }, { "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Rank": 3, - "Id": 804 + "Id": 804, + "Rank": 3 }, { "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1, - "Id": 805 + "Id": 805, + "Rank": 1 }, { "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 2, - "Id": 806 + "Id": 806, + "Rank": 2 }, { "CommandName": "Get-PnPWeb", "Command": "Get-PnPWeb", - "Rank": 1, - "Id": 807 + "Id": 807, + "Rank": 1 }, { "CommandName": "Get-PnPWebHeader", "Command": "Get-PnPWebHeader", - "Rank": 1, - "Id": 808 + "Id": 808, + "Rank": 1 }, { "CommandName": "Get-PnPWebhookSubscriptions", "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Rank": 1, - "Id": 809 + "Id": 809, + "Rank": 1 }, { "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Rank": 1, - "Id": 810 + "Id": 810, + "Rank": 1 }, { "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2, - "Id": 811 + "Id": 811, + "Rank": 2 }, { "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Rank": 1, - "Id": 812 + "Id": 812, + "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": 813 + "Id": 813, + "Rank": 2 }, { "CommandName": "Get-PnPWebPartXml", "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, - "Id": 814 + "Id": 814, + "Rank": 1 }, { "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates", - "Rank": 1, - "Id": 815 + "Id": 815, + "Rank": 1 }, { "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -LCID 1033", - "Rank": 2, - "Id": 816 + "Id": 816, + "Rank": 2 }, { "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Rank": 3, - "Id": 817 + "Id": 817, + "Rank": 3 }, { "CommandName": "Get-PnPWikiPageContent", "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Rank": 1, - "Id": 818 + "Id": 818, + "Rank": 1 }, { "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Rank": 1, - "Id": 819 + "Id": 819, + "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": 820 + "Id": 820, + "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": 821 + "Id": 821, + "Rank": 1 }, { "CommandName": "Grant-PnPSiteDesignRights", "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "Id": 822 + "Id": 822, + "Rank": 1 }, { "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1, - "Id": 823 + "Id": 823, + "Rank": 1 }, { "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Rank": 1, - "Id": 824 + "Id": 824, + "Rank": 1 }, { "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Rank": 2, - "Id": 825 + "Id": 825, + "Rank": 2 }, { "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Rank": 3, - "Id": 826 + "Id": 826, + "Rank": 3 }, { "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Rank": 1, - "Id": 827 + "Id": 827, + "Rank": 1 }, { "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Rank": 2, - "Id": 828 + "Id": 828, + "Rank": 2 }, { "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Rank": 1, - "Id": 829 + "Id": 829, + "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": 830 + "Id": 830, + "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": 831 + "Id": 831, + "Rank": 3 }, { "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 832 + "Id": 832, + "Rank": 1 }, { "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "Id": 833 + "Id": 833, + "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": 834 + "Id": 834, + "Rank": 1 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Rank": 2, - "Id": 835 + "Id": 835, + "Rank": 2 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Rank": 3, - "Id": 836 + "Id": 836, + "Rank": 3 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Rank": 4, - "Id": 837 + "Id": 837, + "Rank": 4 }, { "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Rank": 5, - "Id": 838 + "Id": 838, + "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": 839 + "Id": 839, + "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": 840 + "Id": 840, + "Rank": 7 }, { "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 841 + "Id": 841, + "Rank": 1 }, { "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2, - "Id": 842 + "Id": 842, + "Rank": 2 }, { "CommandName": "Invoke-PnPQuery", "Command": "Invoke-PnPQuery -RetryCount 5", - "Rank": 1, - "Id": 843 + "Id": 843, + "Rank": 1 }, { "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 844 + "Id": 844, + "Rank": 1 }, { "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2, - "Id": 845 + "Id": 845, + "Rank": 2 }, { "CommandName": "Invoke-PnPSiteScript", "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Rank": 1, - "Id": 846 + "Id": 846, + "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": 847 + "Id": 847, + "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": 848 + "Id": 848, + "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": 849 + "Id": 849, + "Rank": 3 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Rank": 1, - "Id": 850 + "Id": 850, + "Rank": 1 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Rank": 2, - "Id": 851 + "Id": 851, + "Rank": 2 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3, - "Id": 852 + "Id": 852, + "Rank": 3 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Rank": 4, - "Id": 853 + "Id": 853, + "Rank": 4 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Rank": 5, - "Id": 854 + "Id": 854, + "Rank": 5 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Rank": 6, - "Id": 855 + "Id": 855, + "Rank": 6 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Rank": 7, - "Id": 856 + "Id": 856, + "Rank": 7 }, { "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Rank": 8, - "Id": 857 + "Id": 857, + "Rank": 8 }, { "CommandName": "Invoke-PnPSPRestMethod", "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Rank": 1, - "Id": 858 + "Id": 858, + "Rank": 1 }, { "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Rank": 1, - "Id": 859 + "Id": 859, + "Rank": 1 }, { "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Rank": 2, - "Id": 860 + "Id": 860, + "Rank": 2 }, { "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3, - "Id": 861 + "Id": 861, + "Rank": 3 }, { "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Rank": 1, - "Id": 862 + "Id": 862, + "Rank": 1 }, { "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Rank": 2, - "Id": 863 + "Id": 863, + "Rank": 2 }, { "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\"", - "Rank": 1, - "Id": 864 + "Id": 864, + "Rank": 1 }, { "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Rank": 2, - "Id": 865 + "Id": 865, + "Rank": 2 }, { "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb", - "Rank": 1, - "Id": 866 + "Id": 866, + "Rank": 1 }, { "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb $web -Recursive", - "Rank": 2, - "Id": 867 + "Id": 867, + "Rank": 2 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Rank": 1, - "Id": 868 + "Id": 868, + "Rank": 1 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Rank": 2, - "Id": 869 + "Id": 869, + "Rank": 2 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 3, - "Id": 870 + "Id": 870, + "Rank": 3 }, { "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 4, - "Id": 871 + "Id": 871, + "Rank": 4 }, { "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Rank": 1, - "Id": 872 + "Id": 872, + "Rank": 1 }, { "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Rank": 2, - "Id": 873 + "Id": 873, + "Rank": 2 }, { "CommandName": "Move-PnPListItemToRecycleBin", "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, - "Id": 874 + "Id": 874, + "Rank": 1 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Rank": 1, - "Id": 875 + "Id": 875, + "Rank": 1 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Rank": 2, - "Id": 876 + "Id": 876, + "Rank": 2 }, { "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Rank": 3, - "Id": 877 + "Id": 877, + "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": 878 + "Id": 878, + "Rank": 4 }, { "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem", - "Rank": 1, - "Id": 879 + "Id": 879, + "Rank": 1 }, { "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Rank": 2, - "Id": 880 + "Id": 880, + "Rank": 2 }, { "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Force", - "Rank": 3, - "Id": 881 + "Id": 881, + "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": 882 + "Id": 882, + "Rank": 1 }, { "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Rank": 2, - "Id": 883 + "Id": 883, + "Rank": 2 }, { "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Rank": 3, - "Id": 884 + "Id": 884, + "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": 885 + "Id": 885, + "Rank": 1 }, { "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Rank": 2, - "Id": 886 + "Id": 886, + "Rank": 2 }, { "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, - "Id": 887 + "Id": 887, + "Rank": 1 }, { "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Rank": 2, - "Id": 888 + "Id": 888, + "Rank": 2 }, { "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Rank": 3, - "Id": 889 + "Id": 889, + "Rank": 3 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Rank": 1, - "Id": 890 + "Id": 890, + "Rank": 1 }, { "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Rank": 2, - "Id": 891 + "Id": 891, + "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": 892 + "Id": 892, + "Rank": 3 }, { "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Rank": 1, - "Id": 893 + "Id": 893, + "Rank": 1 }, { "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Rank": 2, - "Id": 894 + "Id": 894, + "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": 895 + "Id": 895, + "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": 896 + "Id": 896, + "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": 897 + "Id": 897, + "Rank": 2 }, { "CommandName": "New-PnPGroup", "Command": "New-PnPGroup -Title \"My Site Users\"", - "Rank": 1, - "Id": 898 + "Id": 898, + "Rank": 1 }, { "CommandName": "New-PnPList", "Command": "New-PnPList -Title Announcements -Template Announcements", - "Rank": 1, - "Id": 899 + "Id": 899, + "Rank": 1 }, { "CommandName": "New-PnPList", "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Rank": 2, - "Id": 900 + "Id": 900, + "Rank": 2 }, { "CommandName": "New-PnPList", "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Rank": 3, - "Id": 901 + "Id": 901, + "Rank": 3 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1, - "Id": 902 + "Id": 902, + "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": 903 + "Id": 903, + "Rank": 2 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Rank": 3, - "Id": 904 + "Id": 904, + "Rank": 3 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Rank": 4, - "Id": 905 + "Id": 905, + "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": 906 + "Id": 906, + "Rank": 5 }, { "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6, - "Id": 907 + "Id": 907, + "Rank": 6 }, { "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": 908 + "Id": 908, + "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": 909 + "Id": 909, + "Rank": 2 }, { "CommandName": "New-PnPPersonalSite", "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Rank": 1, - "Id": 910 + "Id": 910, + "Rank": 1 }, { "CommandName": "New-PnPPlannerPlan", "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Rank": 1, - "Id": 911 + "Id": 911, + "Rank": 1 }, { "CommandName": "New-PnPSdnProvider", "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Rank": 1, - "Id": 912 + "Id": 912, + "Rank": 1 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 1, - "Id": 913 + "Id": 913, + "Rank": 1 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Rank": 2, - "Id": 914 + "Id": 914, + "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": 915 + "Id": 915, + "Rank": 3 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 4, - "Id": 916 + "Id": 916, + "Rank": 4 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 5, - "Id": 917 + "Id": 917, + "Rank": 5 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 6, - "Id": 918 + "Id": 918, + "Rank": 6 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Rank": 7, - "Id": 919 + "Id": 919, + "Rank": 7 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Rank": 8, - "Id": 920 + "Id": 920, + "Rank": 8 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Rank": 9, - "Id": 921 + "Id": 921, + "Rank": 9 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Rank": 10, - "Id": 922 + "Id": 922, + "Rank": 10 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 11, - "Id": 923 + "Id": 923, + "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": 924 + "Id": 924, + "Rank": 12 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 13, - "Id": 925 + "Id": 925, + "Rank": 13 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 14, - "Id": 926 + "Id": 926, + "Rank": 14 }, { "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 15, - "Id": 927 + "Id": 927, + "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": 928 + "Id": 928, + "Rank": 16 }, { "CommandName": "New-PnPSiteCollectionTermStore", "Command": "New-PnPSiteCollectionTermStore", - "Rank": 1, - "Id": 929 + "Id": 929, + "Rank": 1 }, { "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Rank": 1, - "Id": 930 + "Id": 930, + "Rank": 1 }, { "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Rank": 2, - "Id": 931 + "Id": 931, + "Rank": 2 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Rank": 1, - "Id": 932 + "Id": 932, + "Rank": 1 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Rank": 2, - "Id": 933 + "Id": 933, + "Rank": 2 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Rank": 3, - "Id": 934 + "Id": 934, + "Rank": 3 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Rank": 4, - "Id": 935 + "Id": 935, + "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": 936 + "Id": 936, + "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": 937 + "Id": 937, + "Rank": 6 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Rank": 7, - "Id": 938 + "Id": 938, + "Rank": 7 }, { "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Rank": 8, - "Id": 939 + "Id": 939, + "Rank": 8 }, { "CommandName": "New-PnPTeamsApp", "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Rank": 1, - "Id": 940 + "Id": 940, + "Rank": 1 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Rank": 1, - "Id": 941 + "Id": 941, + "Rank": 1 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Rank": 2, - "Id": 942 + "Id": 942, + "Rank": 2 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Rank": 3, - "Id": 943 + "Id": 943, + "Rank": 3 }, { "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 4, - "Id": 944 + "Id": 944, + "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": 945 + "Id": 945, + "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": 946 + "Id": 946, + "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": 947 + "Id": 947, + "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": 948 + "Id": 948, + "Rank": 2 }, { "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Rank": 1, - "Id": 949 + "Id": 949, + "Rank": 1 }, { "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2, - "Id": 950 + "Id": 950, + "Rank": 2 }, { "CommandName": "New-PnPTermGroup", "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Rank": 1, - "Id": 951 + "Id": 951, + "Rank": 1 }, { "CommandName": "New-PnPTermLabel", "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Rank": 1, - "Id": 952 + "Id": 952, + "Rank": 1 }, { "CommandName": "New-PnPTermSet", "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Rank": 1, - "Id": 953 + "Id": 953, + "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": 954 + "Id": 954, + "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": 955 + "Id": 955, + "Rank": 2 }, { "CommandName": "New-PnPUser", "Command": "New-PnPUser -LoginName user@company.com", - "Rank": 1, - "Id": 956 + "Id": 956, + "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": 957 + "Id": 957, + "Rank": 1 }, { "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 1, - "Id": 958 + "Id": 958, + "Rank": 1 }, { "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Rank": 2, - "Id": 959 + "Id": 959, + "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": 960 + "Id": 960, + "Rank": 1 }, { "CommandName": "Publish-PnPContentType", "Command": "Publish-PnPContentType -ContentType 0x0101", - "Rank": 1, - "Id": 961 + "Id": 961, + "Rank": 1 }, { "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, - "Id": 962 + "Id": 962, + "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": 963 + "Id": 963, + "Rank": 2 }, { "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Rank": 1, - "Id": 964 + "Id": 964, + "Rank": 1 }, { "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Rank": 2, - "Id": 965 + "Id": 965, + "Rank": 2 }, { "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Xml $xml", - "Rank": 3, - "Id": 966 + "Id": 966, + "Rank": 3 }, { "CommandName": "Read-PnPTenantTemplate", "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Rank": 1, - "Id": 967 + "Id": 967, + "Rank": 1 }, { "CommandName": "Register-PnPAppCatalogSite", "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Rank": 1, - "Id": 968 + "Id": 968, + "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": 969 + "Id": 969, + "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": 970 + "Id": 970, + "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": 971 + "Id": 971, + "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": 972 + "Id": 972, + "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": 973 + "Id": 973, + "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": 974 + "Id": 974, + "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": 975 + "Id": 975, + "Rank": 7 }, { "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, - "Id": 976 + "Id": 976, + "Rank": 1 }, { "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Rank": 2, - "Id": 977 + "Id": 977, + "Rank": 2 }, { "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess", - "Rank": 1, - "Id": 978 + "Id": 978, + "Rank": 1 }, { "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Rank": 2, - "Id": 979 + "Id": 979, + "Rank": 2 }, { "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Rank": 3, - "Id": 980 + "Id": 980, + "Rank": 3 }, { "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Rank": 1, - "Id": 981 + "Id": 981, + "Rank": 1 }, { "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Rank": 2, - "Id": 982 + "Id": 982, + "Rank": 2 }, { "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Rank": 1, - "Id": 983 + "Id": 983, + "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": 984 + "Id": 984, + "Rank": 2 }, { "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 985 + "Id": 985, + "Rank": 1 }, { "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "Id": 986 + "Id": 986, + "Rank": 2 }, { "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, - "Id": 987 + "Id": 987, + "Rank": 1 }, { "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, - "Id": 988 + "Id": 988, + "Rank": 2 }, { "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Rank": 1, - "Id": 989 + "Id": 989, + "Rank": 1 }, { "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 2, - "Id": 990 + "Id": 990, + "Rank": 2 }, { "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Rank": 1, - "Id": 991 + "Id": 991, + "Rank": 1 }, { "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 2, - "Id": 992 + "Id": 992, + "Rank": 2 }, { "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Rank": 1, - "Id": 993 + "Id": 993, + "Rank": 1 }, { "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $group", - "Rank": 2, - "Id": 994 + "Id": 994, + "Rank": 2 }, { "CommandName": "Remove-PnPAzureADGroupMember", "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 995 + "Id": 995, + "Rank": 1 }, { "CommandName": "Remove-PnPAzureADGroupOwner", "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 996 + "Id": 996, + "Rank": 1 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Rank": 1, - "Id": 997 + "Id": 997, + "Rank": 1 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Rank": 2, - "Id": 998 + "Id": 998, + "Rank": 2 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 3, - "Id": 999 + "Id": 999, + "Rank": 3 }, { "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 4, - "Id": 1000 + "Id": 1000, + "Rank": 4 }, { "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Rank": 1, - "Id": 1001 + "Id": 1001, + "Rank": 1 }, { "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Rank": 2, - "Id": 1002 + "Id": 1002, + "Rank": 2 }, { "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1, - "Id": 1003 + "Id": 1003, + "Rank": 1 }, { "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2, - "Id": 1004 + "Id": 1004, + "Rank": 2 }, { "CommandName": "Remove-PnPContentTypeFromList", "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Rank": 1, - "Id": 1005 + "Id": 1005, + "Rank": 1 }, { "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, - "Id": 1006 + "Id": 1006, + "Rank": 1 }, { "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2, - "Id": 1007 + "Id": 1007, + "Rank": 2 }, { "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Rank": 3, - "Id": 1008 + "Id": 1008, + "Rank": 3 }, { "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, - "Id": 1009 + "Id": 1009, + "Rank": 1 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 1, - "Id": 1010 + "Id": 1010, + "Rank": 1 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2, - "Id": 1011 + "Id": 1011, + "Rank": 2 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Rank": 3, - "Id": 1012 + "Id": 1012, + "Rank": 3 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList", - "Rank": 4, - "Id": 1013 + "Id": 1013, + "Rank": 4 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver", - "Rank": 5, - "Id": 1014 + "Id": 1014, + "Rank": 5 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Site", - "Rank": 6, - "Id": 1015 + "Id": 1015, + "Rank": 6 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Web", - "Rank": 7, - "Id": 1016 + "Id": 1016, + "Rank": 7 }, { "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope All", - "Rank": 8, - "Id": 1017 + "Id": 1017, + "Rank": 8 }, { "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -Identity \"Speakers\"", - "Rank": 1, - "Id": 1018 + "Id": 1018, + "Rank": 1 }, { "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2, - "Id": 1019 + "Id": 1019, + "Rank": 2 }, { "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1, - "Id": 1020 + "Id": 1020, + "Rank": 1 }, { "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Rank": 2, - "Id": 1021 + "Id": 1021, + "Rank": 2 }, { "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Rank": 1, - "Id": 1022 + "Id": 1022, + "Rank": 1 }, { "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Rank": 2, - "Id": 1023 + "Id": 1023, + "Rank": 2 }, { "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Rank": 3, - "Id": 1024 + "Id": 1024, + "Rank": 3 }, { "CommandName": "Remove-PnPFileFromSiteTemplate", "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Rank": 1, - "Id": 1025 + "Id": 1025, + "Rank": 1 }, { "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1, - "Id": 1026 + "Id": 1026, + "Rank": 1 }, { "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Rank": 2, - "Id": 1027 + "Id": 1027, + "Rank": 2 }, { "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, - "Id": 1028 + "Id": 1028, + "Rank": 1 }, { "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 2, - "Id": 1029 + "Id": 1029, + "Rank": 2 }, { "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Rank": 3, - "Id": 1030 + "Id": 1030, + "Rank": 3 }, { "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1, - "Id": 1031 + "Id": 1031, + "Rank": 1 }, { "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Rank": 2, - "Id": 1032 + "Id": 1032, + "Rank": 2 }, { "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1, - "Id": 1033 + "Id": 1033, + "Rank": 1 }, { "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Rank": 2, - "Id": 1034 + "Id": 1034, + "Rank": 2 }, { "CommandName": "Remove-PnPGraphSubscription", "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Rank": 1, - "Id": 1035 + "Id": 1035, + "Rank": 1 }, { "CommandName": "Remove-PnPGroup", "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Rank": 1, - "Id": 1036 + "Id": 1036, + "Rank": 1 }, { "CommandName": "Remove-PnPGroupMember", "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1, - "Id": 1037 + "Id": 1037, + "Rank": 1 }, { "CommandName": "Remove-PnPHomeSite", "Command": "Remove-PnPHomeSite", - "Rank": 1, - "Id": 1038 + "Id": 1038, + "Rank": 1 }, { "CommandName": "Remove-PnPHubSiteAssociation", "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, - "Id": 1039 + "Id": 1039, + "Rank": 1 }, { "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Rank": 1, - "Id": 1040 + "Id": 1040, + "Rank": 1 }, { "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Rank": 2, - "Id": 1041 + "Id": 1041, + "Rank": 2 }, { "CommandName": "Remove-PnPIndexedProperty", "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Rank": 1, - "Id": 1042 + "Id": 1042, + "Rank": 1 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Rank": 1, - "Id": 1043 + "Id": 1043, + "Rank": 1 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Rank": 2, - "Id": 1044 + "Id": 1044, + "Rank": 2 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Rank": 3, - "Id": 1045 + "Id": 1045, + "Rank": 3 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Rank": 4, - "Id": 1046 + "Id": 1046, + "Rank": 4 }, { "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Rank": 5, - "Id": 1047 + "Id": 1047, + "Rank": 5 }, { "CommandName": "Remove-PnPKnowledgeHubSite", "Command": "Remove-PnPKnowledgeHubSite", - "Rank": 1, - "Id": 1048 + "Id": 1048, + "Rank": 1 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements", - "Rank": 1, - "Id": 1049 + "Id": 1049, + "Rank": 1 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Force", - "Rank": 2, - "Id": 1050 + "Id": 1050, + "Rank": 2 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Rank": 3, - "Id": 1051 + "Id": 1051, + "Rank": 3 }, { "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Rank": 4, - "Id": 1052 + "Id": 1052, + "Rank": 4 }, { "CommandName": "Remove-PnPListDesign", "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 1053 + "Id": 1053, + "Rank": 1 }, { "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1, - "Id": 1054 + "Id": 1054, + "Rank": 1 }, { "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Rank": 2, - "Id": 1055 + "Id": 1055, + "Rank": 2 }, { "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\"", - "Rank": 3, - "Id": 1056 + "Id": 1056, + "Rank": 3 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Rank": 1, - "Id": 1057 + "Id": 1057, + "Rank": 1 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Rank": 2, - "Id": 1058 + "Id": 1058, + "Rank": 2 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Rank": 3, - "Id": 1059 + "Id": 1059, + "Rank": 3 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Rank": 4, - "Id": 1060 + "Id": 1060, + "Rank": 4 }, { "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Rank": 5, - "Id": 1061 + "Id": 1061, + "Rank": 5 }, { "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, - "Id": 1062 + "Id": 1062, + "Rank": 1 }, { "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, - "Id": 1063 + "Id": 1063, + "Rank": 2 }, { "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Rank": 1, - "Id": 1064 + "Id": 1064, + "Rank": 1 }, { "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Rank": 2, - "Id": 1065 + "Id": 1065, + "Rank": 2 }, { "CommandName": "Remove-PnPMicrosoft365GroupMember", "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 1066 + "Id": 1066, + "Rank": 1 }, { "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 1067 + "Id": 1067, + "Rank": 1 }, { "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Rank": 1, - "Id": 1068 + "Id": 1068, + "Rank": 1 }, { "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Rank": 2, - "Id": 1069 + "Id": 1069, + "Rank": 2 }, { "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Identity 1032", - "Rank": 1, - "Id": 1070 + "Id": 1070, + "Rank": 1 }, { "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Rank": 2, - "Id": 1071 + "Id": 1071, + "Rank": 2 }, { "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Rank": 3, - "Id": 1072 + "Id": 1072, + "Rank": 3 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Rank": 1, - "Id": 1073 + "Id": 1073, + "Rank": 1 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Rank": 2, - "Id": 1074 + "Id": 1074, + "Rank": 2 }, { "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Rank": 3, - "Id": 1075 + "Id": 1075, + "Rank": 3 }, { "CommandName": "Remove-PnPOrgNewsSite", "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1, - "Id": 1076 + "Id": 1076, + "Rank": 1 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Rank": 1, - "Id": 1077 + "Id": 1077, + "Rank": 1 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Rank": 2, - "Id": 1078 + "Id": 1078, + "Rank": 2 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage $page", - "Rank": 3, - "Id": 1079 + "Id": 1079, + "Rank": 3 }, { "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Rank": 4, - "Id": 1080 + "Id": 1080, + "Rank": 4 }, { "CommandName": "Remove-PnPPageComponent", "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, - "Id": 1081 + "Id": 1081, + "Rank": 1 }, { "CommandName": "Remove-PnPPlannerBucket", "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Rank": 1, - "Id": 1082 + "Id": 1082, + "Rank": 1 }, { "CommandName": "Remove-PnPPlannerPlan", "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Rank": 1, - "Id": 1083 + "Id": 1083, + "Rank": 1 }, { "CommandName": "Remove-PnPPlannerRoster", "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1, - "Id": 1084 + "Id": 1084, + "Rank": 1 }, { "CommandName": "Remove-PnPPlannerRosterMember", "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 1085 + "Id": 1085, + "Rank": 1 }, { "CommandName": "Remove-PnPPlannerTask", "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Rank": 1, - "Id": 1086 + "Id": 1086, + "Rank": 1 }, { "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Rank": 1, - "Id": 1087 + "Id": 1087, + "Rank": 1 }, { "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Rank": 2, - "Id": 1088 + "Id": 1088, + "Rank": 2 }, { "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Rank": 3, - "Id": 1089 + "Id": 1089, + "Rank": 3 }, { "CommandName": "Remove-PnPPublishingImageRendition", "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1, - "Id": 1090 + "Id": 1090, + "Rank": 1 }, { "CommandName": "Remove-PnPRoleDefinition", "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Rank": 1, - "Id": 1091 + "Id": 1091, + "Rank": 1 }, { "CommandName": "Remove-PnPSdnProvider", "Command": "Remove-PnPSdnProvider -Confirm:false", - "Rank": 1, - "Id": 1092 + "Id": 1092, + "Rank": 1 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Rank": 1, - "Id": 1093 + "Id": 1093, + "Rank": 1 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, - "Id": 1094 + "Id": 1094, + "Rank": 2 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, - "Id": 1095 + "Id": 1095, + "Rank": 3 }, { "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, - "Id": 1096 + "Id": 1096, + "Rank": 4 }, { "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 1097 + "Id": 1097, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2, - "Id": 1098 + "Id": 1098, + "Rank": 2 }, { "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 1, - "Id": 1099 + "Id": 1099, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteCollectionTermStore", "Command": "Remove-PnPSiteCollectionTermStore", - "Rank": 1, - "Id": 1100 + "Id": 1100, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteDesign", "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 1101 + "Id": 1101, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteDesignTask", "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 1102 + "Id": 1102, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, - "Id": 1103 + "Id": 1103, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Rank": 2, - "Id": 1104 + "Id": 1104, + "Rank": 2 }, { "CommandName": "Remove-PnPSiteScript", "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1, - "Id": 1105 + "Id": 1105, + "Rank": 1 }, { "CommandName": "Remove-PnPSiteUserInvitations", "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1, - "Id": 1106 + "Id": 1106, + "Rank": 1 }, { "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey", - "Rank": 1, - "Id": 1107 + "Id": 1107, + "Rank": 1 }, { "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 2, - "Id": 1108 + "Id": 1108, + "Rank": 2 }, { "CommandName": "Remove-PnPStoredCredential", "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Rank": 1, - "Id": 1109 + "Id": 1109, + "Rank": 1 }, { "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Rank": 1, - "Id": 1110 + "Id": 1110, + "Rank": 1 }, { "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Rank": 2, - "Id": 1111 + "Id": 1111, + "Rank": 2 }, { "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Rank": 1, - "Id": 1112 + "Id": 1112, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Rank": 2, - "Id": 1113 + "Id": 1113, + "Rank": 2 }, { "CommandName": "Remove-PnPTeamsChannel", "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Rank": 1, - "Id": 1114 + "Id": 1114, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Rank": 1, - "Id": 1115 + "Id": 1115, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 2, - "Id": 1116 + "Id": 1116, + "Rank": 2 }, { "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Rank": 3, - "Id": 1117 + "Id": 1117, + "Rank": 3 }, { "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Rank": 1, - "Id": 1118 + "Id": 1118, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Rank": 2, - "Id": 1119 + "Id": 1119, + "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": 1120 + "Id": 1120, + "Rank": 3 }, { "CommandName": "Remove-PnPTeamsTag", "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 1, - "Id": 1121 + "Id": 1121, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1, - "Id": 1122 + "Id": 1122, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Rank": 2, - "Id": 1123 + "Id": 1123, + "Rank": 2 }, { "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Rank": 1, - "Id": 1124 + "Id": 1124, + "Rank": 1 }, { "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 2, - "Id": 1125 + "Id": 1125, + "Rank": 2 }, { "CommandName": "Remove-PnPTenantCdnOrigin", "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1, - "Id": 1126 + "Id": 1126, + "Rank": 1 }, { "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "Id": 1127 + "Id": 1127, + "Rank": 1 }, { "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, - "Id": 1128 + "Id": 1128, + "Rank": 2 }, { "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "Id": 1129 + "Id": 1129, + "Rank": 1 }, { "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Rank": 2, - "Id": 1130 + "Id": 1130, + "Rank": 2 }, { "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Rank": 3, - "Id": 1131 + "Id": 1131, + "Rank": 3 }, { "CommandName": "Remove-PnPTenantSyncClientRestriction", "Command": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1, - "Id": 1132 + "Id": 1132, + "Rank": 1 }, { "CommandName": "Remove-PnPTenantTheme", "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 1, - "Id": 1133 + "Id": 1133, + "Rank": 1 }, { "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, - "Id": 1134 + "Id": 1134, + "Rank": 1 }, { "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "Id": 1135 + "Id": 1135, + "Rank": 2 }, { "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1, - "Id": 1136 + "Id": 1136, + "Rank": 1 }, { "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Rank": 2, - "Id": 1137 + "Id": 1137, + "Rank": 2 }, { "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Rank": 3, - "Id": 1138 + "Id": 1138, + "Rank": 3 }, { "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Rank": 1, - "Id": 1139 + "Id": 1139, + "Rank": 1 }, { "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2, - "Id": 1140 + "Id": 1140, + "Rank": 2 }, { "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity 23", - "Rank": 1, - "Id": 1141 + "Id": 1141, + "Rank": 1 }, { "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Rank": 2, - "Id": 1142 + "Id": 1142, + "Rank": 2 }, { "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Rank": 3, - "Id": 1143 + "Id": 1143, + "Rank": 3 }, { "CommandName": "Remove-PnPUserInfo", "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1, - "Id": 1144 + "Id": 1144, + "Rank": 1 }, { "CommandName": "Remove-PnPUserProfile", "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Rank": 1, - "Id": 1145 + "Id": 1145, + "Rank": 1 }, { "CommandName": "Remove-PnPView", "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Rank": 1, - "Id": 1146 + "Id": 1146, + "Rank": 1 }, { "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 1, - "Id": 1147 + "Id": 1147, + "Rank": 1 }, { "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity projectA", - "Rank": 1, - "Id": 1148 + "Id": 1148, + "Rank": 1 }, { "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Rank": 2, - "Id": 1149 + "Id": 1149, + "Rank": 2 }, { "CommandName": "Remove-PnPWebhookSubscription", "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Rank": 1, - "Id": 1150 + "Id": 1150, + "Rank": 1 }, { "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1, - "Id": 1151 + "Id": 1151, + "Rank": 1 }, { "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Rank": 2, - "Id": 1152 + "Id": 1152, + "Rank": 2 }, { "CommandName": "Remove-PnPWikiPage", "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Rank": 1, - "Id": 1153 + "Id": 1153, + "Rank": 1 }, { "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Rank": 1, - "Id": 1154 + "Id": 1154, + "Rank": 1 }, { "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Rank": 2, - "Id": 1155 + "Id": 1155, + "Rank": 2 }, { "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Rank": 3, - "Id": 1156 + "Id": 1156, + "Rank": 3 }, { "CommandName": "Rename-PnPFolder", "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Rank": 1, - "Id": 1157 + "Id": 1157, + "Rank": 1 }, { "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, - "Id": 1158 + "Id": 1158, + "Rank": 1 }, { "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2, - "Id": 1159 + "Id": 1159, + "Rank": 2 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken", - "Rank": 1, - "Id": 1160 + "Id": 1160, + "Rank": 1 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Rank": 2, - "Id": 1161 + "Id": 1161, + "Rank": 2 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Rank": 3, - "Id": 1162 + "Id": 1162, + "Rank": 3 }, { "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Rank": 4, - "Id": 1163 + "Id": 1163, + "Rank": 4 }, { "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Rank": 1, - "Id": 1164 + "Id": 1164, + "Rank": 1 }, { "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Rank": 2, - "Id": 1165 + "Id": 1165, + "Rank": 2 }, { "CommandName": "Request-PnPReIndexList", "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Rank": 1, - "Id": 1166 + "Id": 1166, + "Rank": 1 }, { "CommandName": "Request-PnPReIndexWeb", "Command": "Request-PnPReIndexWeb", - "Rank": 1, - "Id": 1167 + "Id": 1167, + "Rank": 1 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Rank": 1, - "Id": 1168 + "Id": 1168, + "Rank": 1 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Rank": 2, - "Id": 1169 + "Id": 1169, + "Rank": 2 }, { "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Rank": 3, - "Id": 1170 + "Id": 1170, + "Rank": 3 }, { "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Rank": 1, - "Id": 1171 + "Id": 1171, + "Rank": 1 }, { "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Rank": 2, - "Id": 1172 + "Id": 1172, + "Rank": 2 }, { "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\"", - "Rank": 1, - "Id": 1173 + "Id": 1173, + "Rank": 1 }, { "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Rank": 2, - "Id": 1174 + "Id": 1174, + "Rank": 2 }, { "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1, - "Id": 1175 + "Id": 1175, + "Rank": 1 }, { "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Rank": 1, - "Id": 1176 + "Id": 1176, + "Rank": 1 }, { "CommandName": "Resolve-PnPFolder", "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Rank": 1, - "Id": 1177 + "Id": 1177, + "Rank": 1 }, { "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1, - "Id": 1178 + "Id": 1178, + "Rank": 1 }, { "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1, - "Id": 1179 + "Id": 1179, + "Rank": 1 }, { "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Rank": 2, - "Id": 1180 + "Id": 1180, + "Rank": 2 }, { "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 3, - "Id": 1181 + "Id": 1181, + "Rank": 3 }, { "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1, - "Id": 1182 + "Id": 1182, + "Rank": 1 }, { "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2, - "Id": 1183 + "Id": 1183, + "Rank": 2 }, { "CommandName": "Restore-PnPRecycleBinItem", "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1, - "Id": 1184 + "Id": 1184, + "Rank": 1 }, { "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "Id": 1185 + "Id": 1185, + "Rank": 1 }, { "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2, - "Id": 1186 + "Id": 1186, + "Rank": 2 }, { "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1, - "Id": 1187 + "Id": 1187, + "Rank": 1 }, { "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2, - "Id": 1188 + "Id": 1188, + "Rank": 2 }, { "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Rank": 3, - "Id": 1189 + "Id": 1189, + "Rank": 3 }, { "CommandName": "Revoke-PnPAzureADAppSitePermission", "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Rank": 1, - "Id": 1190 + "Id": 1190, + "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": 1191 + "Id": 1191, + "Rank": 1 }, { "CommandName": "Revoke-PnPSiteDesignRights", "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1, - "Id": 1192 + "Id": 1192, + "Rank": 1 }, { "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1, - "Id": 1193 + "Id": 1193, + "Rank": 1 }, { "CommandName": "Revoke-PnPUserSession", "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Rank": 1, - "Id": 1194 + "Id": 1194, + "Rank": 1 }, { "CommandName": "Save-PnPPageConversionLog", "Command": "Save-PnPPageConversionLog", - "Rank": 1, - "Id": 1195 + "Id": 1195, + "Rank": 1 }, { "CommandName": "Save-PnPSiteTemplate", "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Rank": 1, - "Id": 1196 + "Id": 1196, + "Rank": 1 }, { "CommandName": "Save-PnPTenantTemplate", "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Rank": 1, - "Id": 1197 + "Id": 1197, + "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": 1198 + "Id": 1198, + "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": 1199 + "Id": 1199, + "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": 1200 + "Id": 1200, + "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": 1201 + "Id": 1201, + "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": 1202 + "Id": 1202, + "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": 1203 + "Id": 1203, + "Rank": 6 }, { "CommandName": "Set-PnPAdaptiveScopeProperty", "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Rank": 1, - "Id": 1204 + "Id": 1204, + "Rank": 1 }, { "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1, - "Id": 1205 + "Id": 1205, + "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": 1206 + "Id": 1206, + "Rank": 2 }, { "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -On", - "Rank": 1, - "Id": 1207 + "Id": 1207, + "Rank": 1 }, { "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -Off", - "Rank": 2, - "Id": 1208 + "Id": 1208, + "Rank": 2 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -EnableAll", - "Rank": 1, - "Id": 1209 + "Id": 1209, + "Rank": 1 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -DisableAll", - "Rank": 2, - "Id": 1210 + "Id": 1210, + "Rank": 2 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7", - "Rank": 3, - "Id": 1211 + "Id": 1211, + "Rank": 3 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -TrimAuditLog", - "Rank": 4, - "Id": 1212 + "Id": 1212, + "Rank": 4 }, { "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Rank": 5, - "Id": 1213 + "Id": 1213, + "Rank": 5 }, { "CommandName": "Set-PnPAvailablePageLayouts", "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Rank": 1, - "Id": 1214 + "Id": 1214, + "Rank": 1 }, { "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Rank": 1, - "Id": 1215 + "Id": 1215, + "Rank": 1 }, { "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Rank": 2, - "Id": 1216 + "Id": 1216, + "Rank": 2 }, { "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, - "Id": 1217 + "Id": 1217, + "Rank": 1 }, { "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, - "Id": 1218 + "Id": 1218, + "Rank": 2 }, { "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Rank": 3, - "Id": 1219 + "Id": 1219, + "Rank": 3 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Rank": 1, - "Id": 1220 + "Id": 1220, + "Rank": 1 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Rank": 2, - "Id": 1221 + "Id": 1221, + "Rank": 2 }, { "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Rank": 3, - "Id": 1222 + "Id": 1222, + "Rank": 3 }, { "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Rank": 1, - "Id": 1223 + "Id": 1223, + "Rank": 1 }, { "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Rank": 2, - "Id": 1224 + "Id": 1224, + "Rank": 2 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Rank": 1, - "Id": 1225 + "Id": 1225, + "Rank": 1 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Rank": 2, - "Id": 1226 + "Id": 1226, + "Rank": 2 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Rank": 3, - "Id": 1227 + "Id": 1227, + "Rank": 3 }, { "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Rank": 4, - "Id": 1228 + "Id": 1228, + "Rank": 4 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 1, - "Id": 1229 + "Id": 1229, + "Rank": 1 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Rank": 2, - "Id": 1230 + "Id": 1230, + "Rank": 2 }, { "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 3, - "Id": 1231 + "Id": 1231, + "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": 1232 + "Id": 1232, + "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": 1233 + "Id": 1233, + "Rank": 5 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Rank": 1, - "Id": 1234 + "Id": 1234, + "Rank": 1 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Rank": 2, - "Id": 1235 + "Id": 1235, + "Rank": 2 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Rank": 3, - "Id": 1236 + "Id": 1236, + "Rank": 3 }, { "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Rank": 4, - "Id": 1237 + "Id": 1237, + "Rank": 4 }, { "CommandName": "Set-PnPDefaultContentTypeToList", "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Rank": 1, - "Id": 1238 + "Id": 1238, + "Rank": 1 }, { "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Rank": 1, - "Id": 1239 + "Id": 1239, + "Rank": 1 }, { "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Rank": 2, - "Id": 1240 + "Id": 1240, + "Rank": 2 }, { "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Rank": 3, - "Id": 1241 + "Id": 1241, + "Rank": 3 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Rank": 1, - "Id": 1242 + "Id": 1242, + "Rank": 1 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 2, - "Id": 1243 + "Id": 1243, + "Rank": 2 }, { "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 3, - "Id": 1244 + "Id": 1244, + "Rank": 3 }, { "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Rank": 1, - "Id": 1245 + "Id": 1245, + "Rank": 1 }, { "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Rank": 2, - "Id": 1246 + "Id": 1246, + "Rank": 2 }, { "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Rank": 1, - "Id": 1247 + "Id": 1247, + "Rank": 1 }, { "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Rank": 2, - "Id": 1248 + "Id": 1248, + "Rank": 2 }, { "CommandName": "Set-PnPField", "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Rank": 3, - "Id": 1249 + "Id": 1249, + "Rank": 3 }, { "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Rank": 1, - "Id": 1250 + "Id": 1250, + "Rank": 1 }, { "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Rank": 2, - "Id": 1251 + "Id": 1251, + "Rank": 2 }, { "CommandName": "Set-PnPFileCheckedOut", "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Rank": 1, - "Id": 1252 + "Id": 1252, + "Rank": 1 }, { "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, - "Id": 1253 + "Id": 1253, + "Rank": 1 }, { "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, - "Id": 1254 + "Id": 1254, + "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": 1255 + "Id": 1255, + "Rank": 3 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true", - "Rank": 1, - "Id": 1256 + "Id": 1256, + "Rank": 1 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Rank": 2, - "Id": 1257 + "Id": 1257, + "Rank": 2 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Rank": 3, - "Id": 1258 + "Id": 1258, + "Rank": 3 }, { "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -LogoUrl \"\"", - "Rank": 4, - "Id": 1259 + "Id": 1259, + "Rank": 4 }, { "CommandName": "Set-PnPGraphSubscription", "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Rank": 1, - "Id": 1260 + "Id": 1260, + "Rank": 1 }, { "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Rank": 1, - "Id": 1261 + "Id": 1261, + "Rank": 1 }, { "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Rank": 2, - "Id": 1262 + "Id": 1262, + "Rank": 2 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Rank": 1, - "Id": 1263 + "Id": 1263, + "Rank": 1 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Rank": 2, - "Id": 1264 + "Id": 1264, + "Rank": 2 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Rank": 3, - "Id": 1265 + "Id": 1265, + "Rank": 3 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Rank": 4, - "Id": 1266 + "Id": 1266, + "Rank": 4 }, { "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Rank": 5, - "Id": 1267 + "Id": 1267, + "Rank": 5 }, { "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Rank": 1, - "Id": 1268 + "Id": 1268, + "Rank": 1 }, { "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Rank": 2, - "Id": 1269 + "Id": 1269, + "Rank": 2 }, { "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Rank": 1, - "Id": 1270 + "Id": 1270, + "Rank": 1 }, { "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Rank": 2, - "Id": 1271 + "Id": 1271, + "Rank": 2 }, { "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Rank": 1, - "Id": 1272 + "Id": 1272, + "Rank": 1 }, { "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Rank": 2, - "Id": 1273 + "Id": 1273, + "Rank": 2 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Rank": 1, - "Id": 1274 + "Id": 1274, + "Rank": 1 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Rank": 2, - "Id": 1275 + "Id": 1275, + "Rank": 2 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Rank": 3, - "Id": 1276 + "Id": 1276, + "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": 1277 + "Id": 1277, + "Rank": 4 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Rank": 5, - "Id": 1278 + "Id": 1278, + "Rank": 5 }, { "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Rank": 6, - "Id": 1279 + "Id": 1279, + "Rank": 6 }, { "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 1, - "Id": 1280 + "Id": 1280, + "Rank": 1 }, { "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Rank": 2, - "Id": 1281 + "Id": 1281, + "Rank": 2 }, { "CommandName": "Set-PnPIndexedProperties", "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Rank": 1, - "Id": 1282 + "Id": 1282, + "Rank": 1 }, { "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Rank": 1, - "Id": 1283 + "Id": 1283, + "Rank": 1 }, { "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Rank": 2, - "Id": 1284 + "Id": 1284, + "Rank": 2 }, { "CommandName": "Set-PnPKnowledgeHubSite", "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Rank": 1, - "Id": 1285 + "Id": 1285, + "Rank": 1 }, { "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Rank": 1, - "Id": 1286 + "Id": 1286, + "Rank": 1 }, { "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Rank": 2, - "Id": 1287 + "Id": 1287, + "Rank": 2 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Rank": 1, - "Id": 1288 + "Id": 1288, + "Rank": 1 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Rank": 2, - "Id": 1289 + "Id": 1289, + "Rank": 2 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Rank": 3, - "Id": 1290 + "Id": 1290, + "Rank": 3 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Rank": 4, - "Id": 1291 + "Id": 1291, + "Rank": 4 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Rank": 5, - "Id": 1292 + "Id": 1292, + "Rank": 5 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Rank": 6, - "Id": 1293 + "Id": 1293, + "Rank": 6 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Rank": 7, - "Id": 1294 + "Id": 1294, + "Rank": 7 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Rank": 8, - "Id": 1295 + "Id": 1295, + "Rank": 8 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Rank": 9, - "Id": 1296 + "Id": 1296, + "Rank": 9 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Rank": 10, - "Id": 1297 + "Id": 1297, + "Rank": 10 }, { "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Rank": 11, - "Id": 1298 + "Id": 1298, + "Rank": 11 }, { "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Rank": 1, - "Id": 1299 + "Id": 1299, + "Rank": 1 }, { "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Rank": 2, - "Id": 1300 + "Id": 1300, + "Rank": 2 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1, - "Id": 1301 + "Id": 1301, + "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": 1302 + "Id": 1302, + "Rank": 2 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 3, - "Id": 1303 + "Id": 1303, + "Rank": 3 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Rank": 4, - "Id": 1304 + "Id": 1304, + "Rank": 4 }, { "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Rank": 5, - "Id": 1305 + "Id": 1305, + "Rank": 5 }, { "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1, - "Id": 1306 + "Id": 1306, + "Rank": 1 }, { "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Rank": 2, - "Id": 1307 + "Id": 1307, + "Rank": 2 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, - "Id": 1308 + "Id": 1308, + "Rank": 1 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, - "Id": 1309 + "Id": 1309, + "Rank": 2 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3, - "Id": 1310 + "Id": 1310, + "Rank": 3 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Rank": 4, - "Id": 1311 + "Id": 1311, + "Rank": 4 }, { "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Rank": 5, - "Id": 1312 + "Id": 1312, + "Rank": 5 }, { "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1, - "Id": 1313 + "Id": 1313, + "Rank": 1 }, { "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2, - "Id": 1314 + "Id": 1314, + "Rank": 2 }, { "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Rank": 1, - "Id": 1315 + "Id": 1315, + "Rank": 1 }, { "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Rank": 2, - "Id": 1316 + "Id": 1316, + "Rank": 2 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 1, - "Id": 1317 + "Id": 1317, + "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": 1318 + "Id": 1318, + "Rank": 2 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 3, - "Id": 1319 + "Id": 1319, + "Rank": 3 }, { "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 4, - "Id": 1320 + "Id": 1320, + "Rank": 4 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Rank": 1, - "Id": 1321 + "Id": 1321, + "Rank": 1 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "Id": 1322 + "Id": 1322, + "Rank": 2 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3, - "Id": 1323 + "Id": 1323, + "Rank": 3 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Rank": 1, - "Id": 1324 + "Id": 1324, + "Rank": 1 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "Id": 1325 + "Id": 1325, + "Rank": 2 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3, - "Id": 1326 + "Id": 1326, + "Rank": 3 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Rank": 1, - "Id": 1327 + "Id": 1327, + "Rank": 1 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "Id": 1328 + "Id": 1328, + "Rank": 2 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3, - "Id": 1329 + "Id": 1329, + "Rank": 3 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Rank": 1, - "Id": 1330 + "Id": 1330, + "Rank": 1 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "Id": 1331 + "Id": 1331, + "Rank": 2 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3, - "Id": 1332 + "Id": 1332, + "Rank": 3 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Rank": 1, - "Id": 1333 + "Id": 1333, + "Rank": 1 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "Id": 1334 + "Id": 1334, + "Rank": 2 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3, - "Id": 1335 + "Id": 1335, + "Rank": 3 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Rank": 1, - "Id": 1336 + "Id": 1336, + "Rank": 1 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Rank": 2, - "Id": 1337 + "Id": 1337, + "Rank": 2 }, { "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3, - "Id": 1338 + "Id": 1338, + "Rank": 3 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1, - "Id": 1339 + "Id": 1339, + "Rank": 1 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2, - "Id": 1340 + "Id": 1340, + "Rank": 2 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Rank": 3, - "Id": 1341 + "Id": 1341, + "Rank": 3 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Rank": 4, - "Id": 1342 + "Id": 1342, + "Rank": 4 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Rank": 5, - "Id": 1343 + "Id": 1343, + "Rank": 5 }, { "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6, - "Id": 1344 + "Id": 1344, + "Rank": 6 }, { "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Rank": 1, - "Id": 1345 + "Id": 1345, + "Rank": 1 }, { "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Rank": 2, - "Id": 1346 + "Id": 1346, + "Rank": 2 }, { "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Rank": 1, - "Id": 1347 + "Id": 1347, + "Rank": 1 }, { "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -On", - "Rank": 2, - "Id": 1348 + "Id": 1348, + "Rank": 2 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Rank": 1, - "Id": 1349 + "Id": 1349, + "Rank": 1 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Rank": 2, - "Id": 1350 + "Id": 1350, + "Rank": 2 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Rank": 3, - "Id": 1351 + "Id": 1351, + "Rank": 3 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Rank": 4, - "Id": 1352 + "Id": 1352, + "Rank": 4 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Rank": 5, - "Id": 1353 + "Id": 1353, + "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": 1354 + "Id": 1354, + "Rank": 6 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7, - "Id": 1355 + "Id": 1355, + "Rank": 7 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8, - "Id": 1356 + "Id": 1356, + "Rank": 8 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9, - "Id": 1357 + "Id": 1357, + "Rank": 9 }, { "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10, - "Id": 1358 + "Id": 1358, + "Rank": 10 }, { "CommandName": "Set-PnPPageTextPart", "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Rank": 1, - "Id": 1359 + "Id": 1359, + "Rank": 1 }, { "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Rank": 1, - "Id": 1360 + "Id": 1360, + "Rank": 1 }, { "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Rank": 2, - "Id": 1361 + "Id": 1361, + "Rank": 2 }, { "CommandName": "Set-PnPPlannerBucket", "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Rank": 1, - "Id": 1362 + "Id": 1362, + "Rank": 1 }, { "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Rank": 1, - "Id": 1363 + "Id": 1363, + "Rank": 1 }, { "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Rank": 2, - "Id": 1364 + "Id": 1364, + "Rank": 2 }, { "CommandName": "Set-PnPPlannerPlan", "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Rank": 1, - "Id": 1365 + "Id": 1365, + "Rank": 1 }, { "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Rank": 1, - "Id": 1366 + "Id": 1366, + "Rank": 1 }, { "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Rank": 2, - "Id": 1367 + "Id": 1367, + "Rank": 2 }, { "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Rank": 3, - "Id": 1368 + "Id": 1368, + "Rank": 3 }, { "CommandName": "Set-PnPPlannerUserPolicy", "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1, - "Id": 1369 + "Id": 1369, + "Rank": 1 }, { "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Rank": 1, - "Id": 1370 + "Id": 1370, + "Rank": 1 }, { "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Rank": 2, - "Id": 1371 + "Id": 1371, + "Rank": 2 }, { "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Rank": 3, - "Id": 1372 + "Id": 1372, + "Rank": 3 }, { "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Rank": 1, - "Id": 1373 + "Id": 1373, + "Rank": 1 }, { "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled", - "Rank": 2, - "Id": 1374 + "Id": 1374, + "Rank": 2 }, { "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Rank": 3, - "Id": 1375 + "Id": 1375, + "Rank": 3 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Rank": 1, - "Id": 1376 + "Id": 1376, + "Rank": 1 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Rank": 2, - "Id": 1377 + "Id": 1377, + "Rank": 2 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Rank": 3, - "Id": 1378 + "Id": 1378, + "Rank": 3 }, { "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Rank": 4, - "Id": 1379 + "Id": 1379, + "Rank": 4 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Rank": 1, - "Id": 1380 + "Id": 1380, + "Rank": 1 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2, - "Id": 1381 + "Id": 1381, + "Rank": 2 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3, - "Id": 1382 + "Id": 1382, + "Rank": 3 }, { "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4, - "Id": 1383 + "Id": 1383, + "Rank": 4 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Rank": 1, - "Id": 1384 + "Id": 1384, + "Rank": 1 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Rank": 2, - "Id": 1385 + "Id": 1385, + "Rank": 2 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Rank": 3, - "Id": 1386 + "Id": 1386, + "Rank": 3 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Rank": 4, - "Id": 1387 + "Id": 1387, + "Rank": 4 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Rank": 5, - "Id": 1388 + "Id": 1388, + "Rank": 5 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Rank": 6, - "Id": 1389 + "Id": 1389, + "Rank": 6 }, { "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Rank": 7, - "Id": 1390 + "Id": 1390, + "Rank": 7 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification \"HBI\"", - "Rank": 1, - "Id": 1391 + "Id": 1391, + "Rank": 1 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification $null", - "Rank": 2, - "Id": 1392 + "Id": 1392, + "Rank": 2 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows", - "Rank": 3, - "Id": 1393 + "Id": 1393, + "Rank": 3 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows:$false", - "Rank": 4, - "Id": 1394 + "Id": 1394, + "Rank": 4 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Rank": 5, - "Id": 1395 + "Id": 1395, + "Rank": 5 }, { "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -NoScriptSite $false", - "Rank": 6, - "Id": 1396 + "Id": 1396, + "Rank": 6 }, { "CommandName": "Set-PnPSiteClassification", "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Rank": 1, - "Id": 1397 + "Id": 1397, + "Rank": 1 }, { "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Open", - "Rank": 1, - "Id": 1398 + "Id": 1398, + "Rank": 1 }, { "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Closed", - "Rank": 2, - "Id": 1399 + "Id": 1399, + "Rank": 2 }, { "CommandName": "Set-PnPSiteDesign", "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Rank": 1, - "Id": 1400 + "Id": 1400, + "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": 1401 + "Id": 1401, + "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": 1402 + "Id": 1402, + "Rank": 1 }, { "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Rank": 2, - "Id": 1403 + "Id": 1403, + "Rank": 2 }, { "CommandName": "Set-PnPSitePolicy", "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 1, - "Id": 1404 + "Id": 1404, + "Rank": 1 }, { "CommandName": "Set-PnPSiteScript", "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1, - "Id": 1405 + "Id": 1405, + "Rank": 1 }, { "CommandName": "Set-PnPSiteScriptPackage", "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1, - "Id": 1406 + "Id": 1406, + "Rank": 1 }, { "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Rank": 1, - "Id": 1407 + "Id": 1407, + "Rank": 1 }, { "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Rank": 2, - "Id": 1408 + "Id": 1408, + "Rank": 2 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 1, - "Id": 1409 + "Id": 1409, + "Rank": 1 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 2, - "Id": 1410 + "Id": 1410, + "Rank": 2 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 3, - "Id": 1411 + "Id": 1411, + "Rank": 3 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 4, - "Id": 1412 + "Id": 1412, + "Rank": 4 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 5, - "Id": 1413 + "Id": 1413, + "Rank": 5 }, { "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 6, - "Id": 1414 + "Id": 1414, + "Rank": 6 }, { "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 1, - "Id": 1415 + "Id": 1415, + "Rank": 1 }, { "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 2, - "Id": 1416 + "Id": 1416, + "Rank": 2 }, { "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1, - "Id": 1417 + "Id": 1417, + "Rank": 1 }, { "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 2, - "Id": 1418 + "Id": 1418, + "Rank": 2 }, { "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1, - "Id": 1419 + "Id": 1419, + "Rank": 1 }, { "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 2, - "Id": 1420 + "Id": 1420, + "Rank": 2 }, { "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Rank": 1, - "Id": 1421 + "Id": 1421, + "Rank": 1 }, { "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Rank": 2, - "Id": 1422 + "Id": 1422, + "Rank": 2 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Rank": 1, - "Id": 1423 + "Id": 1423, + "Rank": 1 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Rank": 2, - "Id": 1424 + "Id": 1424, + "Rank": 2 }, { "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Rank": 3, - "Id": 1425 + "Id": 1425, + "Rank": 3 }, { "CommandName": "Set-PnPTeamifyPromptHidden", "Command": "Set-PnPTeamifyPromptHidden", - "Rank": 1, - "Id": 1426 + "Id": 1426, + "Rank": 1 }, { "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Rank": 1, - "Id": 1427 + "Id": 1427, + "Rank": 1 }, { "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Rank": 2, - "Id": 1428 + "Id": 1428, + "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": 1429 + "Id": 1429, + "Rank": 1 }, { "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Rank": 2, - "Id": 1430 + "Id": 1430, + "Rank": 2 }, { "CommandName": "Set-PnPTeamsTab", "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Rank": 1, - "Id": 1431 + "Id": 1431, + "Rank": 1 }, { "CommandName": "Set-PnPTeamsTag", "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Rank": 1, - "Id": 1432 + "Id": 1432, + "Rank": 1 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Rank": 1, - "Id": 1433 + "Id": 1433, + "Rank": 1 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Rank": 2, - "Id": 1434 + "Id": 1434, + "Rank": 2 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Rank": 3, - "Id": 1435 + "Id": 1435, + "Rank": 3 }, { "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Rank": 4, - "Id": 1436 + "Id": 1436, + "Rank": 4 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Rank": 1, - "Id": 1437 + "Id": 1437, + "Rank": 1 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Rank": 2, - "Id": 1438 + "Id": 1438, + "Rank": 2 }, { "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Rank": 3, - "Id": 1439 + "Id": 1439, + "Rank": 3 }, { "CommandName": "Set-PnPTeamsTeamPicture", "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Rank": 1, - "Id": 1440 + "Id": 1440, + "Rank": 1 }, { "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Rank": 1, - "Id": 1441 + "Id": 1441, + "Rank": 1 }, { "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Rank": 2, - "Id": 1442 + "Id": 1442, + "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": 1443 + "Id": 1443, + "Rank": 1 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Rank": 2, - "Id": 1444 + "Id": 1444, + "Rank": 2 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Rank": 3, - "Id": 1445 + "Id": 1445, + "Rank": 3 }, { "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Rank": 4, - "Id": 1446 + "Id": 1446, + "Rank": 4 }, { "CommandName": "Set-PnPTenantAppCatalogUrl", "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Rank": 1, - "Id": 1447 + "Id": 1447, + "Rank": 1 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Rank": 1, - "Id": 1448 + "Id": 1448, + "Rank": 1 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Rank": 2, - "Id": 1449 + "Id": 1449, + "Rank": 2 }, { "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Rank": 3, - "Id": 1450 + "Id": 1450, + "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": 1451 + "Id": 1451, + "Rank": 1 }, { "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Rank": 2, - "Id": 1452 + "Id": 1452, + "Rank": 2 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Rank": 1, - "Id": 1453 + "Id": 1453, + "Rank": 1 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Rank": 2, - "Id": 1454 + "Id": 1454, + "Rank": 2 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 3, - "Id": 1455 + "Id": 1455, + "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": 1456 + "Id": 1456, + "Rank": 4 }, { "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Rank": 5, - "Id": 1457 + "Id": 1457, + "Rank": 5 }, { "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Rank": 1, - "Id": 1458 + "Id": 1458, + "Rank": 1 }, { "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Rank": 2, - "Id": 1459 + "Id": 1459, + "Rank": 2 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Rank": 1, - "Id": 1460 + "Id": 1460, + "Rank": 1 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2, - "Id": 1461 + "Id": 1461, + "Rank": 2 }, { "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 3, - "Id": 1462 + "Id": 1462, + "Rank": 3 }, { "CommandName": "Set-PnPTermGroup", "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Rank": 1, - "Id": 1463 + "Id": 1463, + "Rank": 1 }, { "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Rank": 1, - "Id": 1464 + "Id": 1464, + "Rank": 1 }, { "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Rank": 2, - "Id": 1465 + "Id": 1465, + "Rank": 2 }, { "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Rank": 3, - "Id": 1466 + "Id": 1466, + "Rank": 3 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme", - "Rank": 1, - "Id": 1467 + "Id": 1467, + "Rank": 1 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Rank": 2, - "Id": 1468 + "Id": 1468, + "Rank": 2 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Rank": 3, - "Id": 1469 + "Id": 1469, + "Rank": 3 }, { "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Rank": 4, - "Id": 1470 + "Id": 1470, + "Rank": 4 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Rank": 1, - "Id": 1471 + "Id": 1471, + "Rank": 1 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Rank": 2, - "Id": 1472 + "Id": 1472, + "Rank": 2 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Rank": 3, - "Id": 1473 + "Id": 1473, + "Rank": 3 }, { "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -Off", - "Rank": 4, - "Id": 1474 + "Id": 1474, + "Rank": 4 }, { "CommandName": "Set-PnPUserOneDriveQuota", "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Rank": 1, - "Id": 1475 + "Id": 1475, + "Rank": 1 }, { "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Rank": 1, - "Id": 1476 + "Id": 1476, + "Rank": 1 }, { "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Rank": 2, - "Id": 1477 + "Id": 1477, + "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": 1478 + "Id": 1478, + "Rank": 1 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Rank": 2, - "Id": 1479 + "Id": 1479, + "Rank": 2 }, { "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "Rank": 3, - "Id": 1480 + "Id": 1480, + "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": 1481 + "Id": 1481, + "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": 1482 + "Id": 1482, + "Rank": 1 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Rank": 2, - "Id": 1483 + "Id": 1483, + "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": 1484 + "Id": 1484, + "Rank": 3 }, { "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Rank": 4, - "Id": 1485 + "Id": 1485, + "Rank": 4 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Rank": 1, - "Id": 1486 + "Id": 1486, + "Rank": 1 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Rank": 2, - "Id": 1487 + "Id": 1487, + "Rank": 2 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Rank": 3, - "Id": 1488 + "Id": 1488, + "Rank": 3 }, { "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -NoCrawl:$true", - "Rank": 4, - "Id": 1489 + "Id": 1489, + "Rank": 4 }, { "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Rank": 1, - "Id": 1490 + "Id": 1490, + "Rank": 1 }, { "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Rank": 2, - "Id": 1491 + "Id": 1491, + "Rank": 2 }, { "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Rank": 3, - "Id": 1492 + "Id": 1492, + "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": 1493 + "Id": 1493, + "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": 1494 + "Id": 1494, + "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": 1495 + "Id": 1495, + "Rank": 1 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 1, - "Id": 1496 + "Id": 1496, + "Rank": 1 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Rank": 2, - "Id": 1497 + "Id": 1497, + "Rank": 2 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 3, - "Id": 1498 + "Id": 1498, + "Rank": 3 }, { "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Rank": 4, - "Id": 1499 + "Id": 1499, + "Rank": 4 }, { "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme MyTheme", - "Rank": 1, - "Id": 1500 + "Id": 1500, + "Rank": 1 }, { "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Rank": 2, - "Id": 1501 + "Id": 1501, + "Rank": 2 }, { "CommandName": "Set-PnPWikiPageContent", "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Rank": 1, - "Id": 1502 + "Id": 1502, + "Rank": 1 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Rank": 1, - "Id": 1503 + "Id": 1503, + "Rank": 1 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Rank": 2, - "Id": 1504 + "Id": 1504, + "Rank": 2 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Rank": 3, - "Id": 1505 + "Id": 1505, + "Rank": 3 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Rank": 4, - "Id": 1506 + "Id": 1506, + "Rank": 4 }, { "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Rank": 5, - "Id": 1507 + "Id": 1507, + "Rank": 5 }, { "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Rank": 1, - "Id": 1508 + "Id": 1508, + "Rank": 1 }, { "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Rank": 2, - "Id": 1509 + "Id": 1509, + "Rank": 2 }, { "CommandName": "Sync-PnPAppToTeams", "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 1510 + "Id": 1510, + "Rank": 1 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Rank": 1, - "Id": 1511 + "Id": 1511, + "Rank": 1 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Rank": 2, - "Id": 1512 + "Id": 1512, + "Rank": 2 }, { "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Rank": 3, - "Id": 1513 + "Id": 1513, + "Rank": 3 }, { "CommandName": "Test-PnPListItemIsRecord", "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Rank": 1, - "Id": 1514 + "Id": 1514, + "Rank": 1 }, { "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Rank": 1, - "Id": 1515 + "Id": 1515, + "Rank": 1 }, { "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1, - "Id": 1516 + "Id": 1516, + "Rank": 1 }, { "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2, - "Id": 1517 + "Id": 1517, + "Rank": 2 }, { "CommandName": "Test-PnPTenantTemplate", "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Rank": 1, - "Id": 1518 + "Id": 1518, + "Rank": 1 }, { "CommandName": "Undo-PnPFileCheckedOut", "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Rank": 1, - "Id": 1519 + "Id": 1519, + "Rank": 1 }, { "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 1520 + "Id": 1520, + "Rank": 1 }, { "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "Id": 1521 + "Id": 1521, + "Rank": 2 }, { "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 1522 + "Id": 1522, + "Rank": 1 }, { "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "Id": 1523 + "Id": 1523, + "Rank": 2 }, { "CommandName": "Unpublish-PnPContentType", "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Rank": 1, - "Id": 1524 + "Id": 1524, + "Rank": 1 }, { "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1, - "Id": 1525 + "Id": 1525, + "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": 1526 + "Id": 1526, + "Rank": 2 }, { "CommandName": "Unregister-PnPHubSite", "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1, - "Id": 1527 + "Id": 1527, + "Rank": 1 }, { "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1, - "Id": 1528 + "Id": 1528, + "Rank": 1 }, { "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2, - "Id": 1529 + "Id": 1529, + "Rank": 2 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 1, - "Id": 1530 + "Id": 1530, + "Rank": 1 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Rank": 2, - "Id": 1531 + "Id": 1531, + "Rank": 2 }, { "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 3, - "Id": 1532 + "Id": 1532, + "Rank": 3 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Rank": 1, - "Id": 1533 + "Id": 1533, + "Rank": 1 }, { "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2, - "Id": 1534 + "Id": 1534, + "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": 1535 + "Id": 1535, + "Rank": 3 }, { "CommandName": "Update-PnPTeamsApp", "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Rank": 1, - "Id": 1536 + "Id": 1536, + "Rank": 1 }, { "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1, - "Id": 1537 + "Id": 1537, + "Rank": 1 }, { "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2, - "Id": 1538 + "Id": 1538, + "Rank": 2 }, { "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Rank": 3, - "Id": 1539 + "Id": 1539, + "Rank": 3 }, { "CommandName": "Update-PnPUserType", "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Rank": 1, - "Id": 1540 + "Id": 1540, + "Rank": 1 } ] diff --git a/version.txt b/version.txt index 5ca525ee5..9b61c686c 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.22 \ No newline at end of file +2.2.23 \ No newline at end of file From fff661b8175237004a74b9c457920fbbd7f5e852 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Mon, 24 Jul 2023 02:49:54 +0000 Subject: [PATCH 19/21] Nightly publish to PowerShell Gallery --- pnpframework_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 3080 ++++++++--------- version.txt | 2 +- 3 files changed, 1542 insertions(+), 1542 deletions(-) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index 7a67e4848..754955291 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -4d868c467d6d8eb7be1d87c78223d4b98bcd0e5b \ No newline at end of file +0e5ab3236b6164ef9bb16e1d9723760c4b39147a \ 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 2e1ef28bb..83d05c7dd 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9242 +1,9242 @@ [ { + "Id": 1, "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -List \"Demo List\"", - "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)", - "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\"", - "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))", - "Id": 4, "Rank": 4 }, { + "Id": 5, "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Id": 5, "Rank": 1 }, { + "Id": 6, "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Id": 6, "Rank": 2 }, { + "Id": 7, "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Id": 7, "Rank": 3 }, { + "Id": 8, "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "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`\"}", - "Id": 9, "Rank": 1 }, { + "Id": 10, "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "Id": 10, "Rank": 1 }, { + "Id": 11, "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Id": 11, "Rank": 2 }, { + "Id": 12, "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "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", - "Id": 13, "Rank": 2 }, { + "Id": 14, "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Id": 14, "Rank": 3 }, { + "Id": 15, "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "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", - "Id": 16, "Rank": 2 }, { + "Id": 17, "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Id": 17, "Rank": 3 }, { + "Id": 18, "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "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\"", - "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", - "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\"", - "Id": 21, "Rank": 2 }, { + "Id": 22, "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "Id": 22, "Rank": 3 }, { + "Id": 23, "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\"", - "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", - "Id": 24, "Rank": 5 }, { + "Id": 25, "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "Id": 25, "Rank": 1 }, { + "Id": 26, "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Id": 26, "Rank": 2 }, { + "Id": 27, "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Id": 27, "Rank": 1 }, { + "Id": 28, "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Id": 28, "Rank": 2 }, { + "Id": 29, "CommandName": "Add-PnPContentTypeToList", "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "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`\"}\"", - "Id": 30, "Rank": 1 }, { + "Id": 31, "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "Id": 31, "Rank": 1 }, { + "Id": 32, "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "Id": 32, "Rank": 2 }, { + "Id": 33, "CommandName": "Add-PnPDocumentSet", "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "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", - "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", - "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", - "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", - "Id": 37, "Rank": 4 }, { + "Id": 38, "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "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\"", - "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\"", - "Id": 40, "Rank": 3 }, { + "Id": 41, "CommandName": "Add-PnPField", "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "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\"", - "Id": 42, "Rank": 5 }, { + "Id": 43, "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "Id": 43, "Rank": 6 }, { + "Id": 44, "CommandName": "Add-PnPFieldToContentType", "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Id": 44, "Rank": 1 }, { + "Id": 45, "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Id": 45, "Rank": 1 }, { + "Id": 46, "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "Id": 46, "Rank": 2 }, { + "Id": 47, "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "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\"}", - "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\"}", - "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}", - "Id": 50, "Rank": 6 }, { + "Id": 51, "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Id": 51, "Rank": 7 }, { + "Id": 52, "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "Id": 52, "Rank": 8 }, { + "Id": 53, "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 53, "Rank": 1 }, { + "Id": 54, "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "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)", - "Id": 55, "Rank": 3 }, { + "Id": 56, "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 56, "Rank": 1 }, { + "Id": 57, "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "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", - "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", - "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)", - "Id": 60, "Rank": 3 }, { + "Id": 61, "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "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\"", - "Id": 62, "Rank": 2 }, { + "Id": 63, "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "Id": 63, "Rank": 3 }, { + "Id": 64, "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "Id": 64, "Rank": 4 }, { + "Id": 65, "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "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\"", - "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\"", - "Id": 67, "Rank": 2 }, { + "Id": 68, "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Id": 68, "Rank": 1 }, { + "Id": 69, "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Id": 69, "Rank": 2 }, { + "Id": 70, "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Id": 70, "Rank": 3 }, { + "Id": 71, "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 71, "Rank": 1 }, { + "Id": 72, "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Id": 72, "Rank": 2 }, { + "Id": 73, "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "Id": 73, "Rank": 3 }, { + "Id": 74, "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 74, "Rank": 1 }, { + "Id": 75, "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Id": 75, "Rank": 2 }, { + "Id": 76, "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Id": 76, "Rank": 1 }, { + "Id": 77, "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", - "Id": 77, "Rank": 2 }, { + "Id": 78, "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", - "Id": 78, "Rank": 3 }, { + "Id": 79, "CommandName": "Add-PnPFolderUserSharingLink", "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 79, "Rank": 1 }, { + "Id": 80, "CommandName": "Add-PnPFolderUserSharingLink", "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 80, "Rank": 2 }, { + "Id": 81, "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Id": 81, "Rank": 1 }, { + "Id": 82, "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Id": 82, "Rank": 2 }, { + "Id": 83, "CommandName": "Add-PnPHtmlPublishingPageLayout", "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Id": 83, "Rank": 1 }, { + "Id": 84, "CommandName": "Add-PnPHubSiteAssociation", "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "Id": 84, "Rank": 1 }, { + "Id": 85, "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "Id": 85, "Rank": 1 }, { + "Id": 86, "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "Id": 86, "Rank": 2 }, { + "Id": 87, "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": 87, "Rank": 3 }, { + "Id": 88, "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "Id": 88, "Rank": 1 }, { + "Id": 89, "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Id": 89, "Rank": 2 }, { + "Id": 90, "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Id": 90, "Rank": 1 }, { + "Id": 91, "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "Id": 91, "Rank": 2 }, { + "Id": 92, "CommandName": "Add-PnPListDesign", "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "Id": 92, "Rank": 1 }, { + "Id": 93, "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": 93, "Rank": 2 }, { + "Id": 94, "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Id": 94, "Rank": 1 }, { + "Id": 95, "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Id": 95, "Rank": 2 }, { + "Id": 96, "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Id": 96, "Rank": 3 }, { + "Id": 97, "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 97, "Rank": 1 }, { + "Id": 98, "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 98, "Rank": 2 }, { + "Id": 99, "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "Id": 99, "Rank": 3 }, { + "Id": 100, "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "Id": 100, "Rank": 4 }, { + "Id": 101, "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "Id": 101, "Rank": 5 }, { + "Id": 102, "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "Id": 102, "Rank": 1 }, { + "Id": 103, "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "Id": 103, "Rank": 2 }, { + "Id": 104, "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "Id": 104, "Rank": 3 }, { + "Id": 105, "CommandName": "Add-PnPListItemComment", "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Id": 105, "Rank": 1 }, { + "Id": 106, "CommandName": "Add-PnPMasterPage", "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "Id": 106, "Rank": 1 }, { + "Id": 107, "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 107, "Rank": 1 }, { + "Id": 108, "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Id": 108, "Rank": 2 }, { + "Id": 109, "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 109, "Rank": 1 }, { + "Id": 110, "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Id": 110, "Rank": 2 }, { + "Id": 111, "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "Id": 111, "Rank": 1 }, { + "Id": 112, "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Id": 112, "Rank": 2 }, { + "Id": 113, "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Id": 113, "Rank": 3 }, { + "Id": 114, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "Id": 114, "Rank": 1 }, { + "Id": 115, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", - "Id": 115, "Rank": 2 }, { + "Id": 116, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "Id": 116, "Rank": 3 }, { + "Id": 117, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "Id": 117, "Rank": 4 }, { + "Id": 118, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Id": 118, "Rank": 5 }, { + "Id": 119, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Id": 119, "Rank": 6 }, { + "Id": 120, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Id": 120, "Rank": 7 }, { + "Id": 121, "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "Id": 121, "Rank": 8 }, { + "Id": 122, "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Id": 122, "Rank": 1 }, { + "Id": 123, "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": 123, "Rank": 2 }, { + "Id": 124, "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "Id": 124, "Rank": 3 }, { + "Id": 125, "CommandName": "Add-PnPOrgNewsSite", "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Id": 125, "Rank": 1 }, { + "Id": 126, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\"", - "Id": 126, "Rank": 1 }, { + "Id": 127, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Id": 127, "Rank": 2 }, { + "Id": 128, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Id": 128, "Rank": 3 }, { + "Id": 129, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Id": 129, "Rank": 4 }, { + "Id": 130, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Id": 130, "Rank": 5 }, { + "Id": 131, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Id": 131, "Rank": 6 }, { + "Id": 132, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Id": 132, "Rank": 7 }, { + "Id": 133, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Id": 133, "Rank": 8 }, { + "Id": 134, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Id": 134, "Rank": 9 }, { + "Id": 135, "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Id": 135, "Rank": 10 }, { + "Id": 136, "CommandName": "Add-PnPPageImageWebPart", "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Id": 136, "Rank": 1 }, { + "Id": 137, "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": 137, "Rank": 2 }, { + "Id": 138, "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Id": 138, "Rank": 1 }, { + "Id": 139, "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Id": 139, "Rank": 2 }, { + "Id": 140, "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Id": 140, "Rank": 1 }, { + "Id": 141, "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Id": 141, "Rank": 2 }, { + "Id": 142, "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", - "Id": 142, "Rank": 3 }, { + "Id": 143, "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Id": 143, "Rank": 1 }, { + "Id": 144, "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Id": 144, "Rank": 2 }, { + "Id": 145, "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Id": 145, "Rank": 3 }, { + "Id": 146, "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Id": 146, "Rank": 1 }, { + "Id": 147, "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Id": 147, "Rank": 2 }, { + "Id": 148, "CommandName": "Add-PnPPlannerRoster", "Command": "Add-PnPPlannerRoster", - "Id": 148, "Rank": 1 }, { + "Id": 149, "CommandName": "Add-PnPPlannerRosterMember", "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 149, "Rank": 1 }, { + "Id": 150, "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Id": 150, "Rank": 1 }, { + "Id": 151, "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Id": 151, "Rank": 2 }, { + "Id": 152, "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": 152, "Rank": 3 }, { + "Id": 153, "CommandName": "Add-PnPPublishingImageRendition", "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Id": 153, "Rank": 1 }, { + "Id": 154, "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Id": 154, "Rank": 1 }, { + "Id": 155, "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "Id": 155, "Rank": 2 }, { + "Id": 156, "CommandName": "Add-PnPPublishingPageLayout", "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Id": 156, "Rank": 1 }, { + "Id": 157, "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Id": 157, "Rank": 1 }, { + "Id": 158, "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Id": 158, "Rank": 2 }, { + "Id": 159, "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Id": 159, "Rank": 3 }, { + "Id": 160, "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 160, "Rank": 1 }, { + "Id": 161, "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 161, "Rank": 2 }, { + "Id": 162, "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Id": 162, "Rank": 3 }, { + "Id": 163, "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog", - "Id": 163, "Rank": 1 }, { + "Id": 164, "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Id": 164, "Rank": 2 }, { + "Id": 165, "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": 165, "Rank": 1 }, { + "Id": 166, "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": 166, "Rank": 2 }, { + "Id": 167, "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": 167, "Rank": 3 }, { + "Id": 168, "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Id": 168, "Rank": 1 }, { + "Id": 169, "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Id": 169, "Rank": 2 }, { + "Id": 170, "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": 170, "Rank": 3 }, { + "Id": 171, "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Id": 171, "Rank": 1 }, { + "Id": 172, "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Id": 172, "Rank": 2 }, { + "Id": 173, "CommandName": "Add-PnPSiteScript", "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "Id": 173, "Rank": 1 }, { + "Id": 174, "CommandName": "Add-PnPSiteScriptPackage", "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "Id": 174, "Rank": 1 }, { + "Id": 175, "CommandName": "Add-PnPSiteTemplate", "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Id": 175, "Rank": 1 }, { + "Id": 176, "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Id": 176, "Rank": 1 }, { + "Id": 177, "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Id": 177, "Rank": 2 }, { + "Id": 178, "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": 178, "Rank": 3 }, { + "Id": 179, "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Id": 179, "Rank": 1 }, { + "Id": 180, "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "Id": 180, "Rank": 2 }, { + "Id": 181, "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "Id": 181, "Rank": 1 }, { + "Id": 182, "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Id": 182, "Rank": 2 }, { + "Id": 183, "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "Id": 183, "Rank": 3 }, { + "Id": 184, "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "Id": 184, "Rank": 4 }, { + "Id": 185, "CommandName": "Add-PnpTeamsChannelUser", "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", - "Id": 185, "Rank": 1 }, { + "Id": 186, "CommandName": "Add-PnpTeamsChannelUser", "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "Id": 186, "Rank": 2 }, { + "Id": 187, "CommandName": "Add-PnPTeamsTab", "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", - "Id": 187, "Rank": 1 }, { + "Id": 188, "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": 188, "Rank": 2 }, { + "Id": 189, "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": 189, "Rank": 3 }, { + "Id": 190, "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": 190, "Rank": 4 }, { + "Id": 191, "CommandName": "Add-PnPTeamsTeam", "Command": "Add-PnPTeamsTeam", - "Id": 191, "Rank": 1 }, { + "Id": 192, "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 192, "Rank": 1 }, { + "Id": 193, "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Id": 193, "Rank": 2 }, { + "Id": 194, "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "Id": 194, "Rank": 3 }, { + "Id": 195, "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "Id": 195, "Rank": 4 }, { + "Id": 196, "CommandName": "Add-PnPTenantCdnOrigin", "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Id": 196, "Rank": 1 }, { + "Id": 197, "CommandName": "Add-PnPTenantSequence", "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Id": 197, "Rank": 1 }, { + "Id": 198, "CommandName": "Add-PnPTenantSequenceSite", "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Id": 198, "Rank": 1 }, { + "Id": 199, "CommandName": "Add-PnPTenantSequenceSubSite", "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Id": 199, "Rank": 1 }, { + "Id": 200, "CommandName": "Add-PnPTermToTerm", "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Id": 200, "Rank": 1 }, { + "Id": 201, "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Id": 201, "Rank": 1 }, { + "Id": 202, "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "Id": 202, "Rank": 2 }, { + "Id": 203, "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "Id": 203, "Rank": 3 }, { + "Id": 204, "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": 204, "Rank": 1 }, { + "Id": 205, "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": 205, "Rank": 2 }, { + "Id": 206, "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": 206, "Rank": 3 }, { + "Id": 207, "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Id": 207, "Rank": 1 }, { + "Id": 208, "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Id": 208, "Rank": 2 }, { + "Id": 209, "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", - "Id": 209, "Rank": 3 }, { + "Id": 210, "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "Id": 210, "Rank": 1 }, { + "Id": 211, "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "Id": 211, "Rank": 2 }, { + "Id": 212, "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "Id": 212, "Rank": 1 }, { + "Id": 213, "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "Id": 213, "Rank": 2 }, { + "Id": 214, "CommandName": "Add-PnPWikiPage", "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Id": 214, "Rank": 1 }, { + "Id": 215, "CommandName": "Clear-PnPAzureADGroupMember", "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Id": 215, "Rank": 1 }, { + "Id": 216, "CommandName": "Clear-PnPAzureADGroupOwner", "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Id": 216, "Rank": 1 }, { + "Id": 217, "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Id": 217, "Rank": 1 }, { + "Id": 218, "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Id": 218, "Rank": 2 }, { + "Id": 219, "CommandName": "Clear-PnPListItemAsRecord", "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Id": 219, "Rank": 1 }, { + "Id": 220, "CommandName": "Clear-PnPMicrosoft365GroupMember", "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Id": 220, "Rank": 1 }, { + "Id": 221, "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Id": 221, "Rank": 1 }, { + "Id": 222, "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Id": 222, "Rank": 1 }, { + "Id": 223, "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Id": 223, "Rank": 2 }, { + "Id": 224, "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Id": 224, "Rank": 3 }, { + "Id": 225, "CommandName": "Clear-PnPTenantAppCatalogUrl", "Command": "Clear-PnPTenantAppCatalogUrl", - "Id": 225, "Rank": 1 }, { + "Id": 226, "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 226, "Rank": 1 }, { + "Id": 227, "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Id": 227, "Rank": 2 }, { + "Id": 228, "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Id": 228, "Rank": 1 }, { + "Id": 229, "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Id": 229, "Rank": 2 }, { + "Id": 230, "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Id": 230, "Rank": 1 }, { + "Id": 231, "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Id": 231, "Rank": 2 }, { + "Id": 232, "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Id": 232, "Rank": 3 }, { + "Id": 233, "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Id": 233, "Rank": 1 }, { + "Id": 234, "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Id": 234, "Rank": 2 }, { + "Id": 235, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Id": 235, "Rank": 1 }, { + "Id": 236, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Id": 236, "Rank": 2 }, { + "Id": 237, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Id": 237, "Rank": 3 }, { + "Id": 238, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Id": 238, "Rank": 4 }, { + "Id": 239, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 239, "Rank": 5 }, { + "Id": 240, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Id": 240, "Rank": 6 }, { + "Id": 241, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Id": 241, "Rank": 7 }, { + "Id": 242, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Id": 242, "Rank": 8 }, { + "Id": 243, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 243, "Rank": 9 }, { + "Id": 244, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Id": 244, "Rank": 10 }, { + "Id": 245, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Id": 245, "Rank": 11 }, { + "Id": 246, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 246, "Rank": 12 }, { + "Id": 247, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 247, "Rank": 13 }, { + "Id": 248, "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "Id": 248, "Rank": 14 }, { + "Id": 249, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 249, "Rank": 1 }, { + "Id": 250, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Id": 250, "Rank": 2 }, { + "Id": 251, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Id": 251, "Rank": 3 }, { + "Id": 252, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 252, "Rank": 4 }, { + "Id": 253, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Id": 253, "Rank": 5 }, { + "Id": 254, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Id": 254, "Rank": 6 }, { + "Id": 255, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Id": 255, "Rank": 7 }, { + "Id": 256, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 256, "Rank": 8 }, { + "Id": 257, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Id": 257, "Rank": 9 }, { + "Id": 258, "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Id": 258, "Rank": 10 }, { + "Id": 259, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 259, "Rank": 1 }, { + "Id": 260, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Id": 260, "Rank": 2 }, { + "Id": 261, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Id": 261, "Rank": 3 }, { + "Id": 262, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 262, "Rank": 4 }, { + "Id": 263, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Id": 263, "Rank": 5 }, { + "Id": 264, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Id": 264, "Rank": 6 }, { + "Id": 265, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Id": 265, "Rank": 7 }, { + "Id": 266, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 266, "Rank": 8 }, { + "Id": 267, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Id": 267, "Rank": 9 }, { + "Id": 268, "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Id": 268, "Rank": 10 }, { + "Id": 269, "CommandName": "Copy-PnPItemProxy", "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Id": 269, "Rank": 1 }, { + "Id": 270, "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Id": 270, "Rank": 1 }, { + "Id": 271, "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Id": 271, "Rank": 2 }, { + "Id": 272, "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "Id": 272, "Rank": 3 }, { + "Id": 273, "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", - "Id": 273, "Rank": 4 }, { + "Id": 274, "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "Id": 274, "Rank": 1 }, { + "Id": 275, "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Id": 275, "Rank": 2 }, { + "Id": 276, "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": 276, "Rank": 3 }, { + "Id": 277, "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": 277, "Rank": 4 }, { + "Id": 278, "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 278, "Rank": 1 }, { + "Id": 279, "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Id": 279, "Rank": 2 }, { + "Id": 280, "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Id": 280, "Rank": 3 }, { + "Id": 281, "CommandName": "Disable-PnPPageScheduling", "Command": "Disable-PnPPageScheduling", - "Id": 281, "Rank": 1 }, { + "Id": 282, "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry", - "Id": 282, "Rank": 1 }, { + "Id": 283, "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry -Force", - "Id": 283, "Rank": 2 }, { + "Id": 284, "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 284, "Rank": 1 }, { + "Id": 285, "CommandName": "Disable-PnPSiteClassification", "Command": "Disable-PnPSiteClassification", - "Id": 285, "Rank": 1 }, { + "Id": 286, "CommandName": "Disconnect-PnPOnline", "Command": "Disconnect-PnPOnline", - "Id": 286, "Rank": 1 }, { + "Id": 287, "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite", - "Id": 287, "Rank": 1 }, { + "Id": 288, "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Id": 288, "Rank": 2 }, { + "Id": 289, "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 289, "Rank": 1 }, { + "Id": 290, "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Id": 290, "Rank": 2 }, { + "Id": 291, "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Id": 291, "Rank": 3 }, { + "Id": 292, "CommandName": "Enable-PnPPageScheduling", "Command": "Enable-PnPPageScheduling", - "Id": 292, "Rank": 1 }, { + "Id": 293, "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry", - "Id": 293, "Rank": 1 }, { + "Id": 294, "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry -Force", - "Id": 294, "Rank": 2 }, { + "Id": 295, "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Id": 295, "Rank": 1 }, { + "Id": 296, "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Id": 296, "Rank": 2 }, { + "Id": 297, "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Id": 297, "Rank": 1 }, { + "Id": 298, "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Id": 298, "Rank": 2 }, { + "Id": 299, "CommandName": "Export-PnPPage", "Command": "Export-PnPPage -Identity Home.aspx", - "Id": 299, "Rank": 1 }, { + "Id": 300, "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Id": 300, "Rank": 1 }, { + "Id": 301, "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Id": 301, "Rank": 2 }, { + "Id": 302, "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Id": 302, "Rank": 3 }, { + "Id": 303, "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy", - "Id": 303, "Rank": 1 }, { + "Id": 304, "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Id": 304, "Rank": 2 }, { + "Id": 305, "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Id": 305, "Rank": 3 }, { + "Id": 306, "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Id": 306, "Rank": 4 }, { + "Id": 307, "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml", - "Id": 307, "Rank": 1 }, { + "Id": 308, "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Id": 308, "Rank": 2 }, { + "Id": 309, "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Id": 309, "Rank": 3 }, { + "Id": 310, "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Id": 310, "Rank": 1 }, { + "Id": 311, "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", - "Id": 311, "Rank": 2 }, { + "Id": 312, "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Id": 312, "Rank": 1 }, { + "Id": 313, "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Id": 313, "Rank": 2 }, { + "Id": 314, "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Match *.master", - "Id": 314, "Rank": 1 }, { + "Id": 315, "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Id": 315, "Rank": 2 }, { + "Id": 316, "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Id": 316, "Rank": 3 }, { + "Id": 317, "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken", - "Id": 317, "Rank": 1 }, { + "Id": 318, "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -Decoded", - "Id": 318, "Rank": 2 }, { + "Id": 319, "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Id": 319, "Rank": 3 }, { + "Id": 320, "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Id": 320, "Rank": 4 }, { + "Id": 321, "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Id": 321, "Rank": 5 }, { + "Id": 322, "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert", - "Id": 322, "Rank": 1 }, { + "Id": 323, "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\"", - "Id": 323, "Rank": 2 }, { + "Id": 324, "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 324, "Rank": 3 }, { + "Id": 325, "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Id": 325, "Rank": 4 }, { + "Id": 326, "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -AllUsers", - "Id": 326, "Rank": 5 }, { + "Id": 327, "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Id": 327, "Rank": 6 }, { + "Id": 328, "CommandName": "Get-PnPApp", "Command": "Get-PnPApp", - "Id": 328, "Rank": 1 }, { + "Id": 329, "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Scope Site", - "Id": 329, "Rank": 2 }, { + "Id": 330, "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 330, "Rank": 3 }, { + "Id": 331, "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Id": 331, "Rank": 1 }, { + "Id": 332, "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Id": 332, "Rank": 2 }, { + "Id": 333, "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Id": 333, "Rank": 1 }, { + "Id": 334, "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 334, "Rank": 2 }, { + "Id": 335, "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Id": 335, "Rank": 3 }, { + "Id": 336, "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer", - "Id": 336, "Rank": 1 }, { + "Id": 337, "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 337, "Rank": 2 }, { + "Id": 338, "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Id": 338, "Rank": 3 }, { + "Id": 339, "CommandName": "Get-PnPAuditing", "Command": "Get-PnPAuditing", - "Id": 339, "Rank": 1 }, { + "Id": 340, "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm", - "Id": 340, "Rank": 1 }, { + "Id": 341, "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Id": 341, "Rank": 2 }, { + "Id": 342, "CommandName": "Get-PnPAvailableLanguage", "Command": "Get-PnPAvailableLanguage", - "Id": 342, "Rank": 1 }, { + "Id": 343, "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel", - "Id": 343, "Rank": 1 }, { + "Id": 344, "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Id": 344, "Rank": 2 }, { + "Id": 345, "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Id": 345, "Rank": 3 }, { + "Id": 346, "CommandName": "Get-PnPAvailableSiteClassification", "Command": "Get-PnPAvailableSiteClassification", - "Id": 346, "Rank": 1 }, { + "Id": 347, "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal", - "Id": 347, "Rank": 1 }, { + "Id": 348, "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Id": 348, "Rank": 2 }, { + "Id": 349, "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Id": 349, "Rank": 3 }, { + "Id": 350, "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Id": 350, "Rank": 4 }, { + "Id": 351, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 351, "Rank": 1 }, { + "Id": 352, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Id": 352, "Rank": 2 }, { + "Id": 353, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Id": 353, "Rank": 3 }, { + "Id": 354, "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn", - "Id": 354, "Rank": 1 }, { + "Id": 355, "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Id": 355, "Rank": 2 }, { + "Id": 356, "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Id": 356, "Rank": 3 }, { + "Id": 357, "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp", - "Id": 357, "Rank": 1 }, { + "Id": 358, "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity MyApp", - "Id": 358, "Rank": 2 }, { + "Id": 359, "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 359, "Rank": 3 }, { + "Id": 360, "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Id": 360, "Rank": 4 }, { + "Id": 361, "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission", - "Id": 361, "Rank": 1 }, { + "Id": 362, "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Id": 362, "Rank": 2 }, { + "Id": 363, "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 363, "Rank": 3 }, { + "Id": 364, "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission", - "Id": 364, "Rank": 1 }, { + "Id": 365, "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Id": 365, "Rank": 2 }, { + "Id": 366, "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Id": 366, "Rank": 3 }, { + "Id": 367, "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Id": 367, "Rank": 4 }, { + "Id": 368, "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Id": 368, "Rank": 5 }, { + "Id": 369, "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup", - "Id": 369, "Rank": 1 }, { + "Id": 370, "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Id": 370, "Rank": 2 }, { + "Id": 371, "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Id": 371, "Rank": 3 }, { + "Id": 372, "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Id": 372, "Rank": 4 }, { + "Id": 373, "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $group", - "Id": 373, "Rank": 5 }, { + "Id": 374, "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Id": 374, "Rank": 1 }, { + "Id": 375, "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Id": 375, "Rank": 2 }, { + "Id": 376, "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Id": 376, "Rank": 1 }, { + "Id": 377, "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Id": 377, "Rank": 2 }, { + "Id": 378, "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal", - "Id": 378, "Rank": 1 }, { + "Id": 379, "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Id": 379, "Rank": 2 }, { + "Id": 380, "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Id": 380, "Rank": 3 }, { + "Id": 381, "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Id": 381, "Rank": 4 }, { + "Id": 382, "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Id": 382, "Rank": 5 }, { + "Id": 383, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 383, "Rank": 1 }, { + "Id": 384, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Id": 384, "Rank": 2 }, { + "Id": 385, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 385, "Rank": 1 }, { + "Id": 386, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Id": 386, "Rank": 2 }, { + "Id": 387, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser", - "Id": 387, "Rank": 1 }, { + "Id": 388, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -EndIndex 50", - "Id": 388, "Rank": 2 }, { + "Id": 389, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Id": 389, "Rank": 3 }, { + "Id": 390, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Id": 390, "Rank": 4 }, { + "Id": 391, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Id": 391, "Rank": 5 }, { + "Id": 392, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Id": 392, "Rank": 6 }, { + "Id": 393, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Id": 393, "Rank": 7 }, { + "Id": 394, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta", - "Id": 394, "Rank": 8 }, { + "Id": 395, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Id": 395, "Rank": 9 }, { + "Id": 396, "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Id": 396, "Rank": 10 }, { + "Id": 397, "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Id": 397, "Rank": 1 }, { + "Id": 398, "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Id": 398, "Rank": 2 }, { + "Id": 399, "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Id": 399, "Rank": 3 }, { + "Id": 400, "CommandName": "Get-PnPBrowserIdleSignout", "Command": "Get-PnPBrowserIdleSignout", - "Id": 400, "Rank": 1 }, { + "Id": 401, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Id": 401, "Rank": 1 }, { + "Id": 402, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 402, "Rank": 2 }, { + "Id": 403, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 403, "Rank": 1 }, { + "Id": 404, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Id": 404, "Rank": 2 }, { + "Id": 405, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Id": 405, "Rank": 3 }, { + "Id": 406, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Id": 406, "Rank": 4 }, { + "Id": 407, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Id": 407, "Rank": 5 }, { + "Id": 408, "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog", - "Id": 408, "Rank": 1 }, { + "Id": 409, "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog -Nightly", - "Id": 409, "Rank": 2 }, { + "Id": 410, "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Id": 410, "Rank": 1 }, { + "Id": 411, "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "Id": 411, "Rank": 2 }, { + "Id": 412, "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType", - "Id": 412, "Rank": 1 }, { + "Id": 413, "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -InSiteHierarchy", - "Id": 413, "Rank": 2 }, { + "Id": 414, "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Id": 414, "Rank": 3 }, { + "Id": 415, "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -List \"Documents\"", - "Id": 415, "Rank": 4 }, { + "Id": 416, "CommandName": "Get-PnPContentTypePublishingStatus", "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Id": 416, "Rank": 1 }, { + "Id": 417, "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction", - "Id": 417, "Rank": 1 }, { + "Id": 418, "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 418, "Rank": 2 }, { + "Id": 419, "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Scope web", - "Id": 419, "Rank": 3 }, { + "Id": 420, "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group", - "Id": 420, "Rank": 1 }, { + "Id": 421, "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 421, "Rank": 2 }, { + "Id": 422, "CommandName": "Get-PnPDeletedTeam", "Command": "Get-PnPDeletedTeam", - "Id": 422, "Rank": 1 }, { + "Id": 423, "CommandName": "Get-PnPDiagnostics", "Command": "Get-PnPDiagnostics", - "Id": 423, "Rank": 1 }, { + "Id": 424, "CommandName": "Get-PnPDisableSpacesActivation", "Command": "Get-PnPDisableSpacesActivation", - "Id": 424, "Rank": 1 }, { + "Id": 425, "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Id": 425, "Rank": 1 }, { + "Id": 426, "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Id": 426, "Rank": 2 }, { + "Id": 427, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver", - "Id": 427, "Rank": 1 }, { + "Id": 428, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 428, "Rank": 2 }, { + "Id": 429, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Id": 429, "Rank": 3 }, { + "Id": 430, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Id": 430, "Rank": 4 }, { + "Id": 431, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 431, "Rank": 5 }, { + "Id": 432, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Id": 432, "Rank": 6 }, { + "Id": 433, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Site", - "Id": 433, "Rank": 7 }, { + "Id": 434, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Web", - "Id": 434, "Rank": 8 }, { + "Id": 435, "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope All", - "Id": 435, "Rank": 9 }, { + "Id": 436, "CommandName": "Get-PnPException", "Command": "Get-PnPException", - "Id": 436, "Rank": 1 }, { + "Id": 437, "CommandName": "Get-PnPException", "Command": "Get-PnPException -All", - "Id": 437, "Rank": 2 }, { + "Id": 438, "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Id": 438, "Rank": 1 }, { + "Id": 439, "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Id": 439, "Rank": 2 }, { + "Id": 440, "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature", - "Id": 440, "Rank": 1 }, { + "Id": 441, "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Scope Site", - "Id": 441, "Rank": 2 }, { + "Id": 442, "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 442, "Rank": 3 }, { + "Id": 443, "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Id": 443, "Rank": 4 }, { + "Id": 444, "CommandName": "Get-PnPField", "Command": "Get-PnPField", - "Id": 444, "Rank": 1 }, { + "Id": 445, "CommandName": "Get-PnPField", "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Id": 445, "Rank": 2 }, { + "Id": 446, "CommandName": "Get-PnPField", "Command": "Get-PnPField -Group \"Custom Columns\"", - "Id": 446, "Rank": 3 }, { + "Id": 447, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Id": 447, "Rank": 1 }, { + "Id": 448, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Id": 448, "Rank": 2 }, { + "Id": 449, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Id": 449, "Rank": 3 }, { + "Id": 450, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Id": 450, "Rank": 4 }, { + "Id": 451, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Id": 451, "Rank": 5 }, { + "Id": 452, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "Id": 452, "Rank": 6 }, { + "Id": 453, "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Id": 453, "Rank": 7 }, { + "Id": 454, "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 454, "Rank": 1 }, { + "Id": 455, "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Id": 455, "Rank": 1 }, { + "Id": 456, "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Id": 456, "Rank": 2 }, { + "Id": 457, "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Id": 457, "Rank": 1 }, { + "Id": 458, "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Id": 458, "Rank": 1 }, { + "Id": 459, "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Id": 459, "Rank": 2 }, { + "Id": 460, "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Id": 460, "Rank": 3 }, { + "Id": 461, "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\"", - "Id": 461, "Rank": 1 }, { + "Id": 462, "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Id": 462, "Rank": 2 }, { + "Id": 463, "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Id": 463, "Rank": 3 }, { + "Id": 464, "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType File", - "Id": 464, "Rank": 4 }, { + "Id": 465, "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Id": 465, "Rank": 5 }, { + "Id": 466, "CommandName": "Get-PnPFolderSharingLink", "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 466, "Rank": 1 }, { + "Id": 467, "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric", - "Id": 467, "Rank": 1 }, { + "Id": 468, "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Id": 468, "Rank": 2 }, { + "Id": 469, "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Id": 469, "Rank": 3 }, { + "Id": 470, "CommandName": "Get-PnPFooter", "Command": "Get-PnPFooter", - "Id": 470, "Rank": 1 }, { + "Id": 471, "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken", - "Id": 471, "Rank": 1 }, { + "Id": 472, "CommandName": "Get-PnPGraphAccessToken", "Command": "Get-PnPGraphAccessToken -Decoded", - "Id": 472, "Rank": 2 }, { + "Id": 473, "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription", - "Id": 473, "Rank": 1 }, { + "Id": 474, "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Id": 474, "Rank": 2 }, { + "Id": 475, "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup", - "Id": 475, "Rank": 1 }, { + "Id": 476, "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Id": 476, "Rank": 2 }, { + "Id": 477, "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Id": 477, "Rank": 3 }, { + "Id": 478, "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Id": 478, "Rank": 1 }, { + "Id": 479, "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Id": 479, "Rank": 2 }, { + "Id": 480, "CommandName": "Get-PnPGroupPermissions", "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Id": 480, "Rank": 1 }, { + "Id": 481, "CommandName": "Get-PnPHideDefaultThemes", "Command": "Get-PnPHideDefaultThemes", - "Id": 481, "Rank": 1 }, { + "Id": 482, "CommandName": "Get-PnPHomePage", "Command": "Get-PnPHomePage", - "Id": 482, "Rank": 1 }, { + "Id": 483, "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite", - "Id": 483, "Rank": 1 }, { + "Id": 484, "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Id": 484, "Rank": 2 }, { + "Id": 485, "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -Detailed", - "Id": 485, "Rank": 3 }, { + "Id": 486, "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite", - "Id": 486, "Rank": 1 }, { + "Id": 487, "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Id": 487, "Rank": 2 }, { + "Id": 488, "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Id": 488, "Rank": 3 }, { + "Id": 489, "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild", - "Id": 489, "Rank": 1 }, { + "Id": 490, "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Id": 490, "Rank": 2 }, { + "Id": 491, "CommandName": "Get-PnPInPlaceRecordsManagement", "Command": "Get-PnPInPlaceRecordsManagement", - "Id": 491, "Rank": 1 }, { + "Id": 492, "CommandName": "Get-PnPIsSiteAliasAvailable", "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Id": 492, "Rank": 1 }, { + "Id": 493, "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink", - "Id": 493, "Rank": 1 }, { + "Id": 494, "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope All", - "Id": 494, "Rank": 2 }, { + "Id": 495, "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Web", - "Id": 495, "Rank": 3 }, { + "Id": 496, "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Site", - "Id": 496, "Rank": 4 }, { + "Id": 497, "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Name Test", - "Id": 497, "Rank": 5 }, { + "Id": 498, "CommandName": "Get-PnPKnowledgeHubSite", "Command": "Get-PnPKnowledgeHubSite", - "Id": 498, "Rank": 1 }, { + "Id": 499, "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel", - "Id": 499, "Rank": 1 }, { + "Id": 500, "CommandName": "Get-PnPLabel", "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Id": 500, "Rank": 2 }, { + "Id": 501, "CommandName": "Get-PnPLargeListOperationStatus", "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Id": 501, "Rank": 1 }, { + "Id": 502, "CommandName": "Get-PnPList", "Command": "Get-PnPList", - "Id": 502, "Rank": 1 }, { + "Id": 503, "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 503, "Rank": 2 }, { + "Id": 504, "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity Lists/Announcements", - "Id": 504, "Rank": 3 }, { + "Id": 505, "CommandName": "Get-PnPList", "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Id": 505, "Rank": 4 }, { + "Id": 506, "CommandName": "Get-PnPList", "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Id": 506, "Rank": 5 }, { + "Id": 507, "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign", - "Id": 507, "Rank": 1 }, { + "Id": 508, "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 508, "Rank": 2 }, { + "Id": 509, "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity ListEvent", - "Id": 509, "Rank": 3 }, { + "Id": 510, "CommandName": "Get-PnPListInformationRightsManagement", "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Id": 510, "Rank": 1 }, { + "Id": 511, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks", - "Id": 511, "Rank": 1 }, { + "Id": 512, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1", - "Id": 512, "Rank": 2 }, { + "Id": 513, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Id": 513, "Rank": 3 }, { + "Id": 514, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Id": 514, "Rank": 4 }, { + "Id": 515, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Id": 515, "Rank": 5 }, { + "Id": 516, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Id": 516, "Rank": 6 }, { + "Id": 517, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "Id": 517, "Rank": 7 }, { + "Id": 518, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Id": 518, "Rank": 8 }, { + "Id": 519, "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Id": 519, "Rank": 9 }, { + "Id": 520, "CommandName": "Get-PnPListItemComment", "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Id": 520, "Rank": 1 }, { + "Id": 521, "CommandName": "Get-PnPListItemPermission", "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Id": 521, "Rank": 1 }, { + "Id": 522, "CommandName": "Get-PnPListItemVersion", "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Id": 522, "Rank": 1 }, { + "Id": 523, "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Id": 523, "Rank": 1 }, { + "Id": 524, "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Id": 524, "Rank": 2 }, { + "Id": 525, "CommandName": "Get-PnPListRecordDeclaration", "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Id": 525, "Rank": 1 }, { + "Id": 526, "CommandName": "Get-PnPMasterPage", "Command": "Get-PnPMasterPage", - "Id": 526, "Rank": 1 }, { + "Id": 527, "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement", - "Id": 527, "Rank": 1 }, { + "Id": 528, "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Id": 528, "Rank": 2 }, { + "Id": 529, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 529, "Rank": 1 }, { + "Id": 530, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Id": 530, "Rank": 2 }, { + "Id": 531, "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group", - "Id": 531, "Rank": 1 }, { + "Id": 532, "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Id": 532, "Rank": 2 }, { + "Id": 533, "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Id": 533, "Rank": 3 }, { + "Id": 534, "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Id": 534, "Rank": 4 }, { + "Id": 535, "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Id": 535, "Rank": 5 }, { + "Id": 536, "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Id": 536, "Rank": 6 }, { + "Id": 537, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 537, "Rank": 1 }, { + "Id": 538, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Id": 538, "Rank": 2 }, { + "Id": 539, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 539, "Rank": 3 }, { + "Id": 540, "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Id": 540, "Rank": 1 }, { + "Id": 541, "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Id": 541, "Rank": 2 }, { + "Id": 542, "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Id": 542, "Rank": 3 }, { + "Id": 543, "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Id": 543, "Rank": 1 }, { + "Id": 544, "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Id": 544, "Rank": 2 }, { + "Id": 545, "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings", - "Id": 545, "Rank": 1 }, { + "Id": 546, "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Id": 546, "Rank": 2 }, { + "Id": 547, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 547, "Rank": 1 }, { + "Id": 548, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Id": 548, "Rank": 2 }, { + "Id": 549, "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam", - "Id": 549, "Rank": 1 }, { + "Id": 550, "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Id": 550, "Rank": 2 }, { + "Id": 551, "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 551, "Rank": 3 }, { + "Id": 552, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 552, "Rank": 1 }, { + "Id": 553, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Id": 553, "Rank": 2 }, { + "Id": 554, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 554, "Rank": 3 }, { + "Id": 555, "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode", - "Id": 555, "Rank": 1 }, { + "Id": 556, "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Id": 556, "Rank": 2 }, { + "Id": 557, "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Id": 557, "Rank": 3 }, { + "Id": 558, "CommandName": "Get-PnPOrgAssetsLibrary", "Command": "Get-PnPOrgAssetsLibrary", - "Id": 558, "Rank": 1 }, { + "Id": 559, "CommandName": "Get-PnPOrgNewsSite", "Command": "Get-PnPOrgNewsSite", - "Id": 559, "Rank": 1 }, { + "Id": 560, "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Id": 560, "Rank": 1 }, { + "Id": 561, "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"MyPage\"", - "Id": 561, "Rank": 2 }, { + "Id": 562, "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Id": 562, "Rank": 3 }, { + "Id": 563, "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Id": 563, "Rank": 4 }, { + "Id": 564, "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home", - "Id": 564, "Rank": 1 }, { + "Id": 565, "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 565, "Rank": 2 }, { + "Id": 566, "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Id": 566, "Rank": 3 }, { + "Id": 567, "CommandName": "Get-PnPPlannerBucket", "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Id": 567, "Rank": 1 }, { + "Id": 568, "CommandName": "Get-PnPPlannerConfiguration", "Command": "Get-PnPPlannerConfiguration", - "Id": 568, "Rank": 1 }, { + "Id": 569, "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Id": 569, "Rank": 1 }, { + "Id": 570, "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Id": 570, "Rank": 2 }, { + "Id": 571, "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Id": 571, "Rank": 3 }, { + "Id": 572, "CommandName": "Get-PnPPlannerRosterMember", "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Id": 572, "Rank": 1 }, { + "Id": 573, "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Id": 573, "Rank": 1 }, { + "Id": 574, "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 574, "Rank": 2 }, { + "Id": 575, "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Id": 575, "Rank": 1 }, { + "Id": 576, "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Id": 576, "Rank": 2 }, { + "Id": 577, "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Id": 577, "Rank": 3 }, { + "Id": 578, "CommandName": "Get-PnPPlannerUserPolicy", "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Id": 578, "Rank": 1 }, { + "Id": 579, "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment", - "Id": 579, "Rank": 1 }, { + "Id": 580, "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Id": 580, "Rank": 2 }, { + "Id": 581, "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Id": 581, "Rank": 3 }, { + "Id": 582, "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Command": "Get-PnPPowerShellTelemetryEnabled", - "Id": 582, "Rank": 1 }, { + "Id": 583, "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag", - "Id": 583, "Rank": 1 }, { + "Id": 584, "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Key MyKey", - "Id": 584, "Rank": 2 }, { + "Id": 585, "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Id": 585, "Rank": 3 }, { + "Id": 586, "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Id": 586, "Rank": 4 }, { + "Id": 587, "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Id": 587, "Rank": 5 }, { + "Id": 588, "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition", - "Id": 588, "Rank": 1 }, { + "Id": 589, "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Id": 589, "Rank": 2 }, { + "Id": 590, "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Id": 590, "Rank": 3 }, { + "Id": 591, "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem", - "Id": 591, "Rank": 1 }, { + "Id": 592, "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Id": 592, "Rank": 2 }, { + "Id": 593, "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -FirstStage", - "Id": 593, "Rank": 3 }, { + "Id": 594, "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -SecondStage", - "Id": 594, "Rank": 4 }, { + "Id": 595, "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Id": 595, "Rank": 5 }, { + "Id": 596, "CommandName": "Get-PnPRequestAccessEmails", "Command": "Get-PnPRequestAccessEmails", - "Id": 596, "Rank": 1 }, { + "Id": 597, "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition", - "Id": 597, "Rank": 1 }, { + "Id": 598, "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition -Identity Read", - "Id": 598, "Rank": 2 }, { + "Id": 599, "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Id": 599, "Rank": 3 }, { + "Id": 600, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration", - "Id": 600, "Rank": 1 }, { + "Id": 601, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site", - "Id": 601, "Rank": 2 }, { + "Id": 602, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Id": 602, "Rank": 3 }, { + "Id": 603, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 603, "Rank": 4 }, { + "Id": 604, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Id": 604, "Rank": 5 }, { + "Id": 605, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Id": 605, "Rank": 6 }, { + "Id": 606, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Id": 606, "Rank": 7 }, { + "Id": 607, "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Id": 607, "Rank": 8 }, { + "Id": 608, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog", - "Id": 608, "Rank": 1 }, { + "Id": 609, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Id": 609, "Rank": 2 }, { + "Id": 610, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Id": 610, "Rank": 3 }, { + "Id": 611, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Id": 611, "Rank": 4 }, { + "Id": 612, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Id": 612, "Rank": 5 }, { + "Id": 613, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Id": 613, "Rank": 6 }, { + "Id": 614, "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Id": 614, "Rank": 7 }, { + "Id": 615, "CommandName": "Get-PnPSearchSettings", "Command": "Get-PnPSearchSettings", - "Id": 615, "Rank": 1 }, { + "Id": 616, "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth", - "Id": 616, "Rank": 1 }, { + "Id": 617, "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Id": 617, "Rank": 2 }, { + "Id": 618, "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue", - "Id": 618, "Rank": 1 }, { + "Id": 619, "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Id": 619, "Rank": 2 }, { + "Id": 620, "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn", - "Id": 620, "Rank": 1 }, { + "Id": 621, "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Id": 621, "Rank": 2 }, { + "Id": 622, "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Command": "Get-PnPSharingForNonOwnersOfSite", - "Id": 622, "Rank": 1 }, { + "Id": 623, "CommandName": "Get-PnPSite", "Command": "Get-PnPSite", - "Id": 623, "Rank": 1 }, { + "Id": 624, "CommandName": "Get-PnPSite", "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Id": 624, "Rank": 2 }, { + "Id": 625, "CommandName": "Get-PnPSiteClosure", "Command": "Get-PnPSiteClosure", - "Id": 625, "Rank": 1 }, { + "Id": 626, "CommandName": "Get-PnPSiteCollectionAdmin", "Command": "Get-PnPSiteCollectionAdmin", - "Id": 626, "Rank": 1 }, { + "Id": 627, "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog", - "Id": 627, "Rank": 1 }, { + "Id": 628, "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Id": 628, "Rank": 2 }, { + "Id": 629, "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Id": 629, "Rank": 3 }, { + "Id": 630, "CommandName": "Get-PnPSiteCollectionTermStore", "Command": "Get-PnPSiteCollectionTermStore", - "Id": 630, "Rank": 1 }, { + "Id": 631, "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign", - "Id": 631, "Rank": 1 }, { + "Id": 632, "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 632, "Rank": 2 }, { + "Id": 633, "CommandName": "Get-PnPSiteDesignRights", "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 633, "Rank": 1 }, { + "Id": 634, "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun", - "Id": 634, "Rank": 1 }, { + "Id": 635, "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Id": 635, "Rank": 2 }, { + "Id": 636, "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Id": 636, "Rank": 1 }, { + "Id": 637, "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask", - "Id": 637, "Rank": 2 }, { + "Id": 638, "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Id": 638, "Rank": 3 }, { + "Id": 639, "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup", - "Id": 639, "Rank": 1 }, { + "Id": 640, "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Id": 640, "Rank": 2 }, { + "Id": 641, "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Id": 641, "Rank": 3 }, { + "Id": 642, "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Id": 642, "Rank": 4 }, { + "Id": 643, "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy", - "Id": 643, "Rank": 1 }, { + "Id": 644, "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -AllAvailable", - "Id": 644, "Rank": 2 }, { + "Id": 645, "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Id": 645, "Rank": 3 }, { + "Id": 646, "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript", - "Id": 646, "Rank": 1 }, { + "Id": 647, "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 647, "Rank": 2 }, { + "Id": 648, "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Id": 648, "Rank": 1 }, { + "Id": 649, "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Id": 649, "Rank": 2 }, { + "Id": 650, "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Id": 650, "Rank": 3 }, { + "Id": 651, "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Id": 651, "Rank": 1 }, { + "Id": 652, "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Id": 652, "Rank": 2 }, { + "Id": 653, "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Id": 653, "Rank": 3 }, { + "Id": 654, "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Id": 654, "Rank": 4 }, { + "Id": 655, "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Id": 655, "Rank": 5 }, { + "Id": 656, "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Id": 656, "Rank": 6 }, { + "Id": 657, "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults", - "Id": 657, "Rank": 1 }, { + "Id": 658, "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Id": 658, "Rank": 2 }, { + "Id": 659, "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Id": 659, "Rank": 3 }, { + "Id": 660, "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Id": 660, "Rank": 4 }, { + "Id": 661, "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Id": 661, "Rank": 5 }, { + "Id": 662, "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -All", - "Id": 662, "Rank": 6 }, { + "Id": 663, "CommandName": "Get-PnPSiteSensitivityLabel", "Command": "Get-PnPSiteSensitivityLabel", - "Id": 663, "Rank": 1 }, { + "Id": 664, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Id": 664, "Rank": 1 }, { + "Id": 665, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml", - "Id": 665, "Rank": 2 }, { + "Id": 666, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.md", - "Id": 666, "Rank": 3 }, { + "Id": 667, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Id": 667, "Rank": 4 }, { + "Id": 668, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Id": 668, "Rank": 5 }, { + "Id": 669, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Id": 669, "Rank": 6 }, { + "Id": 670, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Id": 670, "Rank": 7 }, { + "Id": 671, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Id": 671, "Rank": 8 }, { + "Id": 672, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Id": 672, "Rank": 9 }, { + "Id": 673, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Id": 673, "Rank": 10 }, { + "Id": 674, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Id": 674, "Rank": 11 }, { + "Id": 675, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Id": 675, "Rank": 12 }, { + "Id": 676, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", - "Id": 676, "Rank": 13 }, { + "Id": 677, "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Id": 677, "Rank": 14 }, { + "Id": 678, "CommandName": "Get-PnPSiteUserInvitations", "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Id": 678, "Rank": 1 }, { + "Id": 679, "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity", - "Id": 679, "Rank": 1 }, { + "Id": 680, "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey", - "Id": 680, "Rank": 2 }, { + "Id": 681, "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Scope Site", - "Id": 681, "Rank": 3 }, { + "Id": 682, "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Id": 682, "Rank": 4 }, { + "Id": 683, "CommandName": "Get-PnPStoredCredential", "Command": "Get-PnPStoredCredential -Name O365", - "Id": 683, "Rank": 1 }, { + "Id": 684, "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 684, "Rank": 1 }, { + "Id": 685, "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 685, "Rank": 1 }, { + "Id": 686, "CommandName": "Get-PnPSubscribeSharePointNewsDigest", "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Id": 686, "Rank": 1 }, { + "Id": 687, "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb", - "Id": 687, "Rank": 1 }, { + "Id": 688, "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse", - "Id": 688, "Rank": 2 }, { + "Id": 689, "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Id": 689, "Rank": 3 }, { + "Id": 690, "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Id": 690, "Rank": 4 }, { + "Id": 691, "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Id": 691, "Rank": 5 }, { + "Id": 692, "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel", - "Id": 692, "Rank": 1 }, { + "Id": 693, "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity 1", - "Id": 693, "Rank": 2 }, { + "Id": 694, "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Id": 694, "Rank": 3 }, { + "Id": 695, "CommandName": "Get-PnPSyntexModelPublication", "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Id": 695, "Rank": 1 }, { + "Id": 696, "CommandName": "Get-PnPTaxonomyItem", "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Id": 696, "Rank": 1 }, { + "Id": 697, "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp", - "Id": 697, "Rank": 1 }, { + "Id": 698, "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Id": 698, "Rank": 2 }, { + "Id": 699, "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Id": 699, "Rank": 3 }, { + "Id": 700, "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Id": 700, "Rank": 1 }, { + "Id": 701, "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Id": 701, "Rank": 2 }, { + "Id": 702, "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Id": 702, "Rank": 3 }, { + "Id": 703, "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Id": 703, "Rank": 1 }, { + "Id": 704, "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Id": 704, "Rank": 2 }, { + "Id": 705, "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Id": 705, "Rank": 1 }, { + "Id": 706, "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Id": 706, "Rank": 2 }, { + "Id": 707, "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Id": 707, "Rank": 1 }, { + "Id": 708, "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Id": 708, "Rank": 2 }, { + "Id": 709, "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Id": 709, "Rank": 1 }, { + "Id": 710, "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Id": 710, "Rank": 2 }, { + "Id": 711, "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Id": 711, "Rank": 3 }, { + "Id": 712, "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Id": 712, "Rank": 4 }, { + "Id": 713, "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Id": 713, "Rank": 1 }, { + "Id": 714, "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Id": 714, "Rank": 2 }, { + "Id": 715, "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Id": 715, "Rank": 1 }, { + "Id": 716, "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Id": 716, "Rank": 2 }, { + "Id": 717, "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", - "Id": 717, "Rank": 3 }, { + "Id": 718, "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Id": 718, "Rank": 4 }, { + "Id": 719, "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Id": 719, "Rank": 5 }, { + "Id": 720, "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Id": 720, "Rank": 1 }, { + "Id": 721, "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Id": 721, "Rank": 2 }, { + "Id": 722, "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam", - "Id": 722, "Rank": 1 }, { + "Id": 723, "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Id": 723, "Rank": 2 }, { + "Id": 724, "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Id": 724, "Rank": 3 }, { + "Id": 725, "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Id": 725, "Rank": 4 }, { + "Id": 726, "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Id": 726, "Rank": 5 }, { + "Id": 727, "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam", - "Id": 727, "Rank": 1 }, { + "Id": 728, "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Id": 728, "Rank": 2 }, { + "Id": 729, "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Id": 729, "Rank": 3 }, { + "Id": 730, "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Id": 730, "Rank": 4 }, { + "Id": 731, "CommandName": "Get-PnPTemporarilyDisableAppBar", "Command": "Get-PnPTemporarilyDisableAppBar", - "Id": 731, "Rank": 1 }, { + "Id": 732, "CommandName": "Get-PnPTenant", "Command": "Get-PnPTenant", - "Id": 732, "Rank": 1 }, { + "Id": 733, "CommandName": "Get-PnPTenantAppCatalogUrl", "Command": "Get-PnPTenantAppCatalogUrl", - "Id": 733, "Rank": 1 }, { + "Id": 734, "CommandName": "Get-PnPTenantCdnEnabled", "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Id": 734, "Rank": 1 }, { + "Id": 735, "CommandName": "Get-PnPTenantCdnOrigin", "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Id": 735, "Rank": 1 }, { + "Id": 736, "CommandName": "Get-PnPTenantCdnPolicies", "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Id": 736, "Rank": 1 }, { + "Id": 737, "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite", - "Id": 737, "Rank": 1 }, { + "Id": 738, "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 738, "Rank": 2 }, { + "Id": 739, "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Id": 739, "Rank": 3 }, { + "Id": 740, "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Id": 740, "Rank": 4 }, { + "Id": 741, "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId", - "Id": 741, "Rank": 1 }, { + "Id": 742, "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId contoso", - "Id": 742, "Rank": 2 }, { + "Id": 743, "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Id": 743, "Rank": 3 }, { + "Id": 744, "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Id": 744, "Rank": 4 }, { + "Id": 745, "CommandName": "Get-PnPTenantInstance", "Command": "Get-PnPTenantInstance", - "Id": 745, "Rank": 1 }, { + "Id": 746, "CommandName": "Get-PnPTenantRecycleBinItem", "Command": "Get-PnPTenantRecycleBinItem", - "Id": 746, "Rank": 1 }, { + "Id": 747, "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Id": 747, "Rank": 1 }, { + "Id": 748, "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Id": 748, "Rank": 2 }, { + "Id": 749, "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Id": 749, "Rank": 1 }, { + "Id": 750, "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Id": 750, "Rank": 2 }, { + "Id": 751, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite", - "Id": 751, "Rank": 1 }, { + "Id": 752, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Detailed", - "Id": 752, "Rank": 2 }, { + "Id": 753, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Id": 753, "Rank": 3 }, { + "Id": 754, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Id": 754, "Rank": 4 }, { + "Id": 755, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Id": 755, "Rank": 5 }, { + "Id": 756, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Id": 756, "Rank": 6 }, { + "Id": 757, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Id": 757, "Rank": 7 }, { + "Id": 758, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Id": 758, "Rank": 8 }, { + "Id": 759, "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Id": 759, "Rank": 9 }, { + "Id": 760, "CommandName": "Get-PnPTenantSyncClientRestriction", "Command": "Get-PnPTenantSyncClientRestriction", - "Id": 760, "Rank": 1 }, { + "Id": 761, "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Id": 761, "Rank": 1 }, { + "Id": 762, "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Id": 762, "Rank": 2 }, { + "Id": 763, "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Id": 763, "Rank": 3 }, { + "Id": 764, "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme", - "Id": 764, "Rank": 1 }, { + "Id": 765, "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Id": 765, "Rank": 2 }, { + "Id": 766, "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Id": 766, "Rank": 3 }, { + "Id": 767, "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 767, "Rank": 1 }, { + "Id": 768, "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 768, "Rank": 2 }, { + "Id": 769, "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 769, "Rank": 3 }, { + "Id": 770, "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Id": 770, "Rank": 4 }, { + "Id": 771, "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Id": 771, "Rank": 5 }, { + "Id": 772, "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup", - "Id": 772, "Rank": 1 }, { + "Id": 773, "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Id": 773, "Rank": 2 }, { + "Id": 774, "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Id": 774, "Rank": 3 }, { + "Id": 775, "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Id": 775, "Rank": 1 }, { + "Id": 776, "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Id": 776, "Rank": 2 }, { + "Id": 777, "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 777, "Rank": 3 }, { + "Id": 778, "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Id": 778, "Rank": 1 }, { + "Id": 779, "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Id": 779, "Rank": 2 }, { + "Id": 780, "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Id": 780, "Rank": 3 }, { + "Id": 781, "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme", - "Id": 781, "Rank": 1 }, { + "Id": 782, "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Id": 782, "Rank": 2 }, { + "Id": 783, "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId", - "Id": 783, "Rank": 1 }, { + "Id": 784, "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Id": 784, "Rank": 2 }, { + "Id": 785, "CommandName": "Get-PnPUnfurlLink", "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Id": 785, "Rank": 1 }, { + "Id": 786, "CommandName": "Get-PnPUnifiedAuditLog", "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Id": 786, "Rank": 1 }, { + "Id": 787, "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus", - "Id": 787, "Rank": 1 }, { + "Id": 788, "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Id": 788, "Rank": 2 }, { + "Id": 789, "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Id": 789, "Rank": 3 }, { + "Id": 790, "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Id": 790, "Rank": 4 }, { + "Id": 791, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser", - "Id": 791, "Rank": 1 }, { + "Id": 792, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity 23", - "Id": 792, "Rank": 2 }, { + "Id": 793, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Id": 793, "Rank": 3 }, { + "Id": 794, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Id": 794, "Rank": 4 }, { + "Id": 795, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned", - "Id": 795, "Rank": 5 }, { + "Id": 796, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Id": 796, "Rank": 6 }, { + "Id": 797, "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Id": 797, "Rank": 7 }, { + "Id": 798, "CommandName": "Get-PnPUserOneDriveQuota", "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Id": 798, "Rank": 1 }, { + "Id": 799, "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Id": 799, "Rank": 1 }, { + "Id": 800, "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Id": 800, "Rank": 2 }, { + "Id": 801, "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Id": 801, "Rank": 3 }, { + "Id": 802, "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\"", - "Id": 802, "Rank": 1 }, { + "Id": 803, "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Id": 803, "Rank": 2 }, { + "Id": 804, "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Id": 804, "Rank": 3 }, { + "Id": 805, "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE", - "Id": 805, "Rank": 1 }, { + "Id": 806, "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Id": 806, "Rank": 2 }, { + "Id": 807, "CommandName": "Get-PnPWeb", "Command": "Get-PnPWeb", - "Id": 807, "Rank": 1 }, { + "Id": 808, "CommandName": "Get-PnPWebHeader", "Command": "Get-PnPWebHeader", - "Id": 808, "Rank": 1 }, { + "Id": 809, "CommandName": "Get-PnPWebhookSubscriptions", "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Id": 809, "Rank": 1 }, { + "Id": 810, "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Id": 810, "Rank": 1 }, { + "Id": 811, "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 811, "Rank": 2 }, { + "Id": 812, "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Id": 812, "Rank": 1 }, { + "Id": 813, "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "Id": 813, "Rank": 2 }, { + "Id": 814, "CommandName": "Get-PnPWebPartXml", "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 814, "Rank": 1 }, { + "Id": 815, "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates", - "Id": 815, "Rank": 1 }, { + "Id": 816, "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -LCID 1033", - "Id": 816, "Rank": 2 }, { + "Id": 817, "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Id": 817, "Rank": 3 }, { + "Id": 818, "CommandName": "Get-PnPWikiPageContent", "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Id": 818, "Rank": 1 }, { + "Id": 819, "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Id": 819, "Rank": 1 }, { + "Id": 820, "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "Id": 820, "Rank": 2 }, { + "Id": 821, "CommandName": "Grant-PnPHubSiteRights", "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 821, "Rank": 1 }, { + "Id": 822, "CommandName": "Grant-PnPSiteDesignRights", "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 822, "Rank": 1 }, { + "Id": 823, "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 823, "Rank": 1 }, { + "Id": 824, "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Id": 824, "Rank": 1 }, { + "Id": 825, "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Id": 825, "Rank": 2 }, { + "Id": 826, "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Id": 826, "Rank": 3 }, { + "Id": 827, "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Id": 827, "Rank": 1 }, { + "Id": 828, "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Id": 828, "Rank": 2 }, { + "Id": 829, "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Id": 829, "Rank": 1 }, { + "Id": 830, "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": 830, "Rank": 2 }, { + "Id": 831, "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": 831, "Rank": 3 }, { + "Id": 832, "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 832, "Rank": 1 }, { + "Id": 833, "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 833, "Rank": 2 }, { + "Id": 834, "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "Id": 834, "Rank": 1 }, { + "Id": 835, "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Id": 835, "Rank": 2 }, { + "Id": 836, "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Id": 836, "Rank": 3 }, { + "Id": 837, "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Id": 837, "Rank": 4 }, { + "Id": 838, "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Id": 838, "Rank": 5 }, { + "Id": 839, "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", - "Id": 839, "Rank": 6 }, { + "Id": 840, "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": 840, "Rank": 7 }, { + "Id": 841, "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 841, "Rank": 1 }, { + "Id": 842, "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 842, "Rank": 2 }, { + "Id": 843, "CommandName": "Invoke-PnPQuery", "Command": "Invoke-PnPQuery -RetryCount 5", - "Id": 843, "Rank": 1 }, { + "Id": 844, "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 844, "Rank": 1 }, { + "Id": 845, "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 845, "Rank": 2 }, { + "Id": 846, "CommandName": "Invoke-PnPSiteScript", "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Id": 846, "Rank": 1 }, { + "Id": 847, "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": 847, "Rank": 1 }, { + "Id": 848, "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": 848, "Rank": 2 }, { + "Id": 849, "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": 849, "Rank": 3 }, { + "Id": 850, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Id": 850, "Rank": 1 }, { + "Id": 851, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Id": 851, "Rank": 2 }, { + "Id": 852, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 852, "Rank": 3 }, { + "Id": 853, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Id": 853, "Rank": 4 }, { + "Id": 854, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Id": 854, "Rank": 5 }, { + "Id": 855, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Id": 855, "Rank": 6 }, { + "Id": 856, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Id": 856, "Rank": 7 }, { + "Id": 857, "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Id": 857, "Rank": 8 }, { + "Id": 858, "CommandName": "Invoke-PnPSPRestMethod", "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Id": 858, "Rank": 1 }, { + "Id": 859, "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Id": 859, "Rank": 1 }, { + "Id": 860, "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Id": 860, "Rank": 2 }, { + "Id": 861, "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 861, "Rank": 3 }, { + "Id": 862, "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Id": 862, "Rank": 1 }, { + "Id": 863, "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Id": 863, "Rank": 2 }, { + "Id": 864, "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\"", - "Id": 864, "Rank": 1 }, { + "Id": 865, "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Id": 865, "Rank": 2 }, { + "Id": 866, "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb", - "Id": 866, "Rank": 1 }, { + "Id": 867, "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb $web -Recursive", - "Id": 867, "Rank": 2 }, { + "Id": 868, "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Id": 868, "Rank": 1 }, { + "Id": 869, "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Id": 869, "Rank": 2 }, { + "Id": 870, "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 870, "Rank": 3 }, { + "Id": 871, "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 871, "Rank": 4 }, { + "Id": 872, "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Id": 872, "Rank": 1 }, { + "Id": 873, "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Id": 873, "Rank": 2 }, { + "Id": 874, "CommandName": "Move-PnPListItemToRecycleBin", "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Id": 874, "Rank": 1 }, { + "Id": 875, "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Id": 875, "Rank": 1 }, { + "Id": 876, "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Id": 876, "Rank": 2 }, { + "Id": 877, "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Id": 877, "Rank": 3 }, { + "Id": 878, "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "Id": 878, "Rank": 4 }, { + "Id": 879, "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem", - "Id": 879, "Rank": 1 }, { + "Id": 880, "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Id": 880, "Rank": 2 }, { + "Id": 881, "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Force", - "Id": 881, "Rank": 3 }, { + "Id": 882, "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": 882, "Rank": 1 }, { + "Id": 883, "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Id": 883, "Rank": 2 }, { + "Id": 884, "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Id": 884, "Rank": 3 }, { + "Id": 885, "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": 885, "Rank": 1 }, { + "Id": 886, "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Id": 886, "Rank": 2 }, { + "Id": 887, "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 887, "Rank": 1 }, { + "Id": 888, "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Id": 888, "Rank": 2 }, { + "Id": 889, "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Id": 889, "Rank": 3 }, { + "Id": 890, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Id": 890, "Rank": 1 }, { + "Id": 891, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Id": 891, "Rank": 2 }, { + "Id": 892, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "Id": 892, "Rank": 3 }, { + "Id": 893, "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Id": 893, "Rank": 1 }, { + "Id": 894, "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Id": 894, "Rank": 2 }, { + "Id": 895, "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "Id": 895, "Rank": 3 }, { + "Id": 896, "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": 896, "Rank": 1 }, { + "Id": 897, "CommandName": "New-PnPGraphSubscription", "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "Id": 897, "Rank": 2 }, { + "Id": 898, "CommandName": "New-PnPGroup", "Command": "New-PnPGroup -Title \"My Site Users\"", - "Id": 898, "Rank": 1 }, { + "Id": 899, "CommandName": "New-PnPList", "Command": "New-PnPList -Title Announcements -Template Announcements", - "Id": 899, "Rank": 1 }, { + "Id": 900, "CommandName": "New-PnPList", "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Id": 900, "Rank": 2 }, { + "Id": 901, "CommandName": "New-PnPList", "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Id": 901, "Rank": 3 }, { + "Id": 902, "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 902, "Rank": 1 }, { + "Id": 903, "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "Id": 903, "Rank": 2 }, { + "Id": 904, "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Id": 904, "Rank": 3 }, { + "Id": 905, "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Id": 905, "Rank": 4 }, { + "Id": 906, "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 906, "Rank": 5 }, { + "Id": 907, "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 907, "Rank": 6 }, { + "Id": 908, "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": 908, "Rank": 1 }, { + "Id": 909, "CommandName": "New-PnPMicrosoft365GroupSettings", "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "Id": 909, "Rank": 2 }, { + "Id": 910, "CommandName": "New-PnPPersonalSite", "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Id": 910, "Rank": 1 }, { + "Id": 911, "CommandName": "New-PnPPlannerPlan", "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Id": 911, "Rank": 1 }, { + "Id": 912, "CommandName": "New-PnPSdnProvider", "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Id": 912, "Rank": 1 }, { + "Id": 913, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 913, "Rank": 1 }, { + "Id": 914, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Id": 914, "Rank": 2 }, { + "Id": 915, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Id": 915, "Rank": 3 }, { + "Id": 916, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 916, "Rank": 4 }, { + "Id": 917, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 917, "Rank": 5 }, { + "Id": 918, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 918, "Rank": 6 }, { + "Id": 919, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Id": 919, "Rank": 7 }, { + "Id": 920, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Id": 920, "Rank": 8 }, { + "Id": 921, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Id": 921, "Rank": 9 }, { + "Id": 922, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Id": 922, "Rank": 10 }, { + "Id": 923, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 923, "Rank": 11 }, { + "Id": 924, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Id": 924, "Rank": 12 }, { + "Id": 925, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 925, "Rank": 13 }, { + "Id": 926, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 926, "Rank": 14 }, { + "Id": 927, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 927, "Rank": 15 }, { + "Id": 928, "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "Id": 928, "Rank": 16 }, { + "Id": 929, "CommandName": "New-PnPSiteCollectionTermStore", "Command": "New-PnPSiteCollectionTermStore", - "Id": 929, "Rank": 1 }, { + "Id": 930, "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Id": 930, "Rank": 1 }, { + "Id": 931, "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Id": 931, "Rank": 2 }, { + "Id": 932, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Id": 932, "Rank": 1 }, { + "Id": 933, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Id": 933, "Rank": 2 }, { + "Id": 934, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Id": 934, "Rank": 3 }, { + "Id": 935, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Id": 935, "Rank": 4 }, { + "Id": 936, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "Id": 936, "Rank": 5 }, { + "Id": 937, "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": 937, "Rank": 6 }, { + "Id": 938, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Id": 938, "Rank": 7 }, { + "Id": 939, "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Id": 939, "Rank": 8 }, { + "Id": 940, "CommandName": "New-PnPTeamsApp", "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Id": 940, "Rank": 1 }, { + "Id": 941, "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Id": 941, "Rank": 1 }, { + "Id": 942, "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Id": 942, "Rank": 2 }, { + "Id": 943, "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Id": 943, "Rank": 3 }, { + "Id": 944, "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 944, "Rank": 4 }, { + "Id": 945, "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": 945, "Rank": 5 }, { + "Id": 946, "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": 946, "Rank": 6 }, { + "Id": 947, "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": 947, "Rank": 1 }, { + "Id": 948, "CommandName": "New-PnPTenantSite", "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "Id": 948, "Rank": 2 }, { + "Id": 949, "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Id": 949, "Rank": 1 }, { + "Id": 950, "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 950, "Rank": 2 }, { + "Id": 951, "CommandName": "New-PnPTermGroup", "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Id": 951, "Rank": 1 }, { + "Id": 952, "CommandName": "New-PnPTermLabel", "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Id": 952, "Rank": 1 }, { + "Id": 953, "CommandName": "New-PnPTermSet", "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Id": 953, "Rank": 1 }, { + "Id": 954, "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Id": 954, "Rank": 1 }, { + "Id": 955, "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": 955, "Rank": 2 }, { + "Id": 956, "CommandName": "New-PnPUser", "Command": "New-PnPUser -LoginName user@company.com", - "Id": 956, "Rank": 1 }, { + "Id": 957, "CommandName": "New-PnPWeb", "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "Id": 957, "Rank": 1 }, { + "Id": 958, "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 958, "Rank": 1 }, { + "Id": 959, "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Id": 959, "Rank": 2 }, { + "Id": 960, "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": 960, "Rank": 1 }, { + "Id": 961, "CommandName": "Publish-PnPContentType", "Command": "Publish-PnPContentType -ContentType 0x0101", - "Id": 961, "Rank": 1 }, { + "Id": 962, "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 962, "Rank": 1 }, { + "Id": 963, "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": 963, "Rank": 2 }, { + "Id": 964, "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Id": 964, "Rank": 1 }, { + "Id": 965, "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Id": 965, "Rank": 2 }, { + "Id": 966, "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Xml $xml", - "Id": 966, "Rank": 3 }, { + "Id": 967, "CommandName": "Read-PnPTenantTemplate", "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Id": 967, "Rank": 1 }, { + "Id": 968, "CommandName": "Register-PnPAppCatalogSite", "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Id": 968, "Rank": 1 }, { + "Id": 969, "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": 969, "Rank": 1 }, { + "Id": 970, "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": 970, "Rank": 2 }, { + "Id": 971, "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": 971, "Rank": 3 }, { + "Id": 972, "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": 972, "Rank": 4 }, { + "Id": 973, "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": 973, "Rank": 5 }, { + "Id": 974, "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": 974, "Rank": 6 }, { + "Id": 975, "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": 975, "Rank": 7 }, { + "Id": 976, "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 976, "Rank": 1 }, { + "Id": 977, "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Id": 977, "Rank": 2 }, { + "Id": 978, "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess", - "Id": 978, "Rank": 1 }, { + "Id": 979, "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Id": 979, "Rank": 2 }, { + "Id": 980, "CommandName": "Register-PnPManagementShellAccess", "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Id": 980, "Rank": 3 }, { + "Id": 981, "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Id": 981, "Rank": 1 }, { + "Id": 982, "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Id": 982, "Rank": 2 }, { + "Id": 983, "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Id": 983, "Rank": 1 }, { + "Id": 984, "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 984, "Rank": 2 }, { + "Id": 985, "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 985, "Rank": 1 }, { + "Id": 986, "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 986, "Rank": 2 }, { + "Id": 987, "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 987, "Rank": 1 }, { + "Id": 988, "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 988, "Rank": 2 }, { + "Id": 989, "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Id": 989, "Rank": 1 }, { + "Id": 990, "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 990, "Rank": 2 }, { + "Id": 991, "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Id": 991, "Rank": 1 }, { + "Id": 992, "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 992, "Rank": 2 }, { + "Id": 993, "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Id": 993, "Rank": 1 }, { + "Id": 994, "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $group", - "Id": 994, "Rank": 2 }, { + "Id": 995, "CommandName": "Remove-PnPAzureADGroupMember", "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 995, "Rank": 1 }, { + "Id": 996, "CommandName": "Remove-PnPAzureADGroupOwner", "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 996, "Rank": 1 }, { + "Id": 997, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Id": 997, "Rank": 1 }, { + "Id": 998, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Id": 998, "Rank": 2 }, { + "Id": 999, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 999, "Rank": 3 }, { + "Id": 1000, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Id": 1000, "Rank": 4 }, { + "Id": 1001, "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Id": 1001, "Rank": 1 }, { + "Id": 1002, "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Id": 1002, "Rank": 2 }, { + "Id": 1003, "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Id": 1003, "Rank": 1 }, { + "Id": 1004, "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Id": 1004, "Rank": 2 }, { + "Id": 1005, "CommandName": "Remove-PnPContentTypeFromList", "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Id": 1005, "Rank": 1 }, { + "Id": 1006, "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1006, "Rank": 1 }, { + "Id": 1007, "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 1007, "Rank": 2 }, { + "Id": 1008, "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Id": 1008, "Rank": 3 }, { + "Id": 1009, "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1009, "Rank": 1 }, { + "Id": 1010, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1010, "Rank": 1 }, { + "Id": 1011, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1011, "Rank": 2 }, { + "Id": 1012, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Id": 1012, "Rank": 3 }, { + "Id": 1013, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList", - "Id": 1013, "Rank": 4 }, { + "Id": 1014, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver", - "Id": 1014, "Rank": 5 }, { + "Id": 1015, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Site", - "Id": 1015, "Rank": 6 }, { + "Id": 1016, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Web", - "Id": 1016, "Rank": 7 }, { + "Id": 1017, "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope All", - "Id": 1017, "Rank": 8 }, { + "Id": 1018, "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -Identity \"Speakers\"", - "Id": 1018, "Rank": 1 }, { + "Id": 1019, "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Id": 1019, "Rank": 2 }, { + "Id": 1020, "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Id": 1020, "Rank": 1 }, { + "Id": 1021, "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Id": 1021, "Rank": 2 }, { + "Id": 1022, "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Id": 1022, "Rank": 1 }, { + "Id": 1023, "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Id": 1023, "Rank": 2 }, { + "Id": 1024, "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Id": 1024, "Rank": 3 }, { + "Id": 1025, "CommandName": "Remove-PnPFileFromSiteTemplate", "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Id": 1025, "Rank": 1 }, { + "Id": 1026, "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 1026, "Rank": 1 }, { + "Id": 1027, "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Id": 1027, "Rank": 2 }, { + "Id": 1028, "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1028, "Rank": 1 }, { + "Id": 1029, "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1029, "Rank": 2 }, { + "Id": 1030, "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Id": 1030, "Rank": 3 }, { + "Id": 1031, "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Id": 1031, "Rank": 1 }, { + "Id": 1032, "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Id": 1032, "Rank": 2 }, { + "Id": 1033, "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 1033, "Rank": 1 }, { + "Id": 1034, "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Id": 1034, "Rank": 2 }, { + "Id": 1035, "CommandName": "Remove-PnPGraphSubscription", "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Id": 1035, "Rank": 1 }, { + "Id": 1036, "CommandName": "Remove-PnPGroup", "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Id": 1036, "Rank": 1 }, { + "Id": 1037, "CommandName": "Remove-PnPGroupMember", "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Id": 1037, "Rank": 1 }, { + "Id": 1038, "CommandName": "Remove-PnPHomeSite", "Command": "Remove-PnPHomeSite", - "Id": 1038, "Rank": 1 }, { + "Id": 1039, "CommandName": "Remove-PnPHubSiteAssociation", "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1039, "Rank": 1 }, { + "Id": 1040, "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Id": 1040, "Rank": 1 }, { + "Id": 1041, "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Id": 1041, "Rank": 2 }, { + "Id": 1042, "CommandName": "Remove-PnPIndexedProperty", "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Id": 1042, "Rank": 1 }, { + "Id": 1043, "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Id": 1043, "Rank": 1 }, { + "Id": 1044, "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Id": 1044, "Rank": 2 }, { + "Id": 1045, "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Id": 1045, "Rank": 3 }, { + "Id": 1046, "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Id": 1046, "Rank": 4 }, { + "Id": 1047, "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Id": 1047, "Rank": 5 }, { + "Id": 1048, "CommandName": "Remove-PnPKnowledgeHubSite", "Command": "Remove-PnPKnowledgeHubSite", - "Id": 1048, "Rank": 1 }, { + "Id": 1049, "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements", - "Id": 1049, "Rank": 1 }, { + "Id": 1050, "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Force", - "Id": 1050, "Rank": 2 }, { + "Id": 1051, "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Id": 1051, "Rank": 3 }, { + "Id": 1052, "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Id": 1052, "Rank": 4 }, { + "Id": 1053, "CommandName": "Remove-PnPListDesign", "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1053, "Rank": 1 }, { + "Id": 1054, "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Id": 1054, "Rank": 1 }, { + "Id": 1055, "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Id": 1055, "Rank": 2 }, { + "Id": 1056, "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\"", - "Id": 1056, "Rank": 3 }, { + "Id": 1057, "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Id": 1057, "Rank": 1 }, { + "Id": 1058, "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Id": 1058, "Rank": 2 }, { + "Id": 1059, "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Id": 1059, "Rank": 3 }, { + "Id": 1060, "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Id": 1060, "Rank": 4 }, { + "Id": 1061, "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Id": 1061, "Rank": 5 }, { + "Id": 1062, "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1062, "Rank": 1 }, { + "Id": 1063, "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1063, "Rank": 2 }, { + "Id": 1064, "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Id": 1064, "Rank": 1 }, { + "Id": 1065, "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Id": 1065, "Rank": 2 }, { + "Id": 1066, "CommandName": "Remove-PnPMicrosoft365GroupMember", "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1066, "Rank": 1 }, { + "Id": 1067, "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1067, "Rank": 1 }, { + "Id": 1068, "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Id": 1068, "Rank": 1 }, { + "Id": 1069, "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Id": 1069, "Rank": 2 }, { + "Id": 1070, "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Identity 1032", - "Id": 1070, "Rank": 1 }, { + "Id": 1071, "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Id": 1071, "Rank": 2 }, { + "Id": 1072, "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Id": 1072, "Rank": 3 }, { + "Id": 1073, "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Id": 1073, "Rank": 1 }, { + "Id": 1074, "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Id": 1074, "Rank": 2 }, { + "Id": 1075, "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Id": 1075, "Rank": 3 }, { + "Id": 1076, "CommandName": "Remove-PnPOrgNewsSite", "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1076, "Rank": 1 }, { + "Id": 1077, "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Id": 1077, "Rank": 1 }, { + "Id": 1078, "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Id": 1078, "Rank": 2 }, { + "Id": 1079, "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage $page", - "Id": 1079, "Rank": 3 }, { + "Id": 1080, "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Id": 1080, "Rank": 4 }, { + "Id": 1081, "CommandName": "Remove-PnPPageComponent", "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1081, "Rank": 1 }, { + "Id": 1082, "CommandName": "Remove-PnPPlannerBucket", "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Id": 1082, "Rank": 1 }, { + "Id": 1083, "CommandName": "Remove-PnPPlannerPlan", "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Id": 1083, "Rank": 1 }, { + "Id": 1084, "CommandName": "Remove-PnPPlannerRoster", "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Id": 1084, "Rank": 1 }, { + "Id": 1085, "CommandName": "Remove-PnPPlannerRosterMember", "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1085, "Rank": 1 }, { + "Id": 1086, "CommandName": "Remove-PnPPlannerTask", "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Id": 1086, "Rank": 1 }, { + "Id": 1087, "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Id": 1087, "Rank": 1 }, { + "Id": 1088, "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Id": 1088, "Rank": 2 }, { + "Id": 1089, "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Id": 1089, "Rank": 3 }, { + "Id": 1090, "CommandName": "Remove-PnPPublishingImageRendition", "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Id": 1090, "Rank": 1 }, { + "Id": 1091, "CommandName": "Remove-PnPRoleDefinition", "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Id": 1091, "Rank": 1 }, { + "Id": 1092, "CommandName": "Remove-PnPSdnProvider", "Command": "Remove-PnPSdnProvider -Confirm:false", - "Id": 1092, "Rank": 1 }, { + "Id": 1093, "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Id": 1093, "Rank": 1 }, { + "Id": 1094, "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1094, "Rank": 2 }, { + "Id": 1095, "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1095, "Rank": 3 }, { + "Id": 1096, "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1096, "Rank": 4 }, { + "Id": 1097, "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1097, "Rank": 1 }, { + "Id": 1098, "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1098, "Rank": 2 }, { + "Id": 1099, "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Id": 1099, "Rank": 1 }, { + "Id": 1100, "CommandName": "Remove-PnPSiteCollectionTermStore", "Command": "Remove-PnPSiteCollectionTermStore", - "Id": 1100, "Rank": 1 }, { + "Id": 1101, "CommandName": "Remove-PnPSiteDesign", "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1101, "Rank": 1 }, { + "Id": 1102, "CommandName": "Remove-PnPSiteDesignTask", "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1102, "Rank": 1 }, { + "Id": 1103, "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1103, "Rank": 1 }, { + "Id": 1104, "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Id": 1104, "Rank": 2 }, { + "Id": 1105, "CommandName": "Remove-PnPSiteScript", "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1105, "Rank": 1 }, { + "Id": 1106, "CommandName": "Remove-PnPSiteUserInvitations", "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Id": 1106, "Rank": 1 }, { + "Id": 1107, "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey", - "Id": 1107, "Rank": 1 }, { + "Id": 1108, "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Id": 1108, "Rank": 2 }, { + "Id": 1109, "CommandName": "Remove-PnPStoredCredential", "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Id": 1109, "Rank": 1 }, { + "Id": 1110, "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Id": 1110, "Rank": 1 }, { + "Id": 1111, "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Id": 1111, "Rank": 2 }, { + "Id": 1112, "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Id": 1112, "Rank": 1 }, { + "Id": 1113, "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Id": 1113, "Rank": 2 }, { + "Id": 1114, "CommandName": "Remove-PnPTeamsChannel", "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Id": 1114, "Rank": 1 }, { + "Id": 1115, "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Id": 1115, "Rank": 1 }, { + "Id": 1116, "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Id": 1116, "Rank": 2 }, { + "Id": 1117, "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Id": 1117, "Rank": 3 }, { + "Id": 1118, "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Id": 1118, "Rank": 1 }, { + "Id": 1119, "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Id": 1119, "Rank": 2 }, { + "Id": 1120, "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", - "Id": 1120, "Rank": 3 }, { + "Id": 1121, "CommandName": "Remove-PnPTeamsTag", "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Id": 1121, "Rank": 1 }, { + "Id": 1122, "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Id": 1122, "Rank": 1 }, { + "Id": 1123, "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Id": 1123, "Rank": 2 }, { + "Id": 1124, "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Id": 1124, "Rank": 1 }, { + "Id": 1125, "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1125, "Rank": 2 }, { + "Id": 1126, "CommandName": "Remove-PnPTenantCdnOrigin", "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Id": 1126, "Rank": 1 }, { + "Id": 1127, "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1127, "Rank": 1 }, { + "Id": 1128, "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1128, "Rank": 2 }, { + "Id": 1129, "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1129, "Rank": 1 }, { + "Id": 1130, "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Id": 1130, "Rank": 2 }, { + "Id": 1131, "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Id": 1131, "Rank": 3 }, { + "Id": 1132, "CommandName": "Remove-PnPTenantSyncClientRestriction", "Command": "Remove-PnPTenantSyncClientRestriction", - "Id": 1132, "Rank": 1 }, { + "Id": 1133, "CommandName": "Remove-PnPTenantTheme", "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Id": 1133, "Rank": 1 }, { + "Id": 1134, "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1134, "Rank": 1 }, { + "Id": 1135, "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1135, "Rank": 2 }, { + "Id": 1136, "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1136, "Rank": 1 }, { + "Id": 1137, "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Id": 1137, "Rank": 2 }, { + "Id": 1138, "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Id": 1138, "Rank": 3 }, { + "Id": 1139, "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Id": 1139, "Rank": 1 }, { + "Id": 1140, "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1140, "Rank": 2 }, { + "Id": 1141, "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity 23", - "Id": 1141, "Rank": 1 }, { + "Id": 1142, "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Id": 1142, "Rank": 2 }, { + "Id": 1143, "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Id": 1143, "Rank": 3 }, { + "Id": 1144, "CommandName": "Remove-PnPUserInfo", "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Id": 1144, "Rank": 1 }, { + "Id": 1145, "CommandName": "Remove-PnPUserProfile", "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Id": 1145, "Rank": 1 }, { + "Id": 1146, "CommandName": "Remove-PnPView", "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Id": 1146, "Rank": 1 }, { + "Id": 1147, "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Id": 1147, "Rank": 1 }, { + "Id": 1148, "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity projectA", - "Id": 1148, "Rank": 1 }, { + "Id": 1149, "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Id": 1149, "Rank": 2 }, { + "Id": 1150, "CommandName": "Remove-PnPWebhookSubscription", "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Id": 1150, "Rank": 1 }, { + "Id": 1151, "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1151, "Rank": 1 }, { + "Id": 1152, "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Id": 1152, "Rank": 2 }, { + "Id": 1153, "CommandName": "Remove-PnPWikiPage", "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Id": 1153, "Rank": 1 }, { + "Id": 1154, "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Id": 1154, "Rank": 1 }, { + "Id": 1155, "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Id": 1155, "Rank": 2 }, { + "Id": 1156, "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Id": 1156, "Rank": 3 }, { + "Id": 1157, "CommandName": "Rename-PnPFolder", "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Id": 1157, "Rank": 1 }, { + "Id": 1158, "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1158, "Rank": 1 }, { + "Id": 1159, "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1159, "Rank": 2 }, { + "Id": 1160, "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken", - "Id": 1160, "Rank": 1 }, { + "Id": 1161, "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Id": 1161, "Rank": 2 }, { + "Id": 1162, "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Id": 1162, "Rank": 3 }, { + "Id": 1163, "CommandName": "Request-PnPAccessToken", "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Id": 1163, "Rank": 4 }, { + "Id": 1164, "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Id": 1164, "Rank": 1 }, { + "Id": 1165, "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Id": 1165, "Rank": 2 }, { + "Id": 1166, "CommandName": "Request-PnPReIndexList", "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Id": 1166, "Rank": 1 }, { + "Id": 1167, "CommandName": "Request-PnPReIndexWeb", "Command": "Request-PnPReIndexWeb", - "Id": 1167, "Rank": 1 }, { + "Id": 1168, "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Id": 1168, "Rank": 1 }, { + "Id": 1169, "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Id": 1169, "Rank": 2 }, { + "Id": 1170, "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Id": 1170, "Rank": 3 }, { + "Id": 1171, "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Id": 1171, "Rank": 1 }, { + "Id": 1172, "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Id": 1172, "Rank": 2 }, { + "Id": 1173, "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\"", - "Id": 1173, "Rank": 1 }, { + "Id": 1174, "CommandName": "Reset-PnPLabel", "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Id": 1174, "Rank": 2 }, { + "Id": 1175, "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1175, "Rank": 1 }, { + "Id": 1176, "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Id": 1176, "Rank": 1 }, { + "Id": 1177, "CommandName": "Resolve-PnPFolder", "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Id": 1177, "Rank": 1 }, { + "Id": 1178, "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1178, "Rank": 1 }, { + "Id": 1179, "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1179, "Rank": 1 }, { + "Id": 1180, "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Id": 1180, "Rank": 2 }, { + "Id": 1181, "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1181, "Rank": 3 }, { + "Id": 1182, "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1182, "Rank": 1 }, { + "Id": 1183, "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1183, "Rank": 2 }, { + "Id": 1184, "CommandName": "Restore-PnPRecycleBinItem", "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Id": 1184, "Rank": 1 }, { + "Id": 1185, "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1185, "Rank": 1 }, { + "Id": 1186, "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Id": 1186, "Rank": 2 }, { + "Id": 1187, "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1187, "Rank": 1 }, { + "Id": 1188, "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1188, "Rank": 2 }, { + "Id": 1189, "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Id": 1189, "Rank": 3 }, { + "Id": 1190, "CommandName": "Revoke-PnPAzureADAppSitePermission", "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Id": 1190, "Rank": 1 }, { + "Id": 1191, "CommandName": "Revoke-PnPHubSiteRights", "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1191, "Rank": 1 }, { + "Id": 1192, "CommandName": "Revoke-PnPSiteDesignRights", "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1192, "Rank": 1 }, { + "Id": 1193, "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 1193, "Rank": 1 }, { + "Id": 1194, "CommandName": "Revoke-PnPUserSession", "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Id": 1194, "Rank": 1 }, { + "Id": 1195, "CommandName": "Save-PnPPageConversionLog", "Command": "Save-PnPPageConversionLog", - "Id": 1195, "Rank": 1 }, { + "Id": 1196, "CommandName": "Save-PnPSiteTemplate", "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Id": 1196, "Rank": 1 }, { + "Id": 1197, "CommandName": "Save-PnPTenantTemplate", "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Id": 1197, "Rank": 1 }, { + "Id": 1198, "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": 1198, "Rank": 1 }, { + "Id": 1199, "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": 1199, "Rank": 2 }, { + "Id": 1200, "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Id": 1200, "Rank": 3 }, { + "Id": 1201, "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": 1201, "Rank": 4 }, { + "Id": 1202, "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": 1202, "Rank": 5 }, { + "Id": 1203, "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": 1203, "Rank": 6 }, { + "Id": 1204, "CommandName": "Set-PnPAdaptiveScopeProperty", "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Id": 1204, "Rank": 1 }, { + "Id": 1205, "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1205, "Rank": 1 }, { + "Id": 1206, "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "Id": 1206, "Rank": 2 }, { + "Id": 1207, "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -On", - "Id": 1207, "Rank": 1 }, { + "Id": 1208, "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -Off", - "Id": 1208, "Rank": 2 }, { + "Id": 1209, "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -EnableAll", - "Id": 1209, "Rank": 1 }, { + "Id": 1210, "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -DisableAll", - "Id": 1210, "Rank": 2 }, { + "Id": 1211, "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7", - "Id": 1211, "Rank": 3 }, { + "Id": 1212, "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -TrimAuditLog", - "Id": 1212, "Rank": 4 }, { + "Id": 1213, "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Id": 1213, "Rank": 5 }, { + "Id": 1214, "CommandName": "Set-PnPAvailablePageLayouts", "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Id": 1214, "Rank": 1 }, { + "Id": 1215, "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Id": 1215, "Rank": 1 }, { + "Id": 1216, "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Id": 1216, "Rank": 2 }, { + "Id": 1217, "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1217, "Rank": 1 }, { + "Id": 1218, "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1218, "Rank": 2 }, { + "Id": 1219, "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Id": 1219, "Rank": 3 }, { + "Id": 1220, "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Id": 1220, "Rank": 1 }, { + "Id": 1221, "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Id": 1221, "Rank": 2 }, { + "Id": 1222, "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Id": 1222, "Rank": 3 }, { + "Id": 1223, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Id": 1223, "Rank": 1 }, { + "Id": 1224, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Id": 1224, "Rank": 2 }, { + "Id": 1225, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Id": 1225, "Rank": 1 }, { + "Id": 1226, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Id": 1226, "Rank": 2 }, { + "Id": 1227, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Id": 1227, "Rank": 3 }, { + "Id": 1228, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Id": 1228, "Rank": 4 }, { + "Id": 1229, "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1229, "Rank": 1 }, { + "Id": 1230, "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Id": 1230, "Rank": 2 }, { + "Id": 1231, "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1231, "Rank": 3 }, { + "Id": 1232, "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1232, "Rank": 4 }, { + "Id": 1233, "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1233, "Rank": 5 }, { + "Id": 1234, "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Id": 1234, "Rank": 1 }, { + "Id": 1235, "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Id": 1235, "Rank": 2 }, { + "Id": 1236, "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Id": 1236, "Rank": 3 }, { + "Id": 1237, "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Id": 1237, "Rank": 4 }, { + "Id": 1238, "CommandName": "Set-PnPDefaultContentTypeToList", "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Id": 1238, "Rank": 1 }, { + "Id": 1239, "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Id": 1239, "Rank": 1 }, { + "Id": 1240, "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Id": 1240, "Rank": 2 }, { + "Id": 1241, "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Id": 1241, "Rank": 3 }, { + "Id": 1242, "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Id": 1242, "Rank": 1 }, { + "Id": 1243, "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1243, "Rank": 2 }, { + "Id": 1244, "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1244, "Rank": 3 }, { + "Id": 1245, "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Id": 1245, "Rank": 1 }, { + "Id": 1246, "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Id": 1246, "Rank": 2 }, { + "Id": 1247, "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Id": 1247, "Rank": 1 }, { + "Id": 1248, "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Id": 1248, "Rank": 2 }, { + "Id": 1249, "CommandName": "Set-PnPField", "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Id": 1249, "Rank": 3 }, { + "Id": 1250, "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Id": 1250, "Rank": 1 }, { + "Id": 1251, "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Id": 1251, "Rank": 2 }, { + "Id": 1252, "CommandName": "Set-PnPFileCheckedOut", "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Id": 1252, "Rank": 1 }, { + "Id": 1253, "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1253, "Rank": 1 }, { + "Id": 1254, "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1254, "Rank": 2 }, { + "Id": 1255, "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1255, "Rank": 3 }, { + "Id": 1256, "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true", - "Id": 1256, "Rank": 1 }, { + "Id": 1257, "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Id": 1257, "Rank": 2 }, { + "Id": 1258, "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Id": 1258, "Rank": 3 }, { + "Id": 1259, "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -LogoUrl \"\"", - "Id": 1259, "Rank": 4 }, { + "Id": 1260, "CommandName": "Set-PnPGraphSubscription", "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Id": 1260, "Rank": 1 }, { + "Id": 1261, "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Id": 1261, "Rank": 1 }, { + "Id": 1262, "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Id": 1262, "Rank": 2 }, { + "Id": 1263, "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Id": 1263, "Rank": 1 }, { + "Id": 1264, "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Id": 1264, "Rank": 2 }, { + "Id": 1265, "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Id": 1265, "Rank": 3 }, { + "Id": 1266, "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Id": 1266, "Rank": 4 }, { + "Id": 1267, "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Id": 1267, "Rank": 5 }, { + "Id": 1268, "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Id": 1268, "Rank": 1 }, { + "Id": 1269, "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Id": 1269, "Rank": 2 }, { + "Id": 1270, "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Id": 1270, "Rank": 1 }, { + "Id": 1271, "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Id": 1271, "Rank": 2 }, { + "Id": 1272, "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Id": 1272, "Rank": 1 }, { + "Id": 1273, "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Id": 1273, "Rank": 2 }, { + "Id": 1274, "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Id": 1274, "Rank": 1 }, { + "Id": 1275, "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Id": 1275, "Rank": 2 }, { + "Id": 1276, "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Id": 1276, "Rank": 3 }, { + "Id": 1277, "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "Id": 1277, "Rank": 4 }, { + "Id": 1278, "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Id": 1278, "Rank": 5 }, { + "Id": 1279, "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Id": 1279, "Rank": 6 }, { + "Id": 1280, "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Id": 1280, "Rank": 1 }, { + "Id": 1281, "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Id": 1281, "Rank": 2 }, { + "Id": 1282, "CommandName": "Set-PnPIndexedProperties", "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Id": 1282, "Rank": 1 }, { + "Id": 1283, "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Id": 1283, "Rank": 1 }, { + "Id": 1284, "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Id": 1284, "Rank": 2 }, { + "Id": 1285, "CommandName": "Set-PnPKnowledgeHubSite", "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Id": 1285, "Rank": 1 }, { + "Id": 1286, "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Id": 1286, "Rank": 1 }, { + "Id": 1287, "CommandName": "Set-PnPLabel", "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Id": 1287, "Rank": 2 }, { + "Id": 1288, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Id": 1288, "Rank": 1 }, { + "Id": 1289, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Id": 1289, "Rank": 2 }, { + "Id": 1290, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Id": 1290, "Rank": 3 }, { + "Id": 1291, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Id": 1291, "Rank": 4 }, { + "Id": 1292, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Id": 1292, "Rank": 5 }, { + "Id": 1293, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Id": 1293, "Rank": 6 }, { + "Id": 1294, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Id": 1294, "Rank": 7 }, { + "Id": 1295, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Id": 1295, "Rank": 8 }, { + "Id": 1296, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Id": 1296, "Rank": 9 }, { + "Id": 1297, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Id": 1297, "Rank": 10 }, { + "Id": 1298, "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Id": 1298, "Rank": 11 }, { + "Id": 1299, "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Id": 1299, "Rank": 1 }, { + "Id": 1300, "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Id": 1300, "Rank": 2 }, { + "Id": 1301, "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1301, "Rank": 1 }, { + "Id": 1302, "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1302, "Rank": 2 }, { + "Id": 1303, "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1303, "Rank": 3 }, { + "Id": 1304, "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Id": 1304, "Rank": 4 }, { + "Id": 1305, "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Id": 1305, "Rank": 5 }, { + "Id": 1306, "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Id": 1306, "Rank": 1 }, { + "Id": 1307, "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Id": 1307, "Rank": 2 }, { + "Id": 1308, "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1308, "Rank": 1 }, { + "Id": 1309, "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1309, "Rank": 2 }, { + "Id": 1310, "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1310, "Rank": 3 }, { + "Id": 1311, "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Id": 1311, "Rank": 4 }, { + "Id": 1312, "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Id": 1312, "Rank": 5 }, { + "Id": 1313, "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1313, "Rank": 1 }, { + "Id": 1314, "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1314, "Rank": 2 }, { + "Id": 1315, "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Id": 1315, "Rank": 1 }, { + "Id": 1316, "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Id": 1316, "Rank": 2 }, { + "Id": 1317, "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1317, "Rank": 1 }, { + "Id": 1318, "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1318, "Rank": 2 }, { + "Id": 1319, "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1319, "Rank": 3 }, { + "Id": 1320, "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1320, "Rank": 4 }, { + "Id": 1321, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Id": 1321, "Rank": 1 }, { + "Id": 1322, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1322, "Rank": 2 }, { + "Id": 1323, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1323, "Rank": 3 }, { + "Id": 1324, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Id": 1324, "Rank": 1 }, { + "Id": 1325, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1325, "Rank": 2 }, { + "Id": 1326, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1326, "Rank": 3 }, { + "Id": 1327, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Id": 1327, "Rank": 1 }, { + "Id": 1328, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1328, "Rank": 2 }, { + "Id": 1329, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1329, "Rank": 3 }, { + "Id": 1330, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Id": 1330, "Rank": 1 }, { + "Id": 1331, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1331, "Rank": 2 }, { + "Id": 1332, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1332, "Rank": 3 }, { + "Id": 1333, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Id": 1333, "Rank": 1 }, { + "Id": 1334, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Id": 1334, "Rank": 2 }, { + "Id": 1335, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1335, "Rank": 3 }, { + "Id": 1336, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Id": 1336, "Rank": 1 }, { + "Id": 1337, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Id": 1337, "Rank": 2 }, { + "Id": 1338, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1338, "Rank": 3 }, { + "Id": 1339, "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1339, "Rank": 1 }, { + "Id": 1340, "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1340, "Rank": 2 }, { + "Id": 1341, "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Id": 1341, "Rank": 3 }, { + "Id": 1342, "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Id": 1342, "Rank": 4 }, { + "Id": 1343, "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Id": 1343, "Rank": 5 }, { + "Id": 1344, "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 1344, "Rank": 6 }, { + "Id": 1345, "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Id": 1345, "Rank": 1 }, { + "Id": 1346, "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Id": 1346, "Rank": 2 }, { + "Id": 1347, "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Id": 1347, "Rank": 1 }, { + "Id": 1348, "CommandName": "Set-PnPMinimalDownloadStrategy", "Command": "Set-PnPMinimalDownloadStrategy -On", - "Id": 1348, "Rank": 2 }, { + "Id": 1349, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Id": 1349, "Rank": 1 }, { + "Id": 1350, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Id": 1350, "Rank": 2 }, { + "Id": 1351, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Id": 1351, "Rank": 3 }, { + "Id": 1352, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Id": 1352, "Rank": 4 }, { + "Id": 1353, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Id": 1353, "Rank": 5 }, { + "Id": 1354, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "Id": 1354, "Rank": 6 }, { + "Id": 1355, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Id": 1355, "Rank": 7 }, { + "Id": 1356, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Name \"NewPage\" -Translate", - "Id": 1356, "Rank": 8 }, { + "Id": 1357, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Id": 1357, "Rank": 9 }, { + "Id": 1358, "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Id": 1358, "Rank": 10 }, { + "Id": 1359, "CommandName": "Set-PnPPageTextPart", "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Id": 1359, "Rank": 1 }, { + "Id": 1360, "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Id": 1360, "Rank": 1 }, { + "Id": 1361, "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Id": 1361, "Rank": 2 }, { + "Id": 1362, "CommandName": "Set-PnPPlannerBucket", "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Id": 1362, "Rank": 1 }, { + "Id": 1363, "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Id": 1363, "Rank": 1 }, { + "Id": 1364, "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Id": 1364, "Rank": 2 }, { + "Id": 1365, "CommandName": "Set-PnPPlannerPlan", "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Id": 1365, "Rank": 1 }, { + "Id": 1366, "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Id": 1366, "Rank": 1 }, { + "Id": 1367, "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Id": 1367, "Rank": 2 }, { + "Id": 1368, "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Id": 1368, "Rank": 3 }, { + "Id": 1369, "CommandName": "Set-PnPPlannerUserPolicy", "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1369, "Rank": 1 }, { + "Id": 1370, "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Id": 1370, "Rank": 1 }, { + "Id": 1371, "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Id": 1371, "Rank": 2 }, { + "Id": 1372, "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Id": 1372, "Rank": 3 }, { + "Id": 1373, "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Id": 1373, "Rank": 1 }, { + "Id": 1374, "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled", - "Id": 1374, "Rank": 2 }, { + "Id": 1375, "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Id": 1375, "Rank": 3 }, { + "Id": 1376, "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Id": 1376, "Rank": 1 }, { + "Id": 1377, "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Id": 1377, "Rank": 2 }, { + "Id": 1378, "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Id": 1378, "Rank": 3 }, { + "Id": 1379, "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Id": 1379, "Rank": 4 }, { + "Id": 1380, "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Id": 1380, "Rank": 1 }, { + "Id": 1381, "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1381, "Rank": 2 }, { + "Id": 1382, "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1382, "Rank": 3 }, { + "Id": 1383, "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1383, "Rank": 4 }, { + "Id": 1384, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Id": 1384, "Rank": 1 }, { + "Id": 1385, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Id": 1385, "Rank": 2 }, { + "Id": 1386, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Id": 1386, "Rank": 3 }, { + "Id": 1387, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Id": 1387, "Rank": 4 }, { + "Id": 1388, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Id": 1388, "Rank": 5 }, { + "Id": 1389, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Id": 1389, "Rank": 6 }, { + "Id": 1390, "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Id": 1390, "Rank": 7 }, { + "Id": 1391, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification \"HBI\"", - "Id": 1391, "Rank": 1 }, { + "Id": 1392, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification $null", - "Id": 1392, "Rank": 2 }, { + "Id": 1393, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows", - "Id": 1393, "Rank": 3 }, { + "Id": 1394, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows:$false", - "Id": 1394, "Rank": 4 }, { + "Id": 1395, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Id": 1395, "Rank": 5 }, { + "Id": 1396, "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -NoScriptSite $false", - "Id": 1396, "Rank": 6 }, { + "Id": 1397, "CommandName": "Set-PnPSiteClassification", "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Id": 1397, "Rank": 1 }, { + "Id": 1398, "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Open", - "Id": 1398, "Rank": 1 }, { + "Id": 1399, "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Closed", - "Id": 1399, "Rank": 2 }, { + "Id": 1400, "CommandName": "Set-PnPSiteDesign", "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Id": 1400, "Rank": 1 }, { + "Id": 1401, "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": 1401, "Rank": 2 }, { + "Id": 1402, "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Id": 1402, "Rank": 1 }, { + "Id": 1403, "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Id": 1403, "Rank": 2 }, { + "Id": 1404, "CommandName": "Set-PnPSitePolicy", "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Id": 1404, "Rank": 1 }, { + "Id": 1405, "CommandName": "Set-PnPSiteScript", "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1405, "Rank": 1 }, { + "Id": 1406, "CommandName": "Set-PnPSiteScriptPackage", "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1406, "Rank": 1 }, { + "Id": 1407, "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Id": 1407, "Rank": 1 }, { + "Id": 1408, "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Id": 1408, "Rank": 2 }, { + "Id": 1409, "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1409, "Rank": 1 }, { + "Id": 1410, "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1410, "Rank": 2 }, { + "Id": 1411, "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1411, "Rank": 3 }, { + "Id": 1412, "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1412, "Rank": 4 }, { + "Id": 1413, "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1413, "Rank": 5 }, { + "Id": 1414, "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1414, "Rank": 6 }, { + "Id": 1415, "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1415, "Rank": 1 }, { + "Id": 1416, "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1416, "Rank": 2 }, { + "Id": 1417, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1417, "Rank": 1 }, { + "Id": 1418, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1418, "Rank": 2 }, { + "Id": 1419, "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1419, "Rank": 1 }, { + "Id": 1420, "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1420, "Rank": 2 }, { + "Id": 1421, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Id": 1421, "Rank": 1 }, { + "Id": 1422, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Id": 1422, "Rank": 2 }, { + "Id": 1423, "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Id": 1423, "Rank": 1 }, { + "Id": 1424, "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Id": 1424, "Rank": 2 }, { + "Id": 1425, "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Id": 1425, "Rank": 3 }, { + "Id": 1426, "CommandName": "Set-PnPTeamifyPromptHidden", "Command": "Set-PnPTeamifyPromptHidden", - "Id": 1426, "Rank": 1 }, { + "Id": 1427, "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Id": 1427, "Rank": 1 }, { + "Id": 1428, "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Id": 1428, "Rank": 2 }, { + "Id": 1429, "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "Id": 1429, "Rank": 1 }, { + "Id": 1430, "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Id": 1430, "Rank": 2 }, { + "Id": 1431, "CommandName": "Set-PnPTeamsTab", "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Id": 1431, "Rank": 1 }, { + "Id": 1432, "CommandName": "Set-PnPTeamsTag", "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Id": 1432, "Rank": 1 }, { + "Id": 1433, "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Id": 1433, "Rank": 1 }, { + "Id": 1434, "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Id": 1434, "Rank": 2 }, { + "Id": 1435, "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Id": 1435, "Rank": 3 }, { + "Id": 1436, "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Id": 1436, "Rank": 4 }, { + "Id": 1437, "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Id": 1437, "Rank": 1 }, { + "Id": 1438, "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Id": 1438, "Rank": 2 }, { + "Id": 1439, "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Id": 1439, "Rank": 3 }, { + "Id": 1440, "CommandName": "Set-PnPTeamsTeamPicture", "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Id": 1440, "Rank": 1 }, { + "Id": 1441, "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Id": 1441, "Rank": 1 }, { + "Id": 1442, "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Id": 1442, "Rank": 2 }, { + "Id": 1443, "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", - "Id": 1443, "Rank": 1 }, { + "Id": 1444, "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Id": 1444, "Rank": 2 }, { + "Id": 1445, "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Id": 1445, "Rank": 3 }, { + "Id": 1446, "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Id": 1446, "Rank": 4 }, { + "Id": 1447, "CommandName": "Set-PnPTenantAppCatalogUrl", "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Id": 1447, "Rank": 1 }, { + "Id": 1448, "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Id": 1448, "Rank": 1 }, { + "Id": 1449, "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Id": 1449, "Rank": 2 }, { + "Id": 1450, "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Id": 1450, "Rank": 3 }, { + "Id": 1451, "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", - "Id": 1451, "Rank": 1 }, { + "Id": 1452, "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Id": 1452, "Rank": 2 }, { + "Id": 1453, "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Id": 1453, "Rank": 1 }, { + "Id": 1454, "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Id": 1454, "Rank": 2 }, { + "Id": 1455, "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1455, "Rank": 3 }, { + "Id": 1456, "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1456, "Rank": 4 }, { + "Id": 1457, "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Id": 1457, "Rank": 5 }, { + "Id": 1458, "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Id": 1458, "Rank": 1 }, { + "Id": 1459, "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Id": 1459, "Rank": 2 }, { + "Id": 1460, "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Id": 1460, "Rank": 1 }, { + "Id": 1461, "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1461, "Rank": 2 }, { + "Id": 1462, "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1462, "Rank": 3 }, { + "Id": 1463, "CommandName": "Set-PnPTermGroup", "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Id": 1463, "Rank": 1 }, { + "Id": 1464, "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Id": 1464, "Rank": 1 }, { + "Id": 1465, "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Id": 1465, "Rank": 2 }, { + "Id": 1466, "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Id": 1466, "Rank": 3 }, { + "Id": 1467, "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme", - "Id": 1467, "Rank": 1 }, { + "Id": 1468, "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Id": 1468, "Rank": 2 }, { + "Id": 1469, "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Id": 1469, "Rank": 3 }, { + "Id": 1470, "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Id": 1470, "Rank": 4 }, { + "Id": 1471, "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Id": 1471, "Rank": 1 }, { + "Id": 1472, "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Id": 1472, "Rank": 2 }, { + "Id": 1473, "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Id": 1473, "Rank": 3 }, { + "Id": 1474, "CommandName": "Set-PnPTraceLog", "Command": "Set-PnPTraceLog -Off", - "Id": 1474, "Rank": 4 }, { + "Id": 1475, "CommandName": "Set-PnPUserOneDriveQuota", "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Id": 1475, "Rank": 1 }, { + "Id": 1476, "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Id": 1476, "Rank": 1 }, { + "Id": 1477, "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Id": 1477, "Rank": 2 }, { + "Id": 1478, "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Id": 1478, "Rank": 1 }, { + "Id": 1479, "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Id": 1479, "Rank": 2 }, { + "Id": 1480, "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "Id": 1480, "Rank": 3 }, { + "Id": 1481, "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Id": 1481, "Rank": 4 }, { + "Id": 1482, "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": 1482, "Rank": 1 }, { + "Id": 1483, "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Id": 1483, "Rank": 2 }, { + "Id": 1484, "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": 1484, "Rank": 3 }, { + "Id": 1485, "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Id": 1485, "Rank": 4 }, { + "Id": 1486, "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Id": 1486, "Rank": 1 }, { + "Id": 1487, "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Id": 1487, "Rank": 2 }, { + "Id": 1488, "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Id": 1488, "Rank": 3 }, { + "Id": 1489, "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -NoCrawl:$true", - "Id": 1489, "Rank": 4 }, { + "Id": 1490, "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Id": 1490, "Rank": 1 }, { + "Id": 1491, "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Id": 1491, "Rank": 2 }, { + "Id": 1492, "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Id": 1492, "Rank": 3 }, { + "Id": 1493, "CommandName": "Set-PnPWebhookSubscription", "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Id": 1493, "Rank": 1 }, { + "Id": 1494, "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": 1494, "Rank": 2 }, { + "Id": 1495, "CommandName": "Set-PnPWebPartProperty", "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "Id": 1495, "Rank": 1 }, { + "Id": 1496, "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1496, "Rank": 1 }, { + "Id": 1497, "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Id": 1497, "Rank": 2 }, { + "Id": 1498, "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1498, "Rank": 3 }, { + "Id": 1499, "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Id": 1499, "Rank": 4 }, { + "Id": 1500, "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme MyTheme", - "Id": 1500, "Rank": 1 }, { + "Id": 1501, "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Id": 1501, "Rank": 2 }, { + "Id": 1502, "CommandName": "Set-PnPWikiPageContent", "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Id": 1502, "Rank": 1 }, { + "Id": 1503, "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Id": 1503, "Rank": 1 }, { + "Id": 1504, "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Id": 1504, "Rank": 2 }, { + "Id": 1505, "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Id": 1505, "Rank": 3 }, { + "Id": 1506, "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Id": 1506, "Rank": 4 }, { + "Id": 1507, "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Id": 1507, "Rank": 5 }, { + "Id": 1508, "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Id": 1508, "Rank": 1 }, { + "Id": 1509, "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Id": 1509, "Rank": 2 }, { + "Id": 1510, "CommandName": "Sync-PnPAppToTeams", "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1510, "Rank": 1 }, { + "Id": 1511, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Id": 1511, "Rank": 1 }, { + "Id": 1512, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Id": 1512, "Rank": 2 }, { + "Id": 1513, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Id": 1513, "Rank": 3 }, { + "Id": 1514, "CommandName": "Test-PnPListItemIsRecord", "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Id": 1514, "Rank": 1 }, { + "Id": 1515, "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Id": 1515, "Rank": 1 }, { + "Id": 1516, "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1516, "Rank": 1 }, { + "Id": 1517, "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1517, "Rank": 2 }, { + "Id": 1518, "CommandName": "Test-PnPTenantTemplate", "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Id": 1518, "Rank": 1 }, { + "Id": 1519, "CommandName": "Undo-PnPFileCheckedOut", "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Id": 1519, "Rank": 1 }, { + "Id": 1520, "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1520, "Rank": 1 }, { + "Id": 1521, "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1521, "Rank": 2 }, { + "Id": 1522, "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1522, "Rank": 1 }, { + "Id": 1523, "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1523, "Rank": 2 }, { + "Id": 1524, "CommandName": "Unpublish-PnPContentType", "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Id": 1524, "Rank": 1 }, { + "Id": 1525, "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 1525, "Rank": 1 }, { + "Id": 1526, "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": 1526, "Rank": 2 }, { + "Id": 1527, "CommandName": "Unregister-PnPHubSite", "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 1527, "Rank": 1 }, { + "Id": 1528, "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1528, "Rank": 1 }, { + "Id": 1529, "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1529, "Rank": 2 }, { + "Id": 1530, "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 1530, "Rank": 1 }, { + "Id": 1531, "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Id": 1531, "Rank": 2 }, { + "Id": 1532, "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Id": 1532, "Rank": 3 }, { + "Id": 1533, "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Id": 1533, "Rank": 1 }, { + "Id": 1534, "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Id": 1534, "Rank": 2 }, { + "Id": 1535, "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "Id": 1535, "Rank": 3 }, { + "Id": 1536, "CommandName": "Update-PnPTeamsApp", "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Id": 1536, "Rank": 1 }, { + "Id": 1537, "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1537, "Rank": 1 }, { + "Id": 1538, "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Id": 1538, "Rank": 2 }, { + "Id": 1539, "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Id": 1539, "Rank": 3 }, { + "Id": 1540, "CommandName": "Update-PnPUserType", "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Id": 1540, "Rank": 1 } ] diff --git a/version.txt b/version.txt index 9b61c686c..fec1c0ee0 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.23 \ No newline at end of file +2.2.24 \ No newline at end of file From 26287c822d7a652fd32b7e63f3b5efb8a07485d7 Mon Sep 17 00:00:00 2001 From: Erwin van Hunen Date: Mon, 24 Jul 2023 14:08:39 +0200 Subject: [PATCH 20/21] Fix debug compilation issue in VSCode --- src/Commands/Base/PnPPowerShellModuleInitializer.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Commands/Base/PnPPowerShellModuleInitializer.cs b/src/Commands/Base/PnPPowerShellModuleInitializer.cs index c50999512..24a56c0ea 100644 --- a/src/Commands/Base/PnPPowerShellModuleInitializer.cs +++ b/src/Commands/Base/PnPPowerShellModuleInitializer.cs @@ -21,13 +21,8 @@ public class PnPPowerShellModuleInitializer : IModuleAssemblyInitializer static PnPPowerShellModuleInitializer() { -#if DEBUG - s_binBasePath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location))); - s_binCommonPath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "..", "..", "..", "..", "..", "src", "ALC", "bin", "Debug", "net6.0")); -#else s_binBasePath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location))); s_binCommonPath = Path.Combine(Path.GetDirectoryName(s_binBasePath), "Common"); -#endif s_dependencies = new HashSet(StringComparer.Ordinal); s_psEditionDependencies = new HashSet(StringComparer.Ordinal); s_proxy = AssemblyLoadContextProxy.CreateLoadContext("pnp-powershell-load-context"); From 678c5ae1186df57de10708e3eacfef6e1cd0d9b0 Mon Sep 17 00:00:00 2001 From: erwinvanhunen Date: Tue, 25 Jul 2023 03:04:00 +0000 Subject: [PATCH 21/21] Nightly publish to PowerShell Gallery --- pnppowershell_hash.txt | 2 +- .../PnP.PowerShell.Suggestions.nightly.json | 6160 ++++++++--------- version.txt | 2 +- 3 files changed, 3082 insertions(+), 3082 deletions(-) diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 6e9c9ba8a..bad326e52 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -ac249d56a64eddd54bb04c492afab5f24e303f63 \ No newline at end of file +689d10ae0b0968371e09e27025adf13083f3bbfe \ 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 83d05c7dd..5ca457e6c 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9242 +1,9242 @@ [ { - "Id": 1, "CommandName": "Add-PnPAlert", + "Rank": 1, "Command": "Add-PnPAlert -List \"Demo List\"", - "Rank": 1 + "Id": 1 }, { - "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)", - "Rank": 2 + "Id": 2 }, { - "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\"", - "Rank": 3 + "Id": 3 }, { - "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))", - "Rank": 4 + "Id": 4 }, { - "Id": 5, "CommandName": "Add-PnPApp", + "Rank": 1, "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Rank": 1 + "Id": 5 }, { - "Id": 6, "CommandName": "Add-PnPApp", + "Rank": 2, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Rank": 2 + "Id": 6 }, { - "Id": 7, "CommandName": "Add-PnPApp", + "Rank": 3, "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Rank": 3 + "Id": 7 }, { - "Id": 8, "CommandName": "Add-PnPApp", + "Rank": 4, "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "Rank": 4 + "Id": 8 }, { - "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`\"}", - "Rank": 1 + "Id": 9 }, { - "Id": 10, "CommandName": "Add-PnPAvailableSiteClassification", + "Rank": 1, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "Rank": 1 + "Id": 10 }, { - "Id": 11, "CommandName": "Add-PnPAvailableSiteClassification", + "Rank": 2, "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Rank": 2 + "Id": 11 }, { - "Id": 12, "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 1, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 12 }, { - "Id": 13, "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 2, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2 + "Id": 13 }, { - "Id": 14, "CommandName": "Add-PnPAzureADGroupMember", + "Rank": 3, "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3 + "Id": 14 }, { - "Id": 15, "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 1, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 15 }, { - "Id": 16, "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 2, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2 + "Id": 16 }, { - "Id": 17, "CommandName": "Add-PnPAzureADGroupOwner", + "Rank": 3, "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Rank": 3 + "Id": 17 }, { - "Id": 18, "CommandName": "Add-PnPAzureADServicePrincipalAppRole", + "Rank": 1, "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "Rank": 1 + "Id": 18 }, { - "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\"", - "Rank": 2 + "Id": 19 }, { - "Id": 20, "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": 20 }, { - "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\"", - "Rank": 2 + "Id": 21 }, { - "Id": 22, "CommandName": "Add-PnPContentType", + "Rank": 3, "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "Rank": 3 + "Id": 22 }, { - "Id": 23, "CommandName": "Add-PnPContentType", + "Rank": 4, "Command": "Add-PnPContentType -Name \"Project Item\"", - "Rank": 4 + "Id": 23 }, { - "Id": 24, "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": 24 }, { - "Id": 25, "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Rank": 1, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "Rank": 1 + "Id": 25 }, { - "Id": 26, "CommandName": "Add-PnPContentTypesFromContentTypeHub", + "Rank": 2, "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Rank": 2 + "Id": 26 }, { - "Id": 27, "CommandName": "Add-PnPContentTypeToDocumentSet", + "Rank": 1, "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1 + "Id": 27 }, { - "Id": 28, "CommandName": "Add-PnPContentTypeToDocumentSet", + "Rank": 2, "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2 + "Id": 28 }, { - "Id": 29, "CommandName": "Add-PnPContentTypeToList", + "Rank": 1, "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "Rank": 1 + "Id": 29 }, { - "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`\"}\"", - "Rank": 1 + "Id": 30 }, { - "Id": 31, "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Rank": 1, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "Rank": 1 + "Id": 31 }, { - "Id": 32, "CommandName": "Add-PnPDataRowsToSiteTemplate", + "Rank": 2, "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "Rank": 2 + "Id": 32 }, { - "Id": 33, "CommandName": "Add-PnPDocumentSet", + "Rank": 1, "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Rank": 1 + "Id": 33 }, { - "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", - "Rank": 1 + "Id": 34 }, { - "Id": 35, "CommandName": "Add-PnPEventReceiver", + "Rank": 2, "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "Rank": 2 + "Id": 35 }, { - "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", - "Rank": 3 + "Id": 36 }, { - "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", - "Rank": 4 + "Id": 37 }, { - "Id": 38, "CommandName": "Add-PnPField", + "Rank": 1, "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "Rank": 1 + "Id": 38 }, { - "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\"", - "Rank": 2 + "Id": 39 }, { - "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\"", - "Rank": 3 + "Id": 40 }, { - "Id": 41, "CommandName": "Add-PnPField", + "Rank": 4, "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "Rank": 4 + "Id": 41 }, { - "Id": 42, "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": 42 }, { - "Id": 43, "CommandName": "Add-PnPField", + "Rank": 6, "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "Rank": 6 + "Id": 43 }, { - "Id": 44, "CommandName": "Add-PnPFieldToContentType", + "Rank": 1, "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1 + "Id": 44 }, { - "Id": 45, "CommandName": "Add-PnPFile", + "Rank": 1, "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Rank": 1 + "Id": 45 }, { - "Id": 46, "CommandName": "Add-PnPFile", + "Rank": 2, "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "Rank": 2 + "Id": 46 }, { - "Id": 47, "CommandName": "Add-PnPFile", + "Rank": 3, "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 3 + "Id": 47 }, { - "Id": 48, "CommandName": "Add-PnPFile", + "Rank": 4, "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "Rank": 4 + "Id": 48 }, { - "Id": 49, "CommandName": "Add-PnPFile", + "Rank": 5, "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "Rank": 5 + "Id": 49 }, { - "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}", - "Rank": 6 + "Id": 50 }, { - "Id": 51, "CommandName": "Add-PnPFile", + "Rank": 7, "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", - "Rank": 7 + "Id": 51 }, { - "Id": 52, "CommandName": "Add-PnPFile", + "Rank": 8, "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 8 + "Id": 52 }, { - "Id": 53, "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 1, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "Id": 53 }, { - "Id": 54, "CommandName": "Add-PnPFileAnonymousSharingLink", + "Rank": 2, "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2 + "Id": 54 }, { - "Id": 55, "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": 55 }, { - "Id": 56, "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Rank": 1, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "Id": 56 }, { - "Id": 57, "CommandName": "Add-PnPFileOrganizationalSharingLink", + "Rank": 2, "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "Rank": 2 + "Id": 57 }, { - "Id": 58, "CommandName": "Add-PnPFileSharingInvite", + "Rank": 1, "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1 + "Id": 58 }, { - "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", - "Rank": 2 + "Id": 59 }, { - "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)", - "Rank": 3 + "Id": 60 }, { - "Id": 61, "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 1, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "Rank": 1 + "Id": 61 }, { - "Id": 62, "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": 62 }, { - "Id": 63, "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 3, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "Rank": 3 + "Id": 63 }, { - "Id": 64, "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 4, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", - "Rank": 4 + "Id": 64 }, { - "Id": 65, "CommandName": "Add-PnPFileToSiteTemplate", + "Rank": 5, "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "Rank": 5 + "Id": 65 }, { - "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\"", - "Rank": 1 + "Id": 66 }, { - "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\"", - "Rank": 2 + "Id": 67 }, { - "Id": 68, "CommandName": "Add-PnPFolder", + "Rank": 1, "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1 + "Id": 68 }, { - "Id": 69, "CommandName": "Add-PnPFolder", + "Rank": 2, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Rank": 2 + "Id": 69 }, { - "Id": 70, "CommandName": "Add-PnPFolder", + "Rank": 3, "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Rank": 3 + "Id": 70 }, { - "Id": 71, "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 1, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "Id": 71 }, { - "Id": 72, "CommandName": "Add-PnPFolderAnonymousSharingLink", + "Rank": 2, "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Rank": 2 + "Id": 72 }, { - "Id": 73, "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": 73 }, { - "Id": 74, "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Rank": 1, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "Id": 74 }, { - "Id": 75, "CommandName": "Add-PnPFolderOrganizationalSharingLink", + "Rank": 2, "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Rank": 2 + "Id": 75 }, { - "Id": 76, "CommandName": "Add-PnPFolderSharingInvite", + "Rank": 1, "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Rank": 1 + "Id": 76 }, { - "Id": 77, "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": 77 }, { - "Id": 78, "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": 78 }, { - "Id": 79, "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": 79 }, { - "Id": 80, "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": 80 }, { - "Id": 81, "CommandName": "Add-PnPGroupMember", + "Rank": 1, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1 + "Id": 81 }, { - "Id": 82, "CommandName": "Add-PnPGroupMember", + "Rank": 2, "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Rank": 2 + "Id": 82 }, { - "Id": 83, "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": 83 }, { - "Id": 84, "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": 84 }, { - "Id": 85, "CommandName": "Add-PnPHubToHubAssociation", + "Rank": 1, "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "Rank": 1 + "Id": 85 }, { - "Id": 86, "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": 86 }, { - "Id": 87, "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": 87 }, { - "Id": 88, "CommandName": "Add-PnPJavaScriptBlock", + "Rank": 1, "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "Rank": 1 + "Id": 88 }, { - "Id": 89, "CommandName": "Add-PnPJavaScriptBlock", + "Rank": 2, "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Rank": 2 + "Id": 89 }, { - "Id": 90, "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": 90 }, { - "Id": 91, "CommandName": "Add-PnPJavaScriptLink", + "Rank": 2, "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", - "Rank": 2 + "Id": 91 }, { - "Id": 92, "CommandName": "Add-PnPListDesign", + "Rank": 1, "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "Rank": 1 + "Id": 92 }, { - "Id": 93, "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": 93 }, { - "Id": 94, "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 1, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Rank": 1 + "Id": 94 }, { - "Id": 95, "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 2, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Rank": 2 + "Id": 95 }, { - "Id": 96, "CommandName": "Add-PnPListFoldersToSiteTemplate", + "Rank": 3, "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", - "Rank": 3 + "Id": 96 }, { - "Id": 97, "CommandName": "Add-PnPListItem", + "Rank": 1, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1 + "Id": 97 }, { - "Id": 98, "CommandName": "Add-PnPListItem", + "Rank": 2, "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 2 + "Id": 98 }, { - "Id": 99, "CommandName": "Add-PnPListItem", + "Rank": 3, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "Rank": 3 + "Id": 99 }, { - "Id": 100, "CommandName": "Add-PnPListItem", + "Rank": 4, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "Rank": 4 + "Id": 100 }, { - "Id": 101, "CommandName": "Add-PnPListItem", + "Rank": 5, "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", - "Rank": 5 + "Id": 101 }, { - "Id": 102, "CommandName": "Add-PnPListItemAttachment", + "Rank": 1, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "Rank": 1 + "Id": 102 }, { - "Id": 103, "CommandName": "Add-PnPListItemAttachment", + "Rank": 2, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "Rank": 2 + "Id": 103 }, { - "Id": 104, "CommandName": "Add-PnPListItemAttachment", + "Rank": 3, "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", - "Rank": 3 + "Id": 104 }, { - "Id": 105, "CommandName": "Add-PnPListItemComment", + "Rank": 1, "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Rank": 1 + "Id": 105 }, { - "Id": 106, "CommandName": "Add-PnPMasterPage", + "Rank": 1, "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "Rank": 1 + "Id": 106 }, { - "Id": 107, "CommandName": "Add-PnPMicrosoft365GroupMember", + "Rank": 1, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 107 }, { - "Id": 108, "CommandName": "Add-PnPMicrosoft365GroupMember", + "Rank": 2, "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2 + "Id": 108 }, { - "Id": 109, "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Rank": 1, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 109 }, { - "Id": 110, "CommandName": "Add-PnPMicrosoft365GroupOwner", + "Rank": 2, "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", - "Rank": 2 + "Id": 110 }, { - "Id": 111, "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": 111 }, { - "Id": 112, "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 2, "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Rank": 2 + "Id": 112 }, { - "Id": 113, "CommandName": "Add-PnPMicrosoft365GroupToSite", + "Rank": 3, "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Rank": 3 + "Id": 113 }, { - "Id": 114, "CommandName": "Add-PnPNavigationNode", + "Rank": 1, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "Rank": 1 + "Id": 114 }, { - "Id": 115, "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": 115 }, { - "Id": 116, "CommandName": "Add-PnPNavigationNode", + "Rank": 3, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "Rank": 3 + "Id": 116 }, { - "Id": 117, "CommandName": "Add-PnPNavigationNode", + "Rank": 4, "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "Rank": 4 + "Id": 117 }, { - "Id": 118, "CommandName": "Add-PnPNavigationNode", + "Rank": 5, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Rank": 5 + "Id": 118 }, { - "Id": 119, "CommandName": "Add-PnPNavigationNode", + "Rank": 6, "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Rank": 6 + "Id": 119 }, { - "Id": 120, "CommandName": "Add-PnPNavigationNode", + "Rank": 7, "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Rank": 7 + "Id": 120 }, { - "Id": 121, "CommandName": "Add-PnPNavigationNode", + "Rank": 8, "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "Rank": 8 + "Id": 121 }, { - "Id": 122, "CommandName": "Add-PnPOrgAssetsLibrary", + "Rank": 1, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Rank": 1 + "Id": 122 }, { - "Id": 123, "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": 123 }, { - "Id": 124, "CommandName": "Add-PnPOrgAssetsLibrary", + "Rank": 3, "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "Rank": 3 + "Id": 124 }, { - "Id": 125, "CommandName": "Add-PnPOrgNewsSite", + "Rank": 1, "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Rank": 1 + "Id": 125 }, { - "Id": 126, "CommandName": "Add-PnPPage", + "Rank": 1, "Command": "Add-PnPPage -Name \"NewPage\"", - "Rank": 1 + "Id": 126 }, { - "Id": 127, "CommandName": "Add-PnPPage", + "Rank": 2, "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Rank": 2 + "Id": 127 }, { - "Id": 128, "CommandName": "Add-PnPPage", + "Rank": 3, "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Rank": 3 + "Id": 128 }, { - "Id": 129, "CommandName": "Add-PnPPage", + "Rank": 4, "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Rank": 4 + "Id": 129 }, { - "Id": 130, "CommandName": "Add-PnPPage", + "Rank": 5, "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Rank": 5 + "Id": 130 }, { - "Id": 131, "CommandName": "Add-PnPPage", + "Rank": 6, "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Rank": 6 + "Id": 131 }, { - "Id": 132, "CommandName": "Add-PnPPage", + "Rank": 7, "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7 + "Id": 132 }, { - "Id": 133, "CommandName": "Add-PnPPage", + "Rank": 8, "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8 + "Id": 133 }, { - "Id": 134, "CommandName": "Add-PnPPage", + "Rank": 9, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9 + "Id": 134 }, { - "Id": 135, "CommandName": "Add-PnPPage", + "Rank": 10, "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10 + "Id": 135 }, { - "Id": 136, "CommandName": "Add-PnPPageImageWebPart", + "Rank": 1, "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Rank": 1 + "Id": 136 }, { - "Id": 137, "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": 137 }, { - "Id": 138, "CommandName": "Add-PnPPageSection", + "Rank": 1, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Rank": 1 + "Id": 138 }, { - "Id": 139, "CommandName": "Add-PnPPageSection", + "Rank": 2, "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Rank": 2 + "Id": 139 }, { - "Id": 140, "CommandName": "Add-PnPPageTextPart", + "Rank": 1, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Rank": 1 + "Id": 140 }, { - "Id": 141, "CommandName": "Add-PnPPageTextPart", + "Rank": 2, "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 2 + "Id": 141 }, { - "Id": 142, "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": 142 }, { - "Id": 143, "CommandName": "Add-PnPPageWebPart", + "Rank": 1, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Rank": 1 + "Id": 143 }, { - "Id": 144, "CommandName": "Add-PnPPageWebPart", + "Rank": 2, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Rank": 2 + "Id": 144 }, { - "Id": 145, "CommandName": "Add-PnPPageWebPart", + "Rank": 3, "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Rank": 3 + "Id": 145 }, { - "Id": 146, "CommandName": "Add-PnPPlannerBucket", + "Rank": 1, "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Rank": 1 + "Id": 146 }, { - "Id": 147, "CommandName": "Add-PnPPlannerBucket", + "Rank": 2, "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Rank": 2 + "Id": 147 }, { - "Id": 148, "CommandName": "Add-PnPPlannerRoster", + "Rank": 1, "Command": "Add-PnPPlannerRoster", - "Rank": 1 + "Id": 148 }, { - "Id": 149, "CommandName": "Add-PnPPlannerRosterMember", + "Rank": 1, "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 149 }, { - "Id": 150, "CommandName": "Add-PnPPlannerTask", + "Rank": 1, "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 1 + "Id": 150 }, { - "Id": 151, "CommandName": "Add-PnPPlannerTask", + "Rank": 2, "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Rank": 2 + "Id": 151 }, { - "Id": 152, "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": 152 }, { - "Id": 153, "CommandName": "Add-PnPPublishingImageRendition", + "Rank": 1, "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1 + "Id": 153 }, { - "Id": 154, "CommandName": "Add-PnPPublishingPage", + "Rank": 1, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Rank": 1 + "Id": 154 }, { - "Id": 155, "CommandName": "Add-PnPPublishingPage", + "Rank": 2, "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", - "Rank": 2 + "Id": 155 }, { - "Id": 156, "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": 156 }, { - "Id": 157, "CommandName": "Add-PnPRoleDefinition", + "Rank": 1, "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Rank": 1 + "Id": 157 }, { - "Id": 158, "CommandName": "Add-PnPRoleDefinition", + "Rank": 2, "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Rank": 2 + "Id": 158 }, { - "Id": 159, "CommandName": "Add-PnPRoleDefinition", + "Rank": 3, "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Rank": 3 + "Id": 159 }, { - "Id": 160, "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 1, "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 160 }, { - "Id": 161, "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 2, "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2 + "Id": 161 }, { - "Id": 162, "CommandName": "Add-PnPSiteCollectionAdmin", + "Rank": 3, "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Rank": 3 + "Id": 162 }, { - "Id": 163, "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Rank": 1, "Command": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1 + "Id": 163 }, { - "Id": 164, "CommandName": "Add-PnPSiteCollectionAppCatalog", + "Rank": 2, "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 2 + "Id": 164 }, { - "Id": 165, "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": 165 }, { - "Id": 166, "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": 166 }, { - "Id": 167, "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": 167 }, { - "Id": 168, "CommandName": "Add-PnPSiteDesignFromWeb", + "Rank": 1, "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Rank": 1 + "Id": 168 }, { - "Id": 169, "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": 169 }, { - "Id": 170, "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": 170 }, { - "Id": 171, "CommandName": "Add-PnPSiteDesignTask", + "Rank": 1, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1 + "Id": 171 }, { - "Id": 172, "CommandName": "Add-PnPSiteDesignTask", + "Rank": 2, "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 2 + "Id": 172 }, { - "Id": 173, "CommandName": "Add-PnPSiteScript", + "Rank": 1, "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "Rank": 1 + "Id": 173 }, { - "Id": 174, "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": 174 }, { - "Id": 175, "CommandName": "Add-PnPSiteTemplate", + "Rank": 1, "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Rank": 1 + "Id": 175 }, { - "Id": 176, "CommandName": "Add-PnPStoredCredential", + "Rank": 1, "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Rank": 1 + "Id": 176 }, { - "Id": 177, "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": 177 }, { - "Id": 178, "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": 178 }, { - "Id": 179, "CommandName": "Add-PnPTaxonomyField", + "Rank": 1, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Rank": 1 + "Id": 179 }, { - "Id": 180, "CommandName": "Add-PnPTaxonomyField", + "Rank": 2, "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "Rank": 2 + "Id": 180 }, { - "Id": 181, "CommandName": "Add-PnPTeamsChannel", + "Rank": 1, "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "Rank": 1 + "Id": 181 }, { - "Id": 182, "CommandName": "Add-PnPTeamsChannel", + "Rank": 2, "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Rank": 2 + "Id": 182 }, { - "Id": 183, "CommandName": "Add-PnPTeamsChannel", + "Rank": 3, "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "Rank": 3 + "Id": 183 }, { - "Id": 184, "CommandName": "Add-PnPTeamsChannel", + "Rank": 4, "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "Rank": 4 + "Id": 184 }, { - "Id": 185, "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": 185 }, { - "Id": 186, "CommandName": "Add-PnpTeamsChannelUser", + "Rank": 2, "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "Rank": 2 + "Id": 186 }, { - "Id": 187, "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": 187 }, { - "Id": 188, "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": 188 }, { - "Id": 189, "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": 189 }, { - "Id": 190, "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": 190 }, { - "Id": 191, "CommandName": "Add-PnPTeamsTeam", + "Rank": 1, "Command": "Add-PnPTeamsTeam", - "Rank": 1 + "Id": 191 }, { - "Id": 192, "CommandName": "Add-PnPTeamsUser", + "Rank": 1, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1 + "Id": 192 }, { - "Id": 193, "CommandName": "Add-PnPTeamsUser", + "Rank": 2, "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2 + "Id": 193 }, { - "Id": 194, "CommandName": "Add-PnPTeamsUser", + "Rank": 3, "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "Rank": 3 + "Id": 194 }, { - "Id": 195, "CommandName": "Add-PnPTeamsUser", + "Rank": 4, "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", - "Rank": 4 + "Id": 195 }, { - "Id": 196, "CommandName": "Add-PnPTenantCdnOrigin", + "Rank": 1, "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1 + "Id": 196 }, { - "Id": 197, "CommandName": "Add-PnPTenantSequence", + "Rank": 1, "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Rank": 1 + "Id": 197 }, { - "Id": 198, "CommandName": "Add-PnPTenantSequenceSite", + "Rank": 1, "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Rank": 1 + "Id": 198 }, { - "Id": 199, "CommandName": "Add-PnPTenantSequenceSubSite", + "Rank": 1, "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Rank": 1 + "Id": 199 }, { - "Id": 200, "CommandName": "Add-PnPTermToTerm", + "Rank": 1, "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Rank": 1 + "Id": 200 }, { - "Id": 201, "CommandName": "Add-PnPView", + "Rank": 1, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Rank": 1 + "Id": 201 }, { - "Id": 202, "CommandName": "Add-PnPView", + "Rank": 2, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", - "Rank": 2 + "Id": 202 }, { - "Id": 203, "CommandName": "Add-PnPView", + "Rank": 3, "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", - "Rank": 3 + "Id": 203 }, { - "Id": 204, "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": 204 }, { - "Id": 205, "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": 205 }, { - "Id": 206, "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": 206 }, { - "Id": 207, "CommandName": "Add-PnPWebhookSubscription", + "Rank": 1, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Rank": 1 + "Id": 207 }, { - "Id": 208, "CommandName": "Add-PnPWebhookSubscription", + "Rank": 2, "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Rank": 2 + "Id": 208 }, { - "Id": 209, "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": 209 }, { - "Id": 210, "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": 210 }, { - "Id": 211, "CommandName": "Add-PnPWebPartToWebPartPage", + "Rank": 2, "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "Rank": 2 + "Id": 211 }, { - "Id": 212, "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": 212 }, { - "Id": 213, "CommandName": "Add-PnPWebPartToWikiPage", + "Rank": 2, "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "Rank": 2 + "Id": 213 }, { - "Id": 214, "CommandName": "Add-PnPWikiPage", + "Rank": 1, "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Rank": 1 + "Id": 214 }, { - "Id": 215, "CommandName": "Clear-PnPAzureADGroupMember", + "Rank": 1, "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Rank": 1 + "Id": 215 }, { - "Id": 216, "CommandName": "Clear-PnPAzureADGroupOwner", + "Rank": 1, "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Rank": 1 + "Id": 216 }, { - "Id": 217, "CommandName": "Clear-PnPDefaultColumnValues", + "Rank": 1, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Rank": 1 + "Id": 217 }, { - "Id": 218, "CommandName": "Clear-PnPDefaultColumnValues", + "Rank": 2, "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Rank": 2 + "Id": 218 }, { - "Id": 219, "CommandName": "Clear-PnPListItemAsRecord", + "Rank": 1, "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1 + "Id": 219 }, { - "Id": 220, "CommandName": "Clear-PnPMicrosoft365GroupMember", + "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Rank": 1 + "Id": 220 }, { - "Id": 221, "CommandName": "Clear-PnPMicrosoft365GroupOwner", + "Rank": 1, "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Rank": 1 + "Id": 221 }, { - "Id": 222, "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 1, "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1 + "Id": 222 }, { - "Id": 223, "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 2, "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Rank": 2 + "Id": 223 }, { - "Id": 224, "CommandName": "Clear-PnpRecycleBinItem", + "Rank": 3, "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Rank": 3 + "Id": 224 }, { - "Id": 225, "CommandName": "Clear-PnPTenantAppCatalogUrl", + "Rank": 1, "Command": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1 + "Id": 225 }, { - "Id": 226, "CommandName": "Clear-PnPTenantRecycleBinItem", + "Rank": 1, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "Id": 226 }, { - "Id": 227, "CommandName": "Clear-PnPTenantRecycleBinItem", + "Rank": 2, "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2 + "Id": 227 }, { - "Id": 228, "CommandName": "Convert-PnPFolderToSiteTemplate", + "Rank": 1, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Rank": 1 + "Id": 228 }, { - "Id": 229, "CommandName": "Convert-PnPFolderToSiteTemplate", + "Rank": 2, "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Rank": 2 + "Id": 229 }, { - "Id": 230, "CommandName": "Convert-PnPSiteTemplate", + "Rank": 1, "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Rank": 1 + "Id": 230 }, { - "Id": 231, "CommandName": "Convert-PnPSiteTemplate", + "Rank": 2, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Rank": 2 + "Id": 231 }, { - "Id": 232, "CommandName": "Convert-PnPSiteTemplate", + "Rank": 3, "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Rank": 3 + "Id": 232 }, { - "Id": 233, "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Rank": 1, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Rank": 1 + "Id": 233 }, { - "Id": 234, "CommandName": "Convert-PnPSiteTemplateToMarkdown", + "Rank": 2, "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Rank": 2 + "Id": 234 }, { - "Id": 235, "CommandName": "ConvertTo-PnPPage", + "Rank": 1, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Rank": 1 + "Id": 235 }, { - "Id": 236, "CommandName": "ConvertTo-PnPPage", + "Rank": 2, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Rank": 2 + "Id": 236 }, { - "Id": 237, "CommandName": "ConvertTo-PnPPage", + "Rank": 3, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Rank": 3 + "Id": 237 }, { - "Id": 238, "CommandName": "ConvertTo-PnPPage", + "Rank": 4, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Rank": 4 + "Id": 238 }, { - "Id": 239, "CommandName": "ConvertTo-PnPPage", + "Rank": 5, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 5 + "Id": 239 }, { - "Id": 240, "CommandName": "ConvertTo-PnPPage", + "Rank": 6, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Rank": 6 + "Id": 240 }, { - "Id": 241, "CommandName": "ConvertTo-PnPPage", + "Rank": 7, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Rank": 7 + "Id": 241 }, { - "Id": 242, "CommandName": "ConvertTo-PnPPage", + "Rank": 8, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Rank": 8 + "Id": 242 }, { - "Id": 243, "CommandName": "ConvertTo-PnPPage", + "Rank": 9, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Rank": 9 + "Id": 243 }, { - "Id": 244, "CommandName": "ConvertTo-PnPPage", + "Rank": 10, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Rank": 10 + "Id": 244 }, { - "Id": 245, "CommandName": "ConvertTo-PnPPage", + "Rank": 11, "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Rank": 11 + "Id": 245 }, { - "Id": 246, "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": 246 }, { - "Id": 247, "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": 247 }, { - "Id": 248, "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": 248 }, { - "Id": 249, "CommandName": "Copy-PnPFile", + "Rank": 1, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1 + "Id": 249 }, { - "Id": 250, "CommandName": "Copy-PnPFile", + "Rank": 2, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2 + "Id": 250 }, { - "Id": 251, "CommandName": "Copy-PnPFile", + "Rank": 3, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3 + "Id": 251 }, { - "Id": 252, "CommandName": "Copy-PnPFile", + "Rank": 4, "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4 + "Id": 252 }, { - "Id": 253, "CommandName": "Copy-PnPFile", + "Rank": 5, "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5 + "Id": 253 }, { - "Id": 254, "CommandName": "Copy-PnPFile", + "Rank": 6, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6 + "Id": 254 }, { - "Id": 255, "CommandName": "Copy-PnPFile", + "Rank": 7, "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7 + "Id": 255 }, { - "Id": 256, "CommandName": "Copy-PnPFile", + "Rank": 8, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8 + "Id": 256 }, { - "Id": 257, "CommandName": "Copy-PnPFile", + "Rank": 9, "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9 + "Id": 257 }, { - "Id": 258, "CommandName": "Copy-PnPFile", + "Rank": 10, "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10 + "Id": 258 }, { - "Id": 259, "CommandName": "Copy-PnPFolder", + "Rank": 1, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 1 + "Id": 259 }, { - "Id": 260, "CommandName": "Copy-PnPFolder", + "Rank": 2, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Rank": 2 + "Id": 260 }, { - "Id": 261, "CommandName": "Copy-PnPFolder", + "Rank": 3, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Rank": 3 + "Id": 261 }, { - "Id": 262, "CommandName": "Copy-PnPFolder", + "Rank": 4, "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 4 + "Id": 262 }, { - "Id": 263, "CommandName": "Copy-PnPFolder", + "Rank": 5, "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Rank": 5 + "Id": 263 }, { - "Id": 264, "CommandName": "Copy-PnPFolder", + "Rank": 6, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Rank": 6 + "Id": 264 }, { - "Id": 265, "CommandName": "Copy-PnPFolder", + "Rank": 7, "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Rank": 7 + "Id": 265 }, { - "Id": 266, "CommandName": "Copy-PnPFolder", + "Rank": 8, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Rank": 8 + "Id": 266 }, { - "Id": 267, "CommandName": "Copy-PnPFolder", + "Rank": 9, "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Rank": 9 + "Id": 267 }, { - "Id": 268, "CommandName": "Copy-PnPFolder", + "Rank": 10, "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Rank": 10 + "Id": 268 }, { - "Id": 269, "CommandName": "Copy-PnPItemProxy", + "Rank": 1, "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Rank": 1 + "Id": 269 }, { - "Id": 270, "CommandName": "Copy-PnPList", + "Rank": 1, "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Rank": 1 + "Id": 270 }, { - "Id": 271, "CommandName": "Copy-PnPList", + "Rank": 2, "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Rank": 2 + "Id": 271 }, { - "Id": 272, "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": 272 }, { - "Id": 273, "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": 273 }, { - "Id": 274, "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": 274 }, { - "Id": 275, "CommandName": "Copy-PnPTeamsTeam", + "Rank": 2, "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Rank": 2 + "Id": 275 }, { - "Id": 276, "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": 276 }, { - "Id": 277, "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": 277 }, { - "Id": 278, "CommandName": "Disable-PnPFeature", + "Rank": 1, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Id": 278 }, { - "Id": 279, "CommandName": "Disable-PnPFeature", + "Rank": 2, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2 + "Id": 279 }, { - "Id": 280, "CommandName": "Disable-PnPFeature", + "Rank": 3, "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3 + "Id": 280 }, { - "Id": 281, "CommandName": "Disable-PnPPageScheduling", + "Rank": 1, "Command": "Disable-PnPPageScheduling", - "Rank": 1 + "Id": 281 }, { - "Id": 282, "CommandName": "Disable-PnPPowerShellTelemetry", + "Rank": 1, "Command": "Disable-PnPPowerShellTelemetry", - "Rank": 1 + "Id": 282 }, { - "Id": 283, "CommandName": "Disable-PnPPowerShellTelemetry", + "Rank": 2, "Command": "Disable-PnPPowerShellTelemetry -Force", - "Rank": 2 + "Id": 283 }, { - "Id": 284, "CommandName": "Disable-PnPSharingForNonOwnersOfSite", + "Rank": 1, "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "Id": 284 }, { - "Id": 285, "CommandName": "Disable-PnPSiteClassification", + "Rank": 1, "Command": "Disable-PnPSiteClassification", - "Rank": 1 + "Id": 285 }, { - "Id": 286, "CommandName": "Disconnect-PnPOnline", + "Rank": 1, "Command": "Disconnect-PnPOnline", - "Rank": 1 + "Id": 286 }, { - "Id": 287, "CommandName": "Enable-PnPCommSite", + "Rank": 1, "Command": "Enable-PnPCommSite", - "Rank": 1 + "Id": 287 }, { - "Id": 288, "CommandName": "Enable-PnPCommSite", + "Rank": 2, "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Rank": 2 + "Id": 288 }, { - "Id": 289, "CommandName": "Enable-PnPFeature", + "Rank": 1, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Id": 289 }, { - "Id": 290, "CommandName": "Enable-PnPFeature", + "Rank": 2, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Rank": 2 + "Id": 290 }, { - "Id": 291, "CommandName": "Enable-PnPFeature", + "Rank": 3, "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Rank": 3 + "Id": 291 }, { - "Id": 292, "CommandName": "Enable-PnPPageScheduling", + "Rank": 1, "Command": "Enable-PnPPageScheduling", - "Rank": 1 + "Id": 292 }, { - "Id": 293, "CommandName": "Enable-PnPPowerShellTelemetry", + "Rank": 1, "Command": "Enable-PnPPowerShellTelemetry", - "Rank": 1 + "Id": 293 }, { - "Id": 294, "CommandName": "Enable-PnPPowerShellTelemetry", + "Rank": 2, "Command": "Enable-PnPPowerShellTelemetry -Force", - "Rank": 2 + "Id": 294 }, { - "Id": 295, "CommandName": "Enable-PnPSiteClassification", + "Rank": 1, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Rank": 1 + "Id": 295 }, { - "Id": 296, "CommandName": "Enable-PnPSiteClassification", + "Rank": 2, "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 2 + "Id": 296 }, { - "Id": 297, "CommandName": "Export-PnPListToSiteTemplate", + "Rank": 1, "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Rank": 1 + "Id": 297 }, { - "Id": 298, "CommandName": "Export-PnPListToSiteTemplate", + "Rank": 2, "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Rank": 2 + "Id": 298 }, { - "Id": 299, "CommandName": "Export-PnPPage", + "Rank": 1, "Command": "Export-PnPPage -Identity Home.aspx", - "Rank": 1 + "Id": 299 }, { - "Id": 300, "CommandName": "Export-PnPPageMapping", + "Rank": 1, "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Rank": 1 + "Id": 300 }, { - "Id": 301, "CommandName": "Export-PnPPageMapping", + "Rank": 2, "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Rank": 2 + "Id": 301 }, { - "Id": 302, "CommandName": "Export-PnPPageMapping", + "Rank": 3, "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Rank": 3 + "Id": 302 }, { - "Id": 303, "CommandName": "Export-PnPTaxonomy", + "Rank": 1, "Command": "Export-PnPTaxonomy", - "Rank": 1 + "Id": 303 }, { - "Id": 304, "CommandName": "Export-PnPTaxonomy", + "Rank": 2, "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Rank": 2 + "Id": 304 }, { - "Id": 305, "CommandName": "Export-PnPTaxonomy", + "Rank": 3, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Rank": 3 + "Id": 305 }, { - "Id": 306, "CommandName": "Export-PnPTaxonomy", + "Rank": 4, "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Rank": 4 + "Id": 306 }, { - "Id": 307, "CommandName": "Export-PnPTermGroupToXml", + "Rank": 1, "Command": "Export-PnPTermGroupToXml", - "Rank": 1 + "Id": 307 }, { - "Id": 308, "CommandName": "Export-PnPTermGroupToXml", + "Rank": 2, "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Rank": 2 + "Id": 308 }, { - "Id": 309, "CommandName": "Export-PnPTermGroupToXml", + "Rank": 3, "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Rank": 3 + "Id": 309 }, { - "Id": 310, "CommandName": "Export-PnPUserInfo", + "Rank": 1, "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1 + "Id": 310 }, { - "Id": 311, "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": 311 }, { - "Id": 312, "CommandName": "Export-PnPUserProfile", + "Rank": 1, "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Rank": 1 + "Id": 312 }, { - "Id": 313, "CommandName": "Export-PnPUserProfile", + "Rank": 2, "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Rank": 2 + "Id": 313 }, { - "Id": 314, "CommandName": "Find-PnPFile", + "Rank": 1, "Command": "Find-PnPFile -Match *.master", - "Rank": 1 + "Id": 314 }, { - "Id": 315, "CommandName": "Find-PnPFile", + "Rank": 2, "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Rank": 2 + "Id": 315 }, { - "Id": 316, "CommandName": "Find-PnPFile", + "Rank": 3, "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Rank": 3 + "Id": 316 }, { - "Id": 317, "CommandName": "Get-PnPAccessToken", + "Rank": 1, "Command": "Get-PnPAccessToken", - "Rank": 1 + "Id": 317 }, { - "Id": 318, "CommandName": "Get-PnPAccessToken", + "Rank": 2, "Command": "Get-PnPAccessToken -Decoded", - "Rank": 2 + "Id": 318 }, { - "Id": 319, "CommandName": "Get-PnPAccessToken", + "Rank": 3, "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Rank": 3 + "Id": 319 }, { - "Id": 320, "CommandName": "Get-PnPAccessToken", + "Rank": 4, "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Rank": 4 + "Id": 320 }, { - "Id": 321, "CommandName": "Get-PnPAccessToken", + "Rank": 5, "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Rank": 5 + "Id": 321 }, { - "Id": 322, "CommandName": "Get-PnPAlert", + "Rank": 1, "Command": "Get-PnPAlert", - "Rank": 1 + "Id": 322 }, { - "Id": 323, "CommandName": "Get-PnPAlert", + "Rank": 2, "Command": "Get-PnPAlert -List \"Demo List\"", - "Rank": 2 + "Id": 323 }, { - "Id": 324, "CommandName": "Get-PnPAlert", + "Rank": 3, "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Rank": 3 + "Id": 324 }, { - "Id": 325, "CommandName": "Get-PnPAlert", + "Rank": 4, "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Rank": 4 + "Id": 325 }, { - "Id": 326, "CommandName": "Get-PnPAlert", + "Rank": 5, "Command": "Get-PnPAlert -AllUsers", - "Rank": 5 + "Id": 326 }, { - "Id": 327, "CommandName": "Get-PnPAlert", + "Rank": 6, "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Rank": 6 + "Id": 327 }, { - "Id": 328, "CommandName": "Get-PnPApp", + "Rank": 1, "Command": "Get-PnPApp", - "Rank": 1 + "Id": 328 }, { - "Id": 329, "CommandName": "Get-PnPApp", + "Rank": 2, "Command": "Get-PnPApp -Scope Site", - "Rank": 2 + "Id": 329 }, { - "Id": 330, "CommandName": "Get-PnPApp", + "Rank": 3, "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 3 + "Id": 330 }, { - "Id": 331, "CommandName": "Get-PnPAppErrors", + "Rank": 1, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Rank": 1 + "Id": 331 }, { - "Id": 332, "CommandName": "Get-PnPAppErrors", + "Rank": 2, "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Rank": 2 + "Id": 332 }, { - "Id": 333, "CommandName": "Get-PnPAppInfo", + "Rank": 1, "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Rank": 1 + "Id": 333 }, { - "Id": 334, "CommandName": "Get-PnPAppInfo", + "Rank": 2, "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 2 + "Id": 334 }, { - "Id": 335, "CommandName": "Get-PnPAppInfo", + "Rank": 3, "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Rank": 3 + "Id": 335 }, { - "Id": 336, "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 1, "Command": "Get-PnPApplicationCustomizer", - "Rank": 1 + "Id": 336 }, { - "Id": 337, "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 2, "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2 + "Id": 337 }, { - "Id": 338, "CommandName": "Get-PnPApplicationCustomizer", + "Rank": 3, "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Rank": 3 + "Id": 338 }, { - "Id": 339, "CommandName": "Get-PnPAuditing", + "Rank": 1, "Command": "Get-PnPAuditing", - "Rank": 1 + "Id": 339 }, { - "Id": 340, "CommandName": "Get-PnPAuthenticationRealm", + "Rank": 1, "Command": "Get-PnPAuthenticationRealm", - "Rank": 1 + "Id": 340 }, { - "Id": 341, "CommandName": "Get-PnPAuthenticationRealm", + "Rank": 2, "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Rank": 2 + "Id": 341 }, { - "Id": 342, "CommandName": "Get-PnPAvailableLanguage", + "Rank": 1, "Command": "Get-PnPAvailableLanguage", - "Rank": 1 + "Id": 342 }, { - "Id": 343, "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 1, "Command": "Get-PnPAvailableSensitivityLabel", - "Rank": 1 + "Id": 343 }, { - "Id": 344, "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 2, "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Rank": 2 + "Id": 344 }, { - "Id": 345, "CommandName": "Get-PnPAvailableSensitivityLabel", + "Rank": 3, "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Rank": 3 + "Id": 345 }, { - "Id": 346, "CommandName": "Get-PnPAvailableSiteClassification", + "Rank": 1, "Command": "Get-PnPAvailableSiteClassification", - "Rank": 1 + "Id": 346 }, { - "Id": 347, "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 1, "Command": "Get-PnPAzureACSPrincipal", - "Rank": 1 + "Id": 347 }, { - "Id": 348, "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 2, "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Rank": 2 + "Id": 348 }, { - "Id": 349, "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 3, "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Rank": 3 + "Id": 349 }, { - "Id": 350, "CommandName": "Get-PnPAzureACSPrincipal", + "Rank": 4, "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Rank": 4 + "Id": 350 }, { - "Id": 351, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 1, "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1 + "Id": 351 }, { - "Id": 352, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 2, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Rank": 2 + "Id": 352 }, { - "Id": 353, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", + "Rank": 3, "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Rank": 3 + "Id": 353 }, { - "Id": 354, "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 1, "Command": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1 + "Id": 354 }, { - "Id": 355, "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 2, "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Rank": 2 + "Id": 355 }, { - "Id": 356, "CommandName": "Get-PnPAzureADActivityReportSignIn", + "Rank": 3, "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Rank": 3 + "Id": 356 }, { - "Id": 357, "CommandName": "Get-PnPAzureADApp", + "Rank": 1, "Command": "Get-PnPAzureADApp", - "Rank": 1 + "Id": 357 }, { - "Id": 358, "CommandName": "Get-PnPAzureADApp", + "Rank": 2, "Command": "Get-PnPAzureADApp -Identity MyApp", - "Rank": 2 + "Id": 358 }, { - "Id": 359, "CommandName": "Get-PnPAzureADApp", + "Rank": 3, "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3 + "Id": 359 }, { - "Id": 360, "CommandName": "Get-PnPAzureADApp", + "Rank": 4, "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Rank": 4 + "Id": 360 }, { - "Id": 361, "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 1, "Command": "Get-PnPAzureADAppPermission", - "Rank": 1 + "Id": 361 }, { - "Id": 362, "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 2, "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Rank": 2 + "Id": 362 }, { - "Id": 363, "CommandName": "Get-PnPAzureADAppPermission", + "Rank": 3, "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 3 + "Id": 363 }, { - "Id": 364, "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 1, "Command": "Get-PnPAzureADAppSitePermission", - "Rank": 1 + "Id": 364 }, { - "Id": 365, "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 2, "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Rank": 2 + "Id": 365 }, { - "Id": 366, "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 3, "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Rank": 3 + "Id": 366 }, { - "Id": 367, "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 4, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Rank": 4 + "Id": 367 }, { - "Id": 368, "CommandName": "Get-PnPAzureADAppSitePermission", + "Rank": 5, "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Rank": 5 + "Id": 368 }, { - "Id": 369, "CommandName": "Get-PnPAzureADGroup", + "Rank": 1, "Command": "Get-PnPAzureADGroup", - "Rank": 1 + "Id": 369 }, { - "Id": 370, "CommandName": "Get-PnPAzureADGroup", + "Rank": 2, "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Rank": 2 + "Id": 370 }, { - "Id": 371, "CommandName": "Get-PnPAzureADGroup", + "Rank": 3, "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Rank": 3 + "Id": 371 }, { - "Id": 372, "CommandName": "Get-PnPAzureADGroup", + "Rank": 4, "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Rank": 4 + "Id": 372 }, { - "Id": 373, "CommandName": "Get-PnPAzureADGroup", + "Rank": 5, "Command": "Get-PnPAzureADGroup -Identity $group", - "Rank": 5 + "Id": 373 }, { - "Id": 374, "CommandName": "Get-PnPAzureADGroupMember", + "Rank": 1, "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Rank": 1 + "Id": 374 }, { - "Id": 375, "CommandName": "Get-PnPAzureADGroupMember", + "Rank": 2, "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Rank": 2 + "Id": 375 }, { - "Id": 376, "CommandName": "Get-PnPAzureADGroupOwner", + "Rank": 1, "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Rank": 1 + "Id": 376 }, { - "Id": 377, "CommandName": "Get-PnPAzureADGroupOwner", + "Rank": 2, "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Rank": 2 + "Id": 377 }, { - "Id": 378, "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 1, "Command": "Get-PnPAzureADServicePrincipal", - "Rank": 1 + "Id": 378 }, { - "Id": 379, "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 2, "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Rank": 2 + "Id": 379 }, { - "Id": 380, "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 3, "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Rank": 3 + "Id": 380 }, { - "Id": 381, "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 4, "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Rank": 4 + "Id": 381 }, { - "Id": 382, "CommandName": "Get-PnPAzureADServicePrincipal", + "Rank": 5, "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Rank": 5 + "Id": 382 }, { - "Id": 383, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1 + "Id": 383 }, { - "Id": 384, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 2 + "Id": 384 }, { - "Id": 385, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Rank": 1, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 1 + "Id": 385 }, { - "Id": 386, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", + "Rank": 2, "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Rank": 2 + "Id": 386 }, { - "Id": 387, "CommandName": "Get-PnPAzureADUser", + "Rank": 1, "Command": "Get-PnPAzureADUser", - "Rank": 1 + "Id": 387 }, { - "Id": 388, "CommandName": "Get-PnPAzureADUser", + "Rank": 2, "Command": "Get-PnPAzureADUser -EndIndex 50", - "Rank": 2 + "Id": 388 }, { - "Id": 389, "CommandName": "Get-PnPAzureADUser", + "Rank": 3, "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 3 + "Id": 389 }, { - "Id": 390, "CommandName": "Get-PnPAzureADUser", + "Rank": 4, "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Rank": 4 + "Id": 390 }, { - "Id": 391, "CommandName": "Get-PnPAzureADUser", + "Rank": 5, "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Rank": 5 + "Id": 391 }, { - "Id": 392, "CommandName": "Get-PnPAzureADUser", + "Rank": 6, "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Rank": 6 + "Id": 392 }, { - "Id": 393, "CommandName": "Get-PnPAzureADUser", + "Rank": 7, "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Rank": 7 + "Id": 393 }, { - "Id": 394, "CommandName": "Get-PnPAzureADUser", + "Rank": 8, "Command": "Get-PnPAzureADUser -Delta", - "Rank": 8 + "Id": 394 }, { - "Id": 395, "CommandName": "Get-PnPAzureADUser", + "Rank": 9, "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Rank": 9 + "Id": 395 }, { - "Id": 396, "CommandName": "Get-PnPAzureADUser", + "Rank": 10, "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Rank": 10 + "Id": 396 }, { - "Id": 397, "CommandName": "Get-PnPAzureCertificate", + "Rank": 1, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Rank": 1 + "Id": 397 }, { - "Id": 398, "CommandName": "Get-PnPAzureCertificate", + "Rank": 2, "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Rank": 2 + "Id": 398 }, { - "Id": 399, "CommandName": "Get-PnPAzureCertificate", + "Rank": 3, "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Rank": 3 + "Id": 399 }, { - "Id": 400, "CommandName": "Get-PnPBrowserIdleSignout", + "Rank": 1, "Command": "Get-PnPBrowserIdleSignout", - "Rank": 1 + "Id": 400 }, { - "Id": 401, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 1, "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Rank": 1 + "Id": 401 }, { - "Id": 402, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", + "Rank": 2, "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2 + "Id": 402 }, { - "Id": 403, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 1, "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1 + "Id": 403 }, { - "Id": 404, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 2, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Rank": 2 + "Id": 404 }, { - "Id": 405, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 3, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Rank": 3 + "Id": 405 }, { - "Id": 406, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 4, "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4 + "Id": 406 }, { - "Id": 407, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", + "Rank": 5, "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Rank": 5 + "Id": 407 }, { - "Id": 408, "CommandName": "Get-PnPChangeLog", + "Rank": 1, "Command": "Get-PnPChangeLog", - "Rank": 1 + "Id": 408 }, { - "Id": 409, "CommandName": "Get-PnPChangeLog", + "Rank": 2, "Command": "Get-PnPChangeLog -Nightly", - "Rank": 2 + "Id": 409 }, { - "Id": 410, "CommandName": "Get-PnPCompatibleHubContentTypes", + "Rank": 1, "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Rank": 1 + "Id": 410 }, { - "Id": 411, "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": 411 }, { - "Id": 412, "CommandName": "Get-PnPContentType", + "Rank": 1, "Command": "Get-PnPContentType", - "Rank": 1 + "Id": 412 }, { - "Id": 413, "CommandName": "Get-PnPContentType", + "Rank": 2, "Command": "Get-PnPContentType -InSiteHierarchy", - "Rank": 2 + "Id": 413 }, { - "Id": 414, "CommandName": "Get-PnPContentType", + "Rank": 3, "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Rank": 3 + "Id": 414 }, { - "Id": 415, "CommandName": "Get-PnPContentType", + "Rank": 4, "Command": "Get-PnPContentType -List \"Documents\"", - "Rank": 4 + "Id": 415 }, { - "Id": 416, "CommandName": "Get-PnPContentTypePublishingStatus", + "Rank": 1, "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Rank": 1 + "Id": 416 }, { - "Id": 417, "CommandName": "Get-PnPCustomAction", + "Rank": 1, "Command": "Get-PnPCustomAction", - "Rank": 1 + "Id": 417 }, { - "Id": 418, "CommandName": "Get-PnPCustomAction", + "Rank": 2, "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 2 + "Id": 418 }, { - "Id": 419, "CommandName": "Get-PnPCustomAction", + "Rank": 3, "Command": "Get-PnPCustomAction -Scope web", - "Rank": 3 + "Id": 419 }, { - "Id": 420, "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Rank": 1, "Command": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1 + "Id": 420 }, { - "Id": 421, "CommandName": "Get-PnPDeletedMicrosoft365Group", + "Rank": 2, "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 2 + "Id": 421 }, { - "Id": 422, "CommandName": "Get-PnPDeletedTeam", + "Rank": 1, "Command": "Get-PnPDeletedTeam", - "Rank": 1 + "Id": 422 }, { - "Id": 423, "CommandName": "Get-PnPDiagnostics", + "Rank": 1, "Command": "Get-PnPDiagnostics", - "Rank": 1 + "Id": 423 }, { - "Id": 424, "CommandName": "Get-PnPDisableSpacesActivation", + "Rank": 1, "Command": "Get-PnPDisableSpacesActivation", - "Rank": 1 + "Id": 424 }, { - "Id": 425, "CommandName": "Get-PnPDocumentSetTemplate", + "Rank": 1, "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Rank": 1 + "Id": 425 }, { - "Id": 426, "CommandName": "Get-PnPDocumentSetTemplate", + "Rank": 2, "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Rank": 2 + "Id": 426 }, { - "Id": 427, "CommandName": "Get-PnPEventReceiver", + "Rank": 1, "Command": "Get-PnPEventReceiver", - "Rank": 1 + "Id": 427 }, { - "Id": 428, "CommandName": "Get-PnPEventReceiver", + "Rank": 2, "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2 + "Id": 428 }, { - "Id": 429, "CommandName": "Get-PnPEventReceiver", + "Rank": 3, "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Rank": 3 + "Id": 429 }, { - "Id": 430, "CommandName": "Get-PnPEventReceiver", + "Rank": 4, "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Rank": 4 + "Id": 430 }, { - "Id": 431, "CommandName": "Get-PnPEventReceiver", + "Rank": 5, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 5 + "Id": 431 }, { - "Id": 432, "CommandName": "Get-PnPEventReceiver", + "Rank": 6, "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Rank": 6 + "Id": 432 }, { - "Id": 433, "CommandName": "Get-PnPEventReceiver", + "Rank": 7, "Command": "Get-PnPEventReceiver -Scope Site", - "Rank": 7 + "Id": 433 }, { - "Id": 434, "CommandName": "Get-PnPEventReceiver", + "Rank": 8, "Command": "Get-PnPEventReceiver -Scope Web", - "Rank": 8 + "Id": 434 }, { - "Id": 435, "CommandName": "Get-PnPEventReceiver", + "Rank": 9, "Command": "Get-PnPEventReceiver -Scope All", - "Rank": 9 + "Id": 435 }, { - "Id": 436, "CommandName": "Get-PnPException", + "Rank": 1, "Command": "Get-PnPException", - "Rank": 1 + "Id": 436 }, { - "Id": 437, "CommandName": "Get-PnPException", + "Rank": 2, "Command": "Get-PnPException -All", - "Rank": 2 + "Id": 437 }, { - "Id": 438, "CommandName": "Get-PnPExternalUser", + "Rank": 1, "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Rank": 1 + "Id": 438 }, { - "Id": 439, "CommandName": "Get-PnPExternalUser", + "Rank": 2, "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Rank": 2 + "Id": 439 }, { - "Id": 440, "CommandName": "Get-PnPFeature", + "Rank": 1, "Command": "Get-PnPFeature", - "Rank": 1 + "Id": 440 }, { - "Id": 441, "CommandName": "Get-PnPFeature", + "Rank": 2, "Command": "Get-PnPFeature -Scope Site", - "Rank": 2 + "Id": 441 }, { - "Id": 442, "CommandName": "Get-PnPFeature", + "Rank": 3, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 3 + "Id": 442 }, { - "Id": 443, "CommandName": "Get-PnPFeature", + "Rank": 4, "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Rank": 4 + "Id": 443 }, { - "Id": 444, "CommandName": "Get-PnPField", + "Rank": 1, "Command": "Get-PnPField", - "Rank": 1 + "Id": 444 }, { - "Id": 445, "CommandName": "Get-PnPField", + "Rank": 2, "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2 + "Id": 445 }, { - "Id": 446, "CommandName": "Get-PnPField", + "Rank": 3, "Command": "Get-PnPField -Group \"Custom Columns\"", - "Rank": 3 + "Id": 446 }, { - "Id": 447, "CommandName": "Get-PnPFile", + "Rank": 1, "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Rank": 1 + "Id": 447 }, { - "Id": 448, "CommandName": "Get-PnPFile", + "Rank": 2, "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Rank": 2 + "Id": 448 }, { - "Id": 449, "CommandName": "Get-PnPFile", + "Rank": 3, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Rank": 3 + "Id": 449 }, { - "Id": 450, "CommandName": "Get-PnPFile", + "Rank": 4, "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Rank": 4 + "Id": 450 }, { - "Id": 451, "CommandName": "Get-PnPFile", + "Rank": 5, "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Rank": 5 + "Id": 451 }, { - "Id": 452, "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": 452 }, { - "Id": 453, "CommandName": "Get-PnPFile", + "Rank": 7, "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Rank": 7 + "Id": 453 }, { - "Id": 454, "CommandName": "Get-PnPFileSharingLink", + "Rank": 1, "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "Id": 454 }, { - "Id": 455, "CommandName": "Get-PnPFileVersion", + "Rank": 1, "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Rank": 1 + "Id": 455 }, { - "Id": 456, "CommandName": "Get-PnPFileVersion", + "Rank": 2, "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Rank": 2 + "Id": 456 }, { - "Id": 457, "CommandName": "Get-PnPFlow", + "Rank": 1, "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Rank": 1 + "Id": 457 }, { - "Id": 458, "CommandName": "Get-PnPFolder", + "Rank": 1, "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Rank": 1 + "Id": 458 }, { - "Id": 459, "CommandName": "Get-PnPFolder", + "Rank": 2, "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Rank": 2 + "Id": 459 }, { - "Id": 460, "CommandName": "Get-PnPFolder", + "Rank": 3, "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Rank": 3 + "Id": 460 }, { - "Id": 461, "CommandName": "Get-PnPFolderItem", + "Rank": 1, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\"", - "Rank": 1 + "Id": 461 }, { - "Id": 462, "CommandName": "Get-PnPFolderItem", + "Rank": 2, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Rank": 2 + "Id": 462 }, { - "Id": 463, "CommandName": "Get-PnPFolderItem", + "Rank": 3, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Rank": 3 + "Id": 463 }, { - "Id": 464, "CommandName": "Get-PnPFolderItem", + "Rank": 4, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType File", - "Rank": 4 + "Id": 464 }, { - "Id": 465, "CommandName": "Get-PnPFolderItem", + "Rank": 5, "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Rank": 5 + "Id": 465 }, { - "Id": 466, "CommandName": "Get-PnPFolderSharingLink", + "Rank": 1, "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "Id": 466 }, { - "Id": 467, "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 1, "Command": "Get-PnPFolderStorageMetric", - "Rank": 1 + "Id": 467 }, { - "Id": 468, "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 2, "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Rank": 2 + "Id": 468 }, { - "Id": 469, "CommandName": "Get-PnPFolderStorageMetric", + "Rank": 3, "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Rank": 3 + "Id": 469 }, { - "Id": 470, "CommandName": "Get-PnPFooter", + "Rank": 1, "Command": "Get-PnPFooter", - "Rank": 1 + "Id": 470 }, { - "Id": 471, "CommandName": "Get-PnPGraphAccessToken", + "Rank": 1, "Command": "Get-PnPGraphAccessToken", - "Rank": 1 + "Id": 471 }, { - "Id": 472, "CommandName": "Get-PnPGraphAccessToken", + "Rank": 2, "Command": "Get-PnPGraphAccessToken -Decoded", - "Rank": 2 + "Id": 472 }, { - "Id": 473, "CommandName": "Get-PnPGraphSubscription", + "Rank": 1, "Command": "Get-PnPGraphSubscription", - "Rank": 1 + "Id": 473 }, { - "Id": 474, "CommandName": "Get-PnPGraphSubscription", + "Rank": 2, "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Rank": 2 + "Id": 474 }, { - "Id": 475, "CommandName": "Get-PnPGroup", + "Rank": 1, "Command": "Get-PnPGroup", - "Rank": 1 + "Id": 475 }, { - "Id": 476, "CommandName": "Get-PnPGroup", + "Rank": 2, "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Rank": 2 + "Id": 476 }, { - "Id": 477, "CommandName": "Get-PnPGroup", + "Rank": 3, "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Rank": 3 + "Id": 477 }, { - "Id": 478, "CommandName": "Get-PnPGroupMember", + "Rank": 1, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Rank": 1 + "Id": 478 }, { - "Id": 479, "CommandName": "Get-PnPGroupMember", + "Rank": 2, "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Rank": 2 + "Id": 479 }, { - "Id": 480, "CommandName": "Get-PnPGroupPermissions", + "Rank": 1, "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Rank": 1 + "Id": 480 }, { - "Id": 481, "CommandName": "Get-PnPHideDefaultThemes", + "Rank": 1, "Command": "Get-PnPHideDefaultThemes", - "Rank": 1 + "Id": 481 }, { - "Id": 482, "CommandName": "Get-PnPHomePage", + "Rank": 1, "Command": "Get-PnPHomePage", - "Rank": 1 + "Id": 482 }, { - "Id": 483, "CommandName": "Get-PnPHomeSite", + "Rank": 1, "Command": "Get-PnPHomeSite", - "Rank": 1 + "Id": 483 }, { - "Id": 484, "CommandName": "Get-PnPHomeSite", + "Rank": 2, "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Rank": 2 + "Id": 484 }, { - "Id": 485, "CommandName": "Get-PnPHomeSite", + "Rank": 3, "Command": "Get-PnPHomeSite -Detailed", - "Rank": 3 + "Id": 485 }, { - "Id": 486, "CommandName": "Get-PnPHubSite", + "Rank": 1, "Command": "Get-PnPHubSite", - "Rank": 1 + "Id": 486 }, { - "Id": 487, "CommandName": "Get-PnPHubSite", + "Rank": 2, "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2 + "Id": 487 }, { - "Id": 488, "CommandName": "Get-PnPHubSite", + "Rank": 3, "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Rank": 3 + "Id": 488 }, { - "Id": 489, "CommandName": "Get-PnPHubSiteChild", + "Rank": 1, "Command": "Get-PnPHubSiteChild", - "Rank": 1 + "Id": 489 }, { - "Id": 490, "CommandName": "Get-PnPHubSiteChild", + "Rank": 2, "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Rank": 2 + "Id": 490 }, { - "Id": 491, "CommandName": "Get-PnPInPlaceRecordsManagement", + "Rank": 1, "Command": "Get-PnPInPlaceRecordsManagement", - "Rank": 1 + "Id": 491 }, { - "Id": 492, "CommandName": "Get-PnPIsSiteAliasAvailable", + "Rank": 1, "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Rank": 1 + "Id": 492 }, { - "Id": 493, "CommandName": "Get-PnPJavaScriptLink", + "Rank": 1, "Command": "Get-PnPJavaScriptLink", - "Rank": 1 + "Id": 493 }, { - "Id": 494, "CommandName": "Get-PnPJavaScriptLink", + "Rank": 2, "Command": "Get-PnPJavaScriptLink -Scope All", - "Rank": 2 + "Id": 494 }, { - "Id": 495, "CommandName": "Get-PnPJavaScriptLink", + "Rank": 3, "Command": "Get-PnPJavaScriptLink -Scope Web", - "Rank": 3 + "Id": 495 }, { - "Id": 496, "CommandName": "Get-PnPJavaScriptLink", + "Rank": 4, "Command": "Get-PnPJavaScriptLink -Scope Site", - "Rank": 4 + "Id": 496 }, { - "Id": 497, "CommandName": "Get-PnPJavaScriptLink", + "Rank": 5, "Command": "Get-PnPJavaScriptLink -Name Test", - "Rank": 5 + "Id": 497 }, { - "Id": 498, "CommandName": "Get-PnPKnowledgeHubSite", + "Rank": 1, "Command": "Get-PnPKnowledgeHubSite", - "Rank": 1 + "Id": 498 }, { - "Id": 499, "CommandName": "Get-PnPLabel", + "Rank": 1, "Command": "Get-PnPLabel", - "Rank": 1 + "Id": 499 }, { - "Id": 500, "CommandName": "Get-PnPLabel", + "Rank": 2, "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Rank": 2 + "Id": 500 }, { - "Id": 501, "CommandName": "Get-PnPLargeListOperationStatus", + "Rank": 1, "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Rank": 1 + "Id": 501 }, { - "Id": 502, "CommandName": "Get-PnPList", + "Rank": 1, "Command": "Get-PnPList", - "Rank": 1 + "Id": 502 }, { - "Id": 503, "CommandName": "Get-PnPList", + "Rank": 2, "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 2 + "Id": 503 }, { - "Id": 504, "CommandName": "Get-PnPList", + "Rank": 3, "Command": "Get-PnPList -Identity Lists/Announcements", - "Rank": 3 + "Id": 504 }, { - "Id": 505, "CommandName": "Get-PnPList", + "Rank": 4, "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Rank": 4 + "Id": 505 }, { - "Id": 506, "CommandName": "Get-PnPList", + "Rank": 5, "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Rank": 5 + "Id": 506 }, { - "Id": 507, "CommandName": "Get-PnPListDesign", + "Rank": 1, "Command": "Get-PnPListDesign", - "Rank": 1 + "Id": 507 }, { - "Id": 508, "CommandName": "Get-PnPListDesign", + "Rank": 2, "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2 + "Id": 508 }, { - "Id": 509, "CommandName": "Get-PnPListDesign", + "Rank": 3, "Command": "Get-PnPListDesign -Identity ListEvent", - "Rank": 3 + "Id": 509 }, { - "Id": 510, "CommandName": "Get-PnPListInformationRightsManagement", + "Rank": 1, "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Rank": 1 + "Id": 510 }, { - "Id": 511, "CommandName": "Get-PnPListItem", + "Rank": 1, "Command": "Get-PnPListItem -List Tasks", - "Rank": 1 + "Id": 511 }, { - "Id": 512, "CommandName": "Get-PnPListItem", + "Rank": 2, "Command": "Get-PnPListItem -List Tasks -Id 1", - "Rank": 2 + "Id": 512 }, { - "Id": 513, "CommandName": "Get-PnPListItem", + "Rank": 3, "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Rank": 3 + "Id": 513 }, { - "Id": 514, "CommandName": "Get-PnPListItem", + "Rank": 4, "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Rank": 4 + "Id": 514 }, { - "Id": 515, "CommandName": "Get-PnPListItem", + "Rank": 5, "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Rank": 5 + "Id": 515 }, { - "Id": 516, "CommandName": "Get-PnPListItem", + "Rank": 6, "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Rank": 6 + "Id": 516 }, { - "Id": 517, "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": 517 }, { - "Id": 518, "CommandName": "Get-PnPListItem", + "Rank": 8, "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Rank": 8 + "Id": 518 }, { - "Id": 519, "CommandName": "Get-PnPListItem", + "Rank": 9, "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Rank": 9 + "Id": 519 }, { - "Id": 520, "CommandName": "Get-PnPListItemComment", + "Rank": 1, "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Rank": 1 + "Id": 520 }, { - "Id": 521, "CommandName": "Get-PnPListItemPermission", + "Rank": 1, "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Rank": 1 + "Id": 521 }, { - "Id": 522, "CommandName": "Get-PnPListItemVersion", + "Rank": 1, "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Rank": 1 + "Id": 522 }, { - "Id": 523, "CommandName": "Get-PnPListPermissions", + "Rank": 1, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Rank": 1 + "Id": 523 }, { - "Id": 524, "CommandName": "Get-PnPListPermissions", + "Rank": 2, "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Rank": 2 + "Id": 524 }, { - "Id": 525, "CommandName": "Get-PnPListRecordDeclaration", + "Rank": 1, "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Rank": 1 + "Id": 525 }, { - "Id": 526, "CommandName": "Get-PnPMasterPage", + "Rank": 1, "Command": "Get-PnPMasterPage", - "Rank": 1 + "Id": 526 }, { - "Id": 527, "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 1, "Command": "Get-PnPMessageCenterAnnouncement", - "Rank": 1 + "Id": 527 }, { - "Id": 528, "CommandName": "Get-PnPMessageCenterAnnouncement", + "Rank": 2, "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Rank": 2 + "Id": 528 }, { - "Id": 529, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 1, "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1 + "Id": 529 }, { - "Id": 530, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", + "Rank": 2, "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Rank": 2 + "Id": 530 }, { - "Id": 531, "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 1, "Command": "Get-PnPMicrosoft365Group", - "Rank": 1 + "Id": 531 }, { - "Id": 532, "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 2, "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Rank": 2 + "Id": 532 }, { - "Id": 533, "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 3, "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Rank": 3 + "Id": 533 }, { - "Id": 534, "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 4, "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Rank": 4 + "Id": 534 }, { - "Id": 535, "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 5, "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Rank": 5 + "Id": 535 }, { - "Id": 536, "CommandName": "Get-PnPMicrosoft365Group", + "Rank": 6, "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Rank": 6 + "Id": 536 }, { - "Id": 537, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1 + "Id": 537 }, { - "Id": 538, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Rank": 2 + "Id": 538 }, { - "Id": 539, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", + "Rank": 3, "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3 + "Id": 539 }, { - "Id": 540, "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Rank": 1 + "Id": 540 }, { - "Id": 541, "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Rank": 2 + "Id": 541 }, { - "Id": 542, "CommandName": "Get-PnPMicrosoft365GroupMember", + "Rank": 3, "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Rank": 3 + "Id": 542 }, { - "Id": 543, "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Rank": 1 + "Id": 543 }, { - "Id": 544, "CommandName": "Get-PnPMicrosoft365GroupOwner", + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Rank": 2 + "Id": 544 }, { - "Id": 545, "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1 + "Id": 545 }, { - "Id": 546, "CommandName": "Get-PnPMicrosoft365GroupSettings", + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Rank": 2 + "Id": 546 }, { - "Id": 547, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1 + "Id": 547 }, { - "Id": 548, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Rank": 2 + "Id": 548 }, { - "Id": 549, "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1 + "Id": 549 }, { - "Id": 550, "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Rank": 2 + "Id": 550 }, { - "Id": 551, "CommandName": "Get-PnPMicrosoft365GroupTeam", + "Rank": 3, "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3 + "Id": 551 }, { - "Id": 552, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 1, "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1 + "Id": 552 }, { - "Id": 553, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 2, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Rank": 2 + "Id": 553 }, { - "Id": 554, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", + "Rank": 3, "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Rank": 3 + "Id": 554 }, { - "Id": 555, "CommandName": "Get-PnPNavigationNode", + "Rank": 1, "Command": "Get-PnPNavigationNode", - "Rank": 1 + "Id": 555 }, { - "Id": 556, "CommandName": "Get-PnPNavigationNode", + "Rank": 2, "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Rank": 2 + "Id": 556 }, { - "Id": 557, "CommandName": "Get-PnPNavigationNode", + "Rank": 3, "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Rank": 3 + "Id": 557 }, { - "Id": 558, "CommandName": "Get-PnPOrgAssetsLibrary", + "Rank": 1, "Command": "Get-PnPOrgAssetsLibrary", - "Rank": 1 + "Id": 558 }, { - "Id": 559, "CommandName": "Get-PnPOrgNewsSite", + "Rank": 1, "Command": "Get-PnPOrgNewsSite", - "Rank": 1 + "Id": 559 }, { - "Id": 560, "CommandName": "Get-PnPPage", + "Rank": 1, "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Rank": 1 + "Id": 560 }, { - "Id": 561, "CommandName": "Get-PnPPage", + "Rank": 2, "Command": "Get-PnPPage \"MyPage\"", - "Rank": 2 + "Id": 561 }, { - "Id": 562, "CommandName": "Get-PnPPage", + "Rank": 3, "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Rank": 3 + "Id": 562 }, { - "Id": 563, "CommandName": "Get-PnPPage", + "Rank": 4, "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Rank": 4 + "Id": 563 }, { - "Id": 564, "CommandName": "Get-PnPPageComponent", + "Rank": 1, "Command": "Get-PnPPageComponent -Page Home", - "Rank": 1 + "Id": 564 }, { - "Id": 565, "CommandName": "Get-PnPPageComponent", + "Rank": 2, "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2 + "Id": 565 }, { - "Id": 566, "CommandName": "Get-PnPPageComponent", + "Rank": 3, "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Rank": 3 + "Id": 566 }, { - "Id": 567, "CommandName": "Get-PnPPlannerBucket", + "Rank": 1, "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1 + "Id": 567 }, { - "Id": 568, "CommandName": "Get-PnPPlannerConfiguration", + "Rank": 1, "Command": "Get-PnPPlannerConfiguration", - "Rank": 1 + "Id": 568 }, { - "Id": 569, "CommandName": "Get-PnPPlannerPlan", + "Rank": 1, "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Rank": 1 + "Id": 569 }, { - "Id": 570, "CommandName": "Get-PnPPlannerPlan", + "Rank": 2, "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Rank": 2 + "Id": 570 }, { - "Id": 571, "CommandName": "Get-PnPPlannerPlan", + "Rank": 3, "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Rank": 3 + "Id": 571 }, { - "Id": 572, "CommandName": "Get-PnPPlannerRosterMember", + "Rank": 1, "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1 + "Id": 572 }, { - "Id": 573, "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 1, "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Rank": 1 + "Id": 573 }, { - "Id": 574, "CommandName": "Get-PnPPlannerRosterPlan", + "Rank": 2, "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 2 + "Id": 574 }, { - "Id": 575, "CommandName": "Get-PnPPlannerTask", + "Rank": 1, "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Rank": 1 + "Id": 575 }, { - "Id": 576, "CommandName": "Get-PnPPlannerTask", + "Rank": 2, "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 2 + "Id": 576 }, { - "Id": 577, "CommandName": "Get-PnPPlannerTask", + "Rank": 3, "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Rank": 3 + "Id": 577 }, { - "Id": 578, "CommandName": "Get-PnPPlannerUserPolicy", + "Rank": 1, "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 578 }, { - "Id": 579, "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 1, "Command": "Get-PnPPowerPlatformEnvironment", - "Rank": 1 + "Id": 579 }, { - "Id": 580, "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 2, "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Rank": 2 + "Id": 580 }, { - "Id": 581, "CommandName": "Get-PnPPowerPlatformEnvironment", + "Rank": 3, "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Rank": 3 + "Id": 581 }, { - "Id": 582, "CommandName": "Get-PnPPowerShellTelemetryEnabled", + "Rank": 1, "Command": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1 + "Id": 582 }, { - "Id": 583, "CommandName": "Get-PnPPropertyBag", + "Rank": 1, "Command": "Get-PnPPropertyBag", - "Rank": 1 + "Id": 583 }, { - "Id": 584, "CommandName": "Get-PnPPropertyBag", + "Rank": 2, "Command": "Get-PnPPropertyBag -Key MyKey", - "Rank": 2 + "Id": 584 }, { - "Id": 585, "CommandName": "Get-PnPPropertyBag", + "Rank": 3, "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Rank": 3 + "Id": 585 }, { - "Id": 586, "CommandName": "Get-PnPPropertyBag", + "Rank": 4, "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Rank": 4 + "Id": 586 }, { - "Id": 587, "CommandName": "Get-PnPPropertyBag", + "Rank": 5, "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Rank": 5 + "Id": 587 }, { - "Id": 588, "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 1, "Command": "Get-PnPPublishingImageRendition", - "Rank": 1 + "Id": 588 }, { - "Id": 589, "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 2, "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Rank": 2 + "Id": 589 }, { - "Id": 590, "CommandName": "Get-PnPPublishingImageRendition", + "Rank": 3, "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Rank": 3 + "Id": 590 }, { - "Id": 591, "CommandName": "Get-PnPRecycleBinItem", + "Rank": 1, "Command": "Get-PnPRecycleBinItem", - "Rank": 1 + "Id": 591 }, { - "Id": 592, "CommandName": "Get-PnPRecycleBinItem", + "Rank": 2, "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Rank": 2 + "Id": 592 }, { - "Id": 593, "CommandName": "Get-PnPRecycleBinItem", + "Rank": 3, "Command": "Get-PnPRecycleBinItem -FirstStage", - "Rank": 3 + "Id": 593 }, { - "Id": 594, "CommandName": "Get-PnPRecycleBinItem", + "Rank": 4, "Command": "Get-PnPRecycleBinItem -SecondStage", - "Rank": 4 + "Id": 594 }, { - "Id": 595, "CommandName": "Get-PnPRecycleBinItem", + "Rank": 5, "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Rank": 5 + "Id": 595 }, { - "Id": 596, "CommandName": "Get-PnPRequestAccessEmails", + "Rank": 1, "Command": "Get-PnPRequestAccessEmails", - "Rank": 1 + "Id": 596 }, { - "Id": 597, "CommandName": "Get-PnPRoleDefinition", + "Rank": 1, "Command": "Get-PnPRoleDefinition", - "Rank": 1 + "Id": 597 }, { - "Id": 598, "CommandName": "Get-PnPRoleDefinition", + "Rank": 2, "Command": "Get-PnPRoleDefinition -Identity Read", - "Rank": 2 + "Id": 598 }, { - "Id": 599, "CommandName": "Get-PnPRoleDefinition", + "Rank": 3, "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Rank": 3 + "Id": 599 }, { - "Id": 600, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 1, "Command": "Get-PnPSearchConfiguration", - "Rank": 1 + "Id": 600 }, { - "Id": 601, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 2, "Command": "Get-PnPSearchConfiguration -Scope Site", - "Rank": 2 + "Id": 601 }, { - "Id": 602, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 3, "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Rank": 3 + "Id": 602 }, { - "Id": 603, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 4, "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4 + "Id": 603 }, { - "Id": 604, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 5, "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Rank": 5 + "Id": 604 }, { - "Id": 605, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 6, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Rank": 6 + "Id": 605 }, { - "Id": 606, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 7, "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Rank": 7 + "Id": 606 }, { - "Id": 607, "CommandName": "Get-PnPSearchConfiguration", + "Rank": 8, "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Rank": 8 + "Id": 607 }, { - "Id": 608, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 1, "Command": "Get-PnPSearchCrawlLog", - "Rank": 1 + "Id": 608 }, { - "Id": 609, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 2, "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Rank": 2 + "Id": 609 }, { - "Id": 610, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 3, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Rank": 3 + "Id": 610 }, { - "Id": 611, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 4, "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Rank": 4 + "Id": 611 }, { - "Id": 612, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 5, "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Rank": 5 + "Id": 612 }, { - "Id": 613, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 6, "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Rank": 6 + "Id": 613 }, { - "Id": 614, "CommandName": "Get-PnPSearchCrawlLog", + "Rank": 7, "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Rank": 7 + "Id": 614 }, { - "Id": 615, "CommandName": "Get-PnPSearchSettings", + "Rank": 1, "Command": "Get-PnPSearchSettings", - "Rank": 1 + "Id": 615 }, { - "Id": 616, "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 1, "Command": "Get-PnPServiceCurrentHealth", - "Rank": 1 + "Id": 616 }, { - "Id": 617, "CommandName": "Get-PnPServiceCurrentHealth", + "Rank": 2, "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Rank": 2 + "Id": 617 }, { - "Id": 618, "CommandName": "Get-PnPServiceHealthIssue", + "Rank": 1, "Command": "Get-PnPServiceHealthIssue", - "Rank": 1 + "Id": 618 }, { - "Id": 619, "CommandName": "Get-PnPServiceHealthIssue", + "Rank": 2, "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Rank": 2 + "Id": 619 }, { - "Id": 620, "CommandName": "Get-PnPSharePointAddIn", + "Rank": 1, "Command": "Get-PnPSharePointAddIn", - "Rank": 1 + "Id": 620 }, { - "Id": 621, "CommandName": "Get-PnPSharePointAddIn", + "Rank": 2, "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Rank": 2 + "Id": 621 }, { - "Id": 622, "CommandName": "Get-PnPSharingForNonOwnersOfSite", + "Rank": 1, "Command": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "Id": 622 }, { - "Id": 623, "CommandName": "Get-PnPSite", + "Rank": 1, "Command": "Get-PnPSite", - "Rank": 1 + "Id": 623 }, { - "Id": 624, "CommandName": "Get-PnPSite", + "Rank": 2, "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Rank": 2 + "Id": 624 }, { - "Id": 625, "CommandName": "Get-PnPSiteClosure", + "Rank": 1, "Command": "Get-PnPSiteClosure", - "Rank": 1 + "Id": 625 }, { - "Id": 626, "CommandName": "Get-PnPSiteCollectionAdmin", + "Rank": 1, "Command": "Get-PnPSiteCollectionAdmin", - "Rank": 1 + "Id": 626 }, { - "Id": 627, "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 1, "Command": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1 + "Id": 627 }, { - "Id": 628, "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 2, "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Rank": 2 + "Id": 628 }, { - "Id": 629, "CommandName": "Get-PnPSiteCollectionAppCatalog", + "Rank": 3, "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Rank": 3 + "Id": 629 }, { - "Id": 630, "CommandName": "Get-PnPSiteCollectionTermStore", + "Rank": 1, "Command": "Get-PnPSiteCollectionTermStore", - "Rank": 1 + "Id": 630 }, { - "Id": 631, "CommandName": "Get-PnPSiteDesign", + "Rank": 1, "Command": "Get-PnPSiteDesign", - "Rank": 1 + "Id": 631 }, { - "Id": 632, "CommandName": "Get-PnPSiteDesign", + "Rank": 2, "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2 + "Id": 632 }, { - "Id": 633, "CommandName": "Get-PnPSiteDesignRights", + "Rank": 1, "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Id": 633 }, { - "Id": 634, "CommandName": "Get-PnPSiteDesignRun", + "Rank": 1, "Command": "Get-PnPSiteDesignRun", - "Rank": 1 + "Id": 634 }, { - "Id": 635, "CommandName": "Get-PnPSiteDesignRun", + "Rank": 2, "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Rank": 2 + "Id": 635 }, { - "Id": 636, "CommandName": "Get-PnPSiteDesignTask", + "Rank": 1, "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Rank": 1 + "Id": 636 }, { - "Id": 637, "CommandName": "Get-PnPSiteDesignTask", + "Rank": 2, "Command": "Get-PnPSiteDesignTask", - "Rank": 2 + "Id": 637 }, { - "Id": 638, "CommandName": "Get-PnPSiteDesignTask", + "Rank": 3, "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Rank": 3 + "Id": 638 }, { - "Id": 639, "CommandName": "Get-PnPSiteGroup", + "Rank": 1, "Command": "Get-PnPSiteGroup", - "Rank": 1 + "Id": 639 }, { - "Id": 640, "CommandName": "Get-PnPSiteGroup", + "Rank": 2, "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 2 + "Id": 640 }, { - "Id": 641, "CommandName": "Get-PnPSiteGroup", + "Rank": 3, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Rank": 3 + "Id": 641 }, { - "Id": 642, "CommandName": "Get-PnPSiteGroup", + "Rank": 4, "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Rank": 4 + "Id": 642 }, { - "Id": 643, "CommandName": "Get-PnPSitePolicy", + "Rank": 1, "Command": "Get-PnPSitePolicy", - "Rank": 1 + "Id": 643 }, { - "Id": 644, "CommandName": "Get-PnPSitePolicy", + "Rank": 2, "Command": "Get-PnPSitePolicy -AllAvailable", - "Rank": 2 + "Id": 644 }, { - "Id": 645, "CommandName": "Get-PnPSitePolicy", + "Rank": 3, "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 3 + "Id": 645 }, { - "Id": 646, "CommandName": "Get-PnPSiteScript", + "Rank": 1, "Command": "Get-PnPSiteScript", - "Rank": 1 + "Id": 646 }, { - "Id": 647, "CommandName": "Get-PnPSiteScript", + "Rank": 2, "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 2 + "Id": 647 }, { - "Id": 648, "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 1, "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Rank": 1 + "Id": 648 }, { - "Id": 649, "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 2, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Rank": 2 + "Id": 649 }, { - "Id": 650, "CommandName": "Get-PnPSiteScriptFromList", + "Rank": 3, "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Rank": 3 + "Id": 650 }, { - "Id": 651, "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 1, "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Rank": 1 + "Id": 651 }, { - "Id": 652, "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 2, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Rank": 2 + "Id": 652 }, { - "Id": 653, "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 3, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Rank": 3 + "Id": 653 }, { - "Id": 654, "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 4, "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Rank": 4 + "Id": 654 }, { - "Id": 655, "CommandName": "Get-PnPSiteScriptFromWeb", + "Rank": 5, "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Rank": 5 + "Id": 655 }, { - "Id": 656, "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": 656 }, { - "Id": 657, "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 1, "Command": "Get-PnPSiteSearchQueryResults", - "Rank": 1 + "Id": 657 }, { - "Id": 658, "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 2, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Rank": 2 + "Id": 658 }, { - "Id": 659, "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 3, "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Rank": 3 + "Id": 659 }, { - "Id": 660, "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 4, "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Rank": 4 + "Id": 660 }, { - "Id": 661, "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 5, "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Rank": 5 + "Id": 661 }, { - "Id": 662, "CommandName": "Get-PnPSiteSearchQueryResults", + "Rank": 6, "Command": "Get-PnPSiteSearchQueryResults -All", - "Rank": 6 + "Id": 662 }, { - "Id": 663, "CommandName": "Get-PnPSiteSensitivityLabel", + "Rank": 1, "Command": "Get-PnPSiteSensitivityLabel", - "Rank": 1 + "Id": 663 }, { - "Id": 664, "CommandName": "Get-PnPSiteTemplate", + "Rank": 1, "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Rank": 1 + "Id": 664 }, { - "Id": 665, "CommandName": "Get-PnPSiteTemplate", + "Rank": 2, "Command": "Get-PnPSiteTemplate -Out template.xml", - "Rank": 2 + "Id": 665 }, { - "Id": 666, "CommandName": "Get-PnPSiteTemplate", + "Rank": 3, "Command": "Get-PnPSiteTemplate -Out template.md", - "Rank": 3 + "Id": 666 }, { - "Id": 667, "CommandName": "Get-PnPSiteTemplate", + "Rank": 4, "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Rank": 4 + "Id": 667 }, { - "Id": 668, "CommandName": "Get-PnPSiteTemplate", + "Rank": 5, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Rank": 5 + "Id": 668 }, { - "Id": 669, "CommandName": "Get-PnPSiteTemplate", + "Rank": 6, "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Rank": 6 + "Id": 669 }, { - "Id": 670, "CommandName": "Get-PnPSiteTemplate", + "Rank": 7, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Rank": 7 + "Id": 670 }, { - "Id": 671, "CommandName": "Get-PnPSiteTemplate", + "Rank": 8, "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Rank": 8 + "Id": 671 }, { - "Id": 672, "CommandName": "Get-PnPSiteTemplate", + "Rank": 9, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Rank": 9 + "Id": 672 }, { - "Id": 673, "CommandName": "Get-PnPSiteTemplate", + "Rank": 10, "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Rank": 10 + "Id": 673 }, { - "Id": 674, "CommandName": "Get-PnPSiteTemplate", + "Rank": 11, "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Rank": 11 + "Id": 674 }, { - "Id": 675, "CommandName": "Get-PnPSiteTemplate", + "Rank": 12, "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Rank": 12 + "Id": 675 }, { - "Id": 676, "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": 676 }, { - "Id": 677, "CommandName": "Get-PnPSiteTemplate", + "Rank": 14, "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Rank": 14 + "Id": 677 }, { - "Id": 678, "CommandName": "Get-PnPSiteUserInvitations", + "Rank": 1, "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1 + "Id": 678 }, { - "Id": 679, "CommandName": "Get-PnPStorageEntity", + "Rank": 1, "Command": "Get-PnPStorageEntity", - "Rank": 1 + "Id": 679 }, { - "Id": 680, "CommandName": "Get-PnPStorageEntity", + "Rank": 2, "Command": "Get-PnPStorageEntity -Key MyKey", - "Rank": 2 + "Id": 680 }, { - "Id": 681, "CommandName": "Get-PnPStorageEntity", + "Rank": 3, "Command": "Get-PnPStorageEntity -Scope Site", - "Rank": 3 + "Id": 681 }, { - "Id": 682, "CommandName": "Get-PnPStorageEntity", + "Rank": 4, "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 4 + "Id": 682 }, { - "Id": 683, "CommandName": "Get-PnPStoredCredential", + "Rank": 1, "Command": "Get-PnPStoredCredential -Name O365", - "Rank": 1 + "Id": 683 }, { - "Id": 684, "CommandName": "Get-PnPStructuralNavigationCacheSiteState", + "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1 + "Id": 684 }, { - "Id": 685, "CommandName": "Get-PnPStructuralNavigationCacheWebState", + "Rank": 1, "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1 + "Id": 685 }, { - "Id": 686, "CommandName": "Get-PnPSubscribeSharePointNewsDigest", + "Rank": 1, "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Rank": 1 + "Id": 686 }, { - "Id": 687, "CommandName": "Get-PnPSubWeb", + "Rank": 1, "Command": "Get-PnPSubWeb", - "Rank": 1 + "Id": 687 }, { - "Id": 688, "CommandName": "Get-PnPSubWeb", + "Rank": 2, "Command": "Get-PnPSubWeb -Recurse", - "Rank": 2 + "Id": 688 }, { - "Id": 689, "CommandName": "Get-PnPSubWeb", + "Rank": 3, "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Rank": 3 + "Id": 689 }, { - "Id": 690, "CommandName": "Get-PnPSubWeb", + "Rank": 4, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Rank": 4 + "Id": 690 }, { - "Id": 691, "CommandName": "Get-PnPSubWeb", + "Rank": 5, "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Rank": 5 + "Id": 691 }, { - "Id": 692, "CommandName": "Get-PnPSyntexModel", + "Rank": 1, "Command": "Get-PnPSyntexModel", - "Rank": 1 + "Id": 692 }, { - "Id": 693, "CommandName": "Get-PnPSyntexModel", + "Rank": 2, "Command": "Get-PnPSyntexModel -Identity 1", - "Rank": 2 + "Id": 693 }, { - "Id": 694, "CommandName": "Get-PnPSyntexModel", + "Rank": 3, "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Rank": 3 + "Id": 694 }, { - "Id": 695, "CommandName": "Get-PnPSyntexModelPublication", + "Rank": 1, "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Rank": 1 + "Id": 695 }, { - "Id": 696, "CommandName": "Get-PnPTaxonomyItem", + "Rank": 1, "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Rank": 1 + "Id": 696 }, { - "Id": 697, "CommandName": "Get-PnPTeamsApp", + "Rank": 1, "Command": "Get-PnPTeamsApp", - "Rank": 1 + "Id": 697 }, { - "Id": 698, "CommandName": "Get-PnPTeamsApp", + "Rank": 2, "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Rank": 2 + "Id": 698 }, { - "Id": 699, "CommandName": "Get-PnPTeamsApp", + "Rank": 3, "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Rank": 3 + "Id": 699 }, { - "Id": 700, "CommandName": "Get-PnPTeamsChannel", + "Rank": 1, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Rank": 1 + "Id": 700 }, { - "Id": 701, "CommandName": "Get-PnPTeamsChannel", + "Rank": 2, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Rank": 2 + "Id": 701 }, { - "Id": 702, "CommandName": "Get-PnPTeamsChannel", + "Rank": 3, "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 3 + "Id": 702 }, { - "Id": 703, "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 1, "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Rank": 1 + "Id": 703 }, { - "Id": 704, "CommandName": "Get-PnPTeamsChannelFilesFolder", + "Rank": 2, "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Rank": 2 + "Id": 704 }, { - "Id": 705, "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 1, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Rank": 1 + "Id": 705 }, { - "Id": 706, "CommandName": "Get-PnPTeamsChannelMessage", + "Rank": 2, "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Rank": 2 + "Id": 706 }, { - "Id": 707, "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 1, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Rank": 1 + "Id": 707 }, { - "Id": 708, "CommandName": "Get-PnPTeamsChannelMessageReply", + "Rank": 2, "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Rank": 2 + "Id": 708 }, { - "Id": 709, "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 1, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 1 + "Id": 709 }, { - "Id": 710, "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 2, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Rank": 2 + "Id": 710 }, { - "Id": 711, "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 3, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Rank": 3 + "Id": 711 }, { - "Id": 712, "CommandName": "Get-PnPTeamsChannelUser", + "Rank": 4, "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 4 + "Id": 712 }, { - "Id": 713, "CommandName": "Get-PnPTeamsPrimaryChannel", + "Rank": 1, "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Rank": 1 + "Id": 713 }, { - "Id": 714, "CommandName": "Get-PnPTeamsPrimaryChannel", + "Rank": 2, "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Rank": 2 + "Id": 714 }, { - "Id": 715, "CommandName": "Get-PnPTeamsTab", + "Rank": 1, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Rank": 1 + "Id": 715 }, { - "Id": 716, "CommandName": "Get-PnPTeamsTab", + "Rank": 2, "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Rank": 2 + "Id": 716 }, { - "Id": 717, "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": 717 }, { - "Id": 718, "CommandName": "Get-PnPTeamsTab", + "Rank": 4, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Rank": 4 + "Id": 718 }, { - "Id": 719, "CommandName": "Get-PnPTeamsTab", + "Rank": 5, "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Rank": 5 + "Id": 719 }, { - "Id": 720, "CommandName": "Get-PnPTeamsTag", + "Rank": 1, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1 + "Id": 720 }, { - "Id": 721, "CommandName": "Get-PnPTeamsTag", + "Rank": 2, "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 2 + "Id": 721 }, { - "Id": 722, "CommandName": "Get-PnPTeamsTeam", + "Rank": 1, "Command": "Get-PnPTeamsTeam", - "Rank": 1 + "Id": 722 }, { - "Id": 723, "CommandName": "Get-PnPTeamsTeam", + "Rank": 2, "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Rank": 2 + "Id": 723 }, { - "Id": 724, "CommandName": "Get-PnPTeamsTeam", + "Rank": 3, "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Rank": 3 + "Id": 724 }, { - "Id": 725, "CommandName": "Get-PnPTeamsTeam", + "Rank": 4, "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Rank": 4 + "Id": 725 }, { - "Id": 726, "CommandName": "Get-PnPTeamsTeam", + "Rank": 5, "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Rank": 5 + "Id": 726 }, { - "Id": 727, "CommandName": "Get-PnPTeamsUser", + "Rank": 1, "Command": "Get-PnPTeamsUser -Team MyTeam", - "Rank": 1 + "Id": 727 }, { - "Id": 728, "CommandName": "Get-PnPTeamsUser", + "Rank": 2, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Rank": 2 + "Id": 728 }, { - "Id": 729, "CommandName": "Get-PnPTeamsUser", + "Rank": 3, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Rank": 3 + "Id": 729 }, { - "Id": 730, "CommandName": "Get-PnPTeamsUser", + "Rank": 4, "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Rank": 4 + "Id": 730 }, { - "Id": 731, "CommandName": "Get-PnPTemporarilyDisableAppBar", + "Rank": 1, "Command": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1 + "Id": 731 }, { - "Id": 732, "CommandName": "Get-PnPTenant", + "Rank": 1, "Command": "Get-PnPTenant", - "Rank": 1 + "Id": 732 }, { - "Id": 733, "CommandName": "Get-PnPTenantAppCatalogUrl", + "Rank": 1, "Command": "Get-PnPTenantAppCatalogUrl", - "Rank": 1 + "Id": 733 }, { - "Id": 734, "CommandName": "Get-PnPTenantCdnEnabled", + "Rank": 1, "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Rank": 1 + "Id": 734 }, { - "Id": 735, "CommandName": "Get-PnPTenantCdnOrigin", + "Rank": 1, "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Rank": 1 + "Id": 735 }, { - "Id": 736, "CommandName": "Get-PnPTenantCdnPolicies", + "Rank": 1, "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Rank": 1 + "Id": 736 }, { - "Id": 737, "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 1, "Command": "Get-PnPTenantDeletedSite", - "Rank": 1 + "Id": 737 }, { - "Id": 738, "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 2, "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 2 + "Id": 738 }, { - "Id": 739, "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 3, "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Rank": 3 + "Id": 739 }, { - "Id": 740, "CommandName": "Get-PnPTenantDeletedSite", + "Rank": 4, "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Rank": 4 + "Id": 740 }, { - "Id": 741, "CommandName": "Get-PnPTenantId", + "Rank": 1, "Command": "Get-PnPTenantId", - "Rank": 1 + "Id": 741 }, { - "Id": 742, "CommandName": "Get-PnPTenantId", + "Rank": 2, "Command": "Get-PnPTenantId contoso", - "Rank": 2 + "Id": 742 }, { - "Id": 743, "CommandName": "Get-PnPTenantId", + "Rank": 3, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Rank": 3 + "Id": 743 }, { - "Id": 744, "CommandName": "Get-PnPTenantId", + "Rank": 4, "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Rank": 4 + "Id": 744 }, { - "Id": 745, "CommandName": "Get-PnPTenantInstance", + "Rank": 1, "Command": "Get-PnPTenantInstance", - "Rank": 1 + "Id": 745 }, { - "Id": 746, "CommandName": "Get-PnPTenantRecycleBinItem", + "Rank": 1, "Command": "Get-PnPTenantRecycleBinItem", - "Rank": 1 + "Id": 746 }, { - "Id": 747, "CommandName": "Get-PnPTenantSequence", + "Rank": 1, "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Rank": 1 + "Id": 747 }, { - "Id": 748, "CommandName": "Get-PnPTenantSequence", + "Rank": 2, "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Rank": 2 + "Id": 748 }, { - "Id": 749, "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 1, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Rank": 1 + "Id": 749 }, { - "Id": 750, "CommandName": "Get-PnPTenantSequenceSite", + "Rank": 2, "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Rank": 2 + "Id": 750 }, { - "Id": 751, "CommandName": "Get-PnPTenantSite", + "Rank": 1, "Command": "Get-PnPTenantSite", - "Rank": 1 + "Id": 751 }, { - "Id": 752, "CommandName": "Get-PnPTenantSite", + "Rank": 2, "Command": "Get-PnPTenantSite -Detailed", - "Rank": 2 + "Id": 752 }, { - "Id": 753, "CommandName": "Get-PnPTenantSite", + "Rank": 3, "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Rank": 3 + "Id": 753 }, { - "Id": 754, "CommandName": "Get-PnPTenantSite", + "Rank": 4, "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Rank": 4 + "Id": 754 }, { - "Id": 755, "CommandName": "Get-PnPTenantSite", + "Rank": 5, "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Rank": 5 + "Id": 755 }, { - "Id": 756, "CommandName": "Get-PnPTenantSite", + "Rank": 6, "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Rank": 6 + "Id": 756 }, { - "Id": 757, "CommandName": "Get-PnPTenantSite", + "Rank": 7, "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Rank": 7 + "Id": 757 }, { - "Id": 758, "CommandName": "Get-PnPTenantSite", + "Rank": 8, "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Rank": 8 + "Id": 758 }, { - "Id": 759, "CommandName": "Get-PnPTenantSite", + "Rank": 9, "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Rank": 9 + "Id": 759 }, { - "Id": 760, "CommandName": "Get-PnPTenantSyncClientRestriction", + "Rank": 1, "Command": "Get-PnPTenantSyncClientRestriction", - "Rank": 1 + "Id": 760 }, { - "Id": 761, "CommandName": "Get-PnPTenantTemplate", + "Rank": 1, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Rank": 1 + "Id": 761 }, { - "Id": 762, "CommandName": "Get-PnPTenantTemplate", + "Rank": 2, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Rank": 2 + "Id": 762 }, { - "Id": 763, "CommandName": "Get-PnPTenantTemplate", + "Rank": 3, "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Rank": 3 + "Id": 763 }, { - "Id": 764, "CommandName": "Get-PnPTenantTheme", + "Rank": 1, "Command": "Get-PnPTenantTheme", - "Rank": 1 + "Id": 764 }, { - "Id": 765, "CommandName": "Get-PnPTenantTheme", + "Rank": 2, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 2 + "Id": 765 }, { - "Id": 766, "CommandName": "Get-PnPTenantTheme", + "Rank": 3, "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Rank": 3 + "Id": 766 }, { - "Id": 767, "CommandName": "Get-PnPTerm", + "Rank": 1, "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 1 + "Id": 767 }, { - "Id": 768, "CommandName": "Get-PnPTerm", + "Rank": 2, "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "Id": 768 }, { - "Id": 769, "CommandName": "Get-PnPTerm", + "Rank": 3, "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3 + "Id": 769 }, { - "Id": 770, "CommandName": "Get-PnPTerm", + "Rank": 4, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Rank": 4 + "Id": 770 }, { - "Id": 771, "CommandName": "Get-PnPTerm", + "Rank": 5, "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Rank": 5 + "Id": 771 }, { - "Id": 772, "CommandName": "Get-PnPTermGroup", + "Rank": 1, "Command": "Get-PnPTermGroup", - "Rank": 1 + "Id": 772 }, { - "Id": 773, "CommandName": "Get-PnPTermGroup", + "Rank": 2, "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Rank": 2 + "Id": 773 }, { - "Id": 774, "CommandName": "Get-PnPTermGroup", + "Rank": 3, "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Rank": 3 + "Id": 774 }, { - "Id": 775, "CommandName": "Get-PnPTermLabel", + "Rank": 1, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Rank": 1 + "Id": 775 }, { - "Id": 776, "CommandName": "Get-PnPTermLabel", + "Rank": 2, "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Rank": 2 + "Id": 776 }, { - "Id": 777, "CommandName": "Get-PnPTermLabel", + "Rank": 3, "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 3 + "Id": 777 }, { - "Id": 778, "CommandName": "Get-PnPTermSet", + "Rank": 1, "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Rank": 1 + "Id": 778 }, { - "Id": 779, "CommandName": "Get-PnPTermSet", + "Rank": 2, "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "Id": 779 }, { - "Id": 780, "CommandName": "Get-PnPTermSet", + "Rank": 3, "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Rank": 3 + "Id": 780 }, { - "Id": 781, "CommandName": "Get-PnPTheme", + "Rank": 1, "Command": "Get-PnPTheme", - "Rank": 1 + "Id": 781 }, { - "Id": 782, "CommandName": "Get-PnPTheme", + "Rank": 2, "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Rank": 2 + "Id": 782 }, { - "Id": 783, "CommandName": "Get-PnPTimeZoneId", + "Rank": 1, "Command": "Get-PnPTimeZoneId", - "Rank": 1 + "Id": 783 }, { - "Id": 784, "CommandName": "Get-PnPTimeZoneId", + "Rank": 2, "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Rank": 2 + "Id": 784 }, { - "Id": 785, "CommandName": "Get-PnPUnfurlLink", + "Rank": 1, "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Rank": 1 + "Id": 785 }, { - "Id": 786, "CommandName": "Get-PnPUnifiedAuditLog", + "Rank": 1, "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Rank": 1 + "Id": 786 }, { - "Id": 787, "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 1, "Command": "Get-PnPUPABulkImportStatus", - "Rank": 1 + "Id": 787 }, { - "Id": 788, "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 2, "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Rank": 2 + "Id": 788 }, { - "Id": 789, "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 3, "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Rank": 3 + "Id": 789 }, { - "Id": 790, "CommandName": "Get-PnPUPABulkImportStatus", + "Rank": 4, "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Rank": 4 + "Id": 790 }, { - "Id": 791, "CommandName": "Get-PnPUser", + "Rank": 1, "Command": "Get-PnPUser", - "Rank": 1 + "Id": 791 }, { - "Id": 792, "CommandName": "Get-PnPUser", + "Rank": 2, "Command": "Get-PnPUser -Identity 23", - "Rank": 2 + "Id": 792 }, { - "Id": 793, "CommandName": "Get-PnPUser", + "Rank": 3, "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Rank": 3 + "Id": 793 }, { - "Id": 794, "CommandName": "Get-PnPUser", + "Rank": 4, "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Rank": 4 + "Id": 794 }, { - "Id": 795, "CommandName": "Get-PnPUser", + "Rank": 5, "Command": "Get-PnPUser -WithRightsAssigned", - "Rank": 5 + "Id": 795 }, { - "Id": 796, "CommandName": "Get-PnPUser", + "Rank": 6, "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Rank": 6 + "Id": 796 }, { - "Id": 797, "CommandName": "Get-PnPUser", + "Rank": 7, "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Rank": 7 + "Id": 797 }, { - "Id": 798, "CommandName": "Get-PnPUserOneDriveQuota", + "Rank": 1, "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Rank": 1 + "Id": 798 }, { - "Id": 799, "CommandName": "Get-PnPUserProfileProperty", + "Rank": 1, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Rank": 1 + "Id": 799 }, { - "Id": 800, "CommandName": "Get-PnPUserProfileProperty", + "Rank": 2, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Rank": 2 + "Id": 800 }, { - "Id": 801, "CommandName": "Get-PnPUserProfileProperty", + "Rank": 3, "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Rank": 3 + "Id": 801 }, { - "Id": 802, "CommandName": "Get-PnPView", + "Rank": 1, "Command": "Get-PnPView -List \"Demo List\"", - "Rank": 1 + "Id": 802 }, { - "Id": 803, "CommandName": "Get-PnPView", + "Rank": 2, "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Rank": 2 + "Id": 803 }, { - "Id": 804, "CommandName": "Get-PnPView", + "Rank": 3, "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Rank": 3 + "Id": 804 }, { - "Id": 805, "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 1, "Command": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1 + "Id": 805 }, { - "Id": 806, "CommandName": "Get-PnPVivaConnectionsDashboardACE", + "Rank": 2, "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 2 + "Id": 806 }, { - "Id": 807, "CommandName": "Get-PnPWeb", + "Rank": 1, "Command": "Get-PnPWeb", - "Rank": 1 + "Id": 807 }, { - "Id": 808, "CommandName": "Get-PnPWebHeader", + "Rank": 1, "Command": "Get-PnPWebHeader", - "Rank": 1 + "Id": 808 }, { - "Id": 809, "CommandName": "Get-PnPWebhookSubscriptions", + "Rank": 1, "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Rank": 1 + "Id": 809 }, { - "Id": 810, "CommandName": "Get-PnPWebPart", + "Rank": 1, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Rank": 1 + "Id": 810 }, { - "Id": 811, "CommandName": "Get-PnPWebPart", + "Rank": 2, "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 2 + "Id": 811 }, { - "Id": 812, "CommandName": "Get-PnPWebPartProperty", + "Rank": 1, "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Rank": 1 + "Id": 812 }, { - "Id": 813, "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": 813 }, { - "Id": 814, "CommandName": "Get-PnPWebPartXml", + "Rank": 1, "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1 + "Id": 814 }, { - "Id": 815, "CommandName": "Get-PnPWebTemplates", + "Rank": 1, "Command": "Get-PnPWebTemplates", - "Rank": 1 + "Id": 815 }, { - "Id": 816, "CommandName": "Get-PnPWebTemplates", + "Rank": 2, "Command": "Get-PnPWebTemplates -LCID 1033", - "Rank": 2 + "Id": 816 }, { - "Id": 817, "CommandName": "Get-PnPWebTemplates", + "Rank": 3, "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Rank": 3 + "Id": 817 }, { - "Id": 818, "CommandName": "Get-PnPWikiPageContent", + "Rank": 1, "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Rank": 1 + "Id": 818 }, { - "Id": 819, "CommandName": "Grant-PnPAzureADAppSitePermission", + "Rank": 1, "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Rank": 1 + "Id": 819 }, { - "Id": 820, "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": 820 }, { - "Id": 821, "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": 821 }, { - "Id": 822, "CommandName": "Grant-PnPSiteDesignRights", + "Rank": 1, "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "Id": 822 }, { - "Id": 823, "CommandName": "Grant-PnPTenantServicePrincipalPermission", + "Rank": 1, "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1 + "Id": 823 }, { - "Id": 824, "CommandName": "Import-PnPTaxonomy", + "Rank": 1, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Rank": 1 + "Id": 824 }, { - "Id": 825, "CommandName": "Import-PnPTaxonomy", + "Rank": 2, "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Rank": 2 + "Id": 825 }, { - "Id": 826, "CommandName": "Import-PnPTaxonomy", + "Rank": 3, "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Rank": 3 + "Id": 826 }, { - "Id": 827, "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 1, "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Rank": 1 + "Id": 827 }, { - "Id": 828, "CommandName": "Import-PnPTermGroupFromXml", + "Rank": 2, "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Rank": 2 + "Id": 828 }, { - "Id": 829, "CommandName": "Import-PnPTermSet", + "Rank": 1, "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Rank": 1 + "Id": 829 }, { - "Id": 830, "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": 830 }, { - "Id": 831, "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": 831 }, { - "Id": 832, "CommandName": "Install-PnPApp", + "Rank": 1, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Id": 832 }, { - "Id": 833, "CommandName": "Install-PnPApp", + "Rank": 2, "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "Id": 833 }, { - "Id": 834, "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": 834 }, { - "Id": 835, "CommandName": "Invoke-PnPGraphMethod", + "Rank": 2, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Rank": 2 + "Id": 835 }, { - "Id": 836, "CommandName": "Invoke-PnPGraphMethod", + "Rank": 3, "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Rank": 3 + "Id": 836 }, { - "Id": 837, "CommandName": "Invoke-PnPGraphMethod", + "Rank": 4, "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Rank": 4 + "Id": 837 }, { - "Id": 838, "CommandName": "Invoke-PnPGraphMethod", + "Rank": 5, "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Rank": 5 + "Id": 838 }, { - "Id": 839, "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": 839 }, { - "Id": 840, "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": 840 }, { - "Id": 841, "CommandName": "Invoke-PnPListDesign", + "Rank": 1, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Id": 841 }, { - "Id": 842, "CommandName": "Invoke-PnPListDesign", + "Rank": 2, "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2 + "Id": 842 }, { - "Id": 843, "CommandName": "Invoke-PnPQuery", + "Rank": 1, "Command": "Invoke-PnPQuery -RetryCount 5", - "Rank": 1 + "Id": 843 }, { - "Id": 844, "CommandName": "Invoke-PnPSiteDesign", + "Rank": 1, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Id": 844 }, { - "Id": 845, "CommandName": "Invoke-PnPSiteDesign", + "Rank": 2, "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Rank": 2 + "Id": 845 }, { - "Id": 846, "CommandName": "Invoke-PnPSiteScript", + "Rank": 1, "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Rank": 1 + "Id": 846 }, { - "Id": 847, "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": 847 }, { - "Id": 848, "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": 848 }, { - "Id": 849, "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": 849 }, { - "Id": 850, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 1, "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Rank": 1 + "Id": 850 }, { - "Id": 851, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 2, "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Rank": 2 + "Id": 851 }, { - "Id": 852, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 3, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3 + "Id": 852 }, { - "Id": 853, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 4, "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Rank": 4 + "Id": 853 }, { - "Id": 854, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 5, "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Rank": 5 + "Id": 854 }, { - "Id": 855, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 6, "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Rank": 6 + "Id": 855 }, { - "Id": 856, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 7, "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Rank": 7 + "Id": 856 }, { - "Id": 857, "CommandName": "Invoke-PnPSiteTemplate", + "Rank": 8, "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Rank": 8 + "Id": 857 }, { - "Id": 858, "CommandName": "Invoke-PnPSPRestMethod", + "Rank": 1, "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Rank": 1 + "Id": 858 }, { - "Id": 859, "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 1, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Rank": 1 + "Id": 859 }, { - "Id": 860, "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 2, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Rank": 2 + "Id": 860 }, { - "Id": 861, "CommandName": "Invoke-PnPTenantTemplate", + "Rank": 3, "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Rank": 3 + "Id": 861 }, { - "Id": 862, "CommandName": "Invoke-PnPWebAction", + "Rank": 1, "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Rank": 1 + "Id": 862 }, { - "Id": 863, "CommandName": "Invoke-PnPWebAction", + "Rank": 2, "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Rank": 2 + "Id": 863 }, { - "Id": 864, "CommandName": "Measure-PnPList", + "Rank": 1, "Command": "Measure-PnPList \"Documents\"", - "Rank": 1 + "Id": 864 }, { - "Id": 865, "CommandName": "Measure-PnPList", + "Rank": 2, "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Rank": 2 + "Id": 865 }, { - "Id": 866, "CommandName": "Measure-PnPWeb", + "Rank": 1, "Command": "Measure-PnPWeb", - "Rank": 1 + "Id": 866 }, { - "Id": 867, "CommandName": "Measure-PnPWeb", + "Rank": 2, "Command": "Measure-PnPWeb $web -Recursive", - "Rank": 2 + "Id": 867 }, { - "Id": 868, "CommandName": "Move-PnPFile", + "Rank": 1, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Rank": 1 + "Id": 868 }, { - "Id": 869, "CommandName": "Move-PnPFile", + "Rank": 2, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Rank": 2 + "Id": 869 }, { - "Id": 870, "CommandName": "Move-PnPFile", + "Rank": 3, "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 3 + "Id": 870 }, { - "Id": 871, "CommandName": "Move-PnPFile", + "Rank": 4, "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Rank": 4 + "Id": 871 }, { - "Id": 872, "CommandName": "Move-PnPFolder", + "Rank": 1, "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Rank": 1 + "Id": 872 }, { - "Id": 873, "CommandName": "Move-PnPFolder", + "Rank": 2, "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Rank": 2 + "Id": 873 }, { - "Id": 874, "CommandName": "Move-PnPListItemToRecycleBin", + "Rank": 1, "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1 + "Id": 874 }, { - "Id": 875, "CommandName": "Move-PnPPageComponent", + "Rank": 1, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Rank": 1 + "Id": 875 }, { - "Id": 876, "CommandName": "Move-PnPPageComponent", + "Rank": 2, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Rank": 2 + "Id": 876 }, { - "Id": 877, "CommandName": "Move-PnPPageComponent", + "Rank": 3, "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Rank": 3 + "Id": 877 }, { - "Id": 878, "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": 878 }, { - "Id": 879, "CommandName": "Move-PnpRecycleBinItem", + "Rank": 1, "Command": "Move-PnPRecycleBinItem", - "Rank": 1 + "Id": 879 }, { - "Id": 880, "CommandName": "Move-PnpRecycleBinItem", + "Rank": 2, "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Rank": 2 + "Id": 880 }, { - "Id": 881, "CommandName": "Move-PnpRecycleBinItem", + "Rank": 3, "Command": "Move-PnPRecycleBinItem -Force", - "Rank": 3 + "Id": 881 }, { - "Id": 882, "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": 882 }, { - "Id": 883, "CommandName": "Move-PnPTerm", + "Rank": 2, "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Rank": 2 + "Id": 883 }, { - "Id": 884, "CommandName": "Move-PnPTerm", + "Rank": 3, "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Rank": 3 + "Id": 884 }, { - "Id": 885, "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": 885 }, { - "Id": 886, "CommandName": "Move-PnPTermSet", + "Rank": 2, "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Rank": 2 + "Id": 886 }, { - "Id": 887, "CommandName": "New-PnPAzureADGroup", + "Rank": 1, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1 + "Id": 887 }, { - "Id": 888, "CommandName": "New-PnPAzureADGroup", + "Rank": 2, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Rank": 2 + "Id": 888 }, { - "Id": 889, "CommandName": "New-PnPAzureADGroup", + "Rank": 3, "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Rank": 3 + "Id": 889 }, { - "Id": 890, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 1, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Rank": 1 + "Id": 890 }, { - "Id": 891, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", + "Rank": 2, "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Rank": 2 + "Id": 891 }, { - "Id": 892, "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": 892 }, { - "Id": 893, "CommandName": "New-PnPAzureCertificate", + "Rank": 1, "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Rank": 1 + "Id": 893 }, { - "Id": 894, "CommandName": "New-PnPAzureCertificate", + "Rank": 2, "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Rank": 2 + "Id": 894 }, { - "Id": 895, "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": 895 }, { - "Id": 896, "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": 896 }, { - "Id": 897, "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": 897 }, { - "Id": 898, "CommandName": "New-PnPGroup", + "Rank": 1, "Command": "New-PnPGroup -Title \"My Site Users\"", - "Rank": 1 + "Id": 898 }, { - "Id": 899, "CommandName": "New-PnPList", + "Rank": 1, "Command": "New-PnPList -Title Announcements -Template Announcements", - "Rank": 1 + "Id": 899 }, { - "Id": 900, "CommandName": "New-PnPList", + "Rank": 2, "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Rank": 2 + "Id": 900 }, { - "Id": 901, "CommandName": "New-PnPList", + "Rank": 3, "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Rank": 3 + "Id": 901 }, { - "Id": 902, "CommandName": "New-PnPMicrosoft365Group", + "Rank": 1, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Rank": 1 + "Id": 902 }, { - "Id": 903, "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": 903 }, { - "Id": 904, "CommandName": "New-PnPMicrosoft365Group", + "Rank": 3, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Rank": 3 + "Id": 904 }, { - "Id": 905, "CommandName": "New-PnPMicrosoft365Group", + "Rank": 4, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Rank": 4 + "Id": 905 }, { - "Id": 906, "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": 906 }, { - "Id": 907, "CommandName": "New-PnPMicrosoft365Group", + "Rank": 6, "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6 + "Id": 907 }, { - "Id": 908, "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": 908 }, { - "Id": 909, "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": 909 }, { - "Id": 910, "CommandName": "New-PnPPersonalSite", + "Rank": 1, "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Rank": 1 + "Id": 910 }, { - "Id": 911, "CommandName": "New-PnPPlannerPlan", + "Rank": 1, "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Rank": 1 + "Id": 911 }, { - "Id": 912, "CommandName": "New-PnPSdnProvider", + "Rank": 1, "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Rank": 1 + "Id": 912 }, { - "Id": 913, "CommandName": "New-PnPSite", + "Rank": 1, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 1 + "Id": 913 }, { - "Id": 914, "CommandName": "New-PnPSite", + "Rank": 2, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Rank": 2 + "Id": 914 }, { - "Id": 915, "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": 915 }, { - "Id": 916, "CommandName": "New-PnPSite", + "Rank": 4, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 4 + "Id": 916 }, { - "Id": 917, "CommandName": "New-PnPSite", + "Rank": 5, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 5 + "Id": 917 }, { - "Id": 918, "CommandName": "New-PnPSite", + "Rank": 6, "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 6 + "Id": 918 }, { - "Id": 919, "CommandName": "New-PnPSite", + "Rank": 7, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Rank": 7 + "Id": 919 }, { - "Id": 920, "CommandName": "New-PnPSite", + "Rank": 8, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Rank": 8 + "Id": 920 }, { - "Id": 921, "CommandName": "New-PnPSite", + "Rank": 9, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Rank": 9 + "Id": 921 }, { - "Id": 922, "CommandName": "New-PnPSite", + "Rank": 10, "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Rank": 10 + "Id": 922 }, { - "Id": 923, "CommandName": "New-PnPSite", + "Rank": 11, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Rank": 11 + "Id": 923 }, { - "Id": 924, "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": 924 }, { - "Id": 925, "CommandName": "New-PnPSite", + "Rank": 13, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Rank": 13 + "Id": 925 }, { - "Id": 926, "CommandName": "New-PnPSite", + "Rank": 14, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Rank": 14 + "Id": 926 }, { - "Id": 927, "CommandName": "New-PnPSite", + "Rank": 15, "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Rank": 15 + "Id": 927 }, { - "Id": 928, "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": 928 }, { - "Id": 929, "CommandName": "New-PnPSiteCollectionTermStore", + "Rank": 1, "Command": "New-PnPSiteCollectionTermStore", - "Rank": 1 + "Id": 929 }, { - "Id": 930, "CommandName": "New-PnPSiteGroup", + "Rank": 1, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Rank": 1 + "Id": 930 }, { - "Id": 931, "CommandName": "New-PnPSiteGroup", + "Rank": 2, "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Rank": 2 + "Id": 931 }, { - "Id": 932, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 1, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Rank": 1 + "Id": 932 }, { - "Id": 933, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 2, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Rank": 2 + "Id": 933 }, { - "Id": 934, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 3, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Rank": 3 + "Id": 934 }, { - "Id": 935, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 4, "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Rank": 4 + "Id": 935 }, { - "Id": 936, "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": 936 }, { - "Id": 937, "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": 937 }, { - "Id": 938, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 7, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Rank": 7 + "Id": 938 }, { - "Id": 939, "CommandName": "New-PnPSiteTemplateFromFolder", + "Rank": 8, "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Rank": 8 + "Id": 939 }, { - "Id": 940, "CommandName": "New-PnPTeamsApp", + "Rank": 1, "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Rank": 1 + "Id": 940 }, { - "Id": 941, "CommandName": "New-PnPTeamsTeam", + "Rank": 1, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Rank": 1 + "Id": 941 }, { - "Id": 942, "CommandName": "New-PnPTeamsTeam", + "Rank": 2, "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Rank": 2 + "Id": 942 }, { - "Id": 943, "CommandName": "New-PnPTeamsTeam", + "Rank": 3, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Rank": 3 + "Id": 943 }, { - "Id": 944, "CommandName": "New-PnPTeamsTeam", + "Rank": 4, "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Rank": 4 + "Id": 944 }, { - "Id": 945, "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": 945 }, { - "Id": 946, "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": 946 }, { - "Id": 947, "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": 947 }, { - "Id": 948, "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": 948 }, { - "Id": 949, "CommandName": "New-PnPTerm", + "Rank": 1, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Rank": 1 + "Id": 949 }, { - "Id": 950, "CommandName": "New-PnPTerm", + "Rank": 2, "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2 + "Id": 950 }, { - "Id": 951, "CommandName": "New-PnPTermGroup", + "Rank": 1, "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Rank": 1 + "Id": 951 }, { - "Id": 952, "CommandName": "New-PnPTermLabel", + "Rank": 1, "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Rank": 1 + "Id": 952 }, { - "Id": 953, "CommandName": "New-PnPTermSet", + "Rank": 1, "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Rank": 1 + "Id": 953 }, { - "Id": 954, "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": 954 }, { - "Id": 955, "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": 955 }, { - "Id": 956, "CommandName": "New-PnPUser", + "Rank": 1, "Command": "New-PnPUser -LoginName user@company.com", - "Rank": 1 + "Id": 956 }, { - "Id": 957, "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": 957 }, { - "Id": 958, "CommandName": "Publish-PnPApp", + "Rank": 1, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Rank": 1 + "Id": 958 }, { - "Id": 959, "CommandName": "Publish-PnPApp", + "Rank": 2, "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Rank": 2 + "Id": 959 }, { - "Id": 960, "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": 960 }, { - "Id": 961, "CommandName": "Publish-PnPContentType", + "Rank": 1, "Command": "Publish-PnPContentType -ContentType 0x0101", - "Rank": 1 + "Id": 961 }, { - "Id": 962, "CommandName": "Publish-PnPSyntexModel", + "Rank": 1, "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1 + "Id": 962 }, { - "Id": 963, "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": 963 }, { - "Id": 964, "CommandName": "Read-PnPSiteTemplate", + "Rank": 1, "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Rank": 1 + "Id": 964 }, { - "Id": 965, "CommandName": "Read-PnPSiteTemplate", + "Rank": 2, "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Rank": 2 + "Id": 965 }, { - "Id": 966, "CommandName": "Read-PnPSiteTemplate", + "Rank": 3, "Command": "Read-PnPSiteTemplate -Xml $xml", - "Rank": 3 + "Id": 966 }, { - "Id": 967, "CommandName": "Read-PnPTenantTemplate", + "Rank": 1, "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Rank": 1 + "Id": 967 }, { - "Id": 968, "CommandName": "Register-PnPAppCatalogSite", + "Rank": 1, "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Rank": 1 + "Id": 968 }, { - "Id": 969, "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": 969 }, { - "Id": 970, "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": 970 }, { - "Id": 971, "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": 971 }, { - "Id": 972, "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": 972 }, { - "Id": 973, "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": 973 }, { - "Id": 974, "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": 974 }, { - "Id": 975, "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": 975 }, { - "Id": 976, "CommandName": "Register-PnPHubSite", + "Rank": 1, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1 + "Id": 976 }, { - "Id": 977, "CommandName": "Register-PnPHubSite", + "Rank": 2, "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Rank": 2 + "Id": 977 }, { - "Id": 978, "CommandName": "Register-PnPManagementShellAccess", + "Rank": 1, "Command": "Register-PnPManagementShellAccess", - "Rank": 1 + "Id": 978 }, { - "Id": 979, "CommandName": "Register-PnPManagementShellAccess", + "Rank": 2, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Rank": 2 + "Id": 979 }, { - "Id": 980, "CommandName": "Register-PnPManagementShellAccess", + "Rank": 3, "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Rank": 3 + "Id": 980 }, { - "Id": 981, "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Rank": 1, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Rank": 1 + "Id": 981 }, { - "Id": 982, "CommandName": "Remove-PnPAdaptiveScopeProperty", + "Rank": 2, "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Rank": 2 + "Id": 982 }, { - "Id": 983, "CommandName": "Remove-PnPAlert", + "Rank": 1, "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Rank": 1 + "Id": 983 }, { - "Id": 984, "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": 984 }, { - "Id": 985, "CommandName": "Remove-PnPApp", + "Rank": 1, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Id": 985 }, { - "Id": 986, "CommandName": "Remove-PnPApp", + "Rank": 2, "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "Id": 986 }, { - "Id": 987, "CommandName": "Remove-PnPApplicationCustomizer", + "Rank": 1, "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1 + "Id": 987 }, { - "Id": 988, "CommandName": "Remove-PnPApplicationCustomizer", + "Rank": 2, "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2 + "Id": 988 }, { - "Id": 989, "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 1, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Rank": 1 + "Id": 989 }, { - "Id": 990, "CommandName": "Remove-PnPAvailableSiteClassification", + "Rank": 2, "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 2 + "Id": 990 }, { - "Id": 991, "CommandName": "Remove-PnPAzureADApp", + "Rank": 1, "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Rank": 1 + "Id": 991 }, { - "Id": 992, "CommandName": "Remove-PnPAzureADApp", + "Rank": 2, "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Rank": 2 + "Id": 992 }, { - "Id": 993, "CommandName": "Remove-PnPAzureADGroup", + "Rank": 1, "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Rank": 1 + "Id": 993 }, { - "Id": 994, "CommandName": "Remove-PnPAzureADGroup", + "Rank": 2, "Command": "Remove-PnPAzureADGroup -Identity $group", - "Rank": 2 + "Id": 994 }, { - "Id": 995, "CommandName": "Remove-PnPAzureADGroupMember", + "Rank": 1, "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 995 }, { - "Id": 996, "CommandName": "Remove-PnPAzureADGroupOwner", + "Rank": 1, "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 996 }, { - "Id": 997, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 1, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Rank": 1 + "Id": 997 }, { - "Id": 998, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 2, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Rank": 2 + "Id": 998 }, { - "Id": 999, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 3, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Rank": 3 + "Id": 999 }, { - "Id": 1000, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", + "Rank": 4, "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Rank": 4 + "Id": 1000 }, { - "Id": 1001, "CommandName": "Remove-PnPContentType", + "Rank": 1, "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Rank": 1 + "Id": 1001 }, { - "Id": 1002, "CommandName": "Remove-PnPContentType", + "Rank": 2, "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Rank": 2 + "Id": 1002 }, { - "Id": 1003, "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 1, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Rank": 1 + "Id": 1003 }, { - "Id": 1004, "CommandName": "Remove-PnPContentTypeFromDocumentSet", + "Rank": 2, "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Rank": 2 + "Id": 1004 }, { - "Id": 1005, "CommandName": "Remove-PnPContentTypeFromList", + "Rank": 1, "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Rank": 1 + "Id": 1005 }, { - "Id": 1006, "CommandName": "Remove-PnPCustomAction", + "Rank": 1, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1 + "Id": 1006 }, { - "Id": 1007, "CommandName": "Remove-PnPCustomAction", + "Rank": 2, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Rank": 2 + "Id": 1007 }, { - "Id": 1008, "CommandName": "Remove-PnPCustomAction", + "Rank": 3, "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Rank": 3 + "Id": 1008 }, { - "Id": 1009, "CommandName": "Remove-PnPDeletedMicrosoft365Group", + "Rank": 1, "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1 + "Id": 1009 }, { - "Id": 1010, "CommandName": "Remove-PnPEventReceiver", + "Rank": 1, "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 1 + "Id": 1010 }, { - "Id": 1011, "CommandName": "Remove-PnPEventReceiver", + "Rank": 2, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Rank": 2 + "Id": 1011 }, { - "Id": 1012, "CommandName": "Remove-PnPEventReceiver", + "Rank": 3, "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Rank": 3 + "Id": 1012 }, { - "Id": 1013, "CommandName": "Remove-PnPEventReceiver", + "Rank": 4, "Command": "Remove-PnPEventReceiver -List ProjectList", - "Rank": 4 + "Id": 1013 }, { - "Id": 1014, "CommandName": "Remove-PnPEventReceiver", + "Rank": 5, "Command": "Remove-PnPEventReceiver", - "Rank": 5 + "Id": 1014 }, { - "Id": 1015, "CommandName": "Remove-PnPEventReceiver", + "Rank": 6, "Command": "Remove-PnPEventReceiver -Scope Site", - "Rank": 6 + "Id": 1015 }, { - "Id": 1016, "CommandName": "Remove-PnPEventReceiver", + "Rank": 7, "Command": "Remove-PnPEventReceiver -Scope Web", - "Rank": 7 + "Id": 1016 }, { - "Id": 1017, "CommandName": "Remove-PnPEventReceiver", + "Rank": 8, "Command": "Remove-PnPEventReceiver -Scope All", - "Rank": 8 + "Id": 1017 }, { - "Id": 1018, "CommandName": "Remove-PnPField", + "Rank": 1, "Command": "Remove-PnPField -Identity \"Speakers\"", - "Rank": 1 + "Id": 1018 }, { - "Id": 1019, "CommandName": "Remove-PnPField", + "Rank": 2, "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Rank": 2 + "Id": 1019 }, { - "Id": 1020, "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 1, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Rank": 1 + "Id": 1020 }, { - "Id": 1021, "CommandName": "Remove-PnPFieldFromContentType", + "Rank": 2, "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Rank": 2 + "Id": 1021 }, { - "Id": 1022, "CommandName": "Remove-PnPFile", + "Rank": 1, "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Rank": 1 + "Id": 1022 }, { - "Id": 1023, "CommandName": "Remove-PnPFile", + "Rank": 2, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Rank": 2 + "Id": 1023 }, { - "Id": 1024, "CommandName": "Remove-PnPFile", + "Rank": 3, "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Rank": 3 + "Id": 1024 }, { - "Id": 1025, "CommandName": "Remove-PnPFileFromSiteTemplate", + "Rank": 1, "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Rank": 1 + "Id": 1025 }, { - "Id": 1026, "CommandName": "Remove-PnPFileSharingLink", + "Rank": 1, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Rank": 1 + "Id": 1026 }, { - "Id": 1027, "CommandName": "Remove-PnPFileSharingLink", + "Rank": 2, "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Rank": 2 + "Id": 1027 }, { - "Id": 1028, "CommandName": "Remove-PnPFileVersion", + "Rank": 1, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1 + "Id": 1028 }, { - "Id": 1029, "CommandName": "Remove-PnPFileVersion", + "Rank": 2, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 2 + "Id": 1029 }, { - "Id": 1030, "CommandName": "Remove-PnPFileVersion", + "Rank": 3, "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Rank": 3 + "Id": 1030 }, { - "Id": 1031, "CommandName": "Remove-PnPFolder", + "Rank": 1, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Rank": 1 + "Id": 1031 }, { - "Id": 1032, "CommandName": "Remove-PnPFolder", + "Rank": 2, "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Rank": 2 + "Id": 1032 }, { - "Id": 1033, "CommandName": "Remove-PnPFolderSharingLink", + "Rank": 1, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Rank": 1 + "Id": 1033 }, { - "Id": 1034, "CommandName": "Remove-PnPFolderSharingLink", + "Rank": 2, "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Rank": 2 + "Id": 1034 }, { - "Id": 1035, "CommandName": "Remove-PnPGraphSubscription", + "Rank": 1, "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Rank": 1 + "Id": 1035 }, { - "Id": 1036, "CommandName": "Remove-PnPGroup", + "Rank": 1, "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Rank": 1 + "Id": 1036 }, { - "Id": 1037, "CommandName": "Remove-PnPGroupMember", + "Rank": 1, "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Rank": 1 + "Id": 1037 }, { - "Id": 1038, "CommandName": "Remove-PnPHomeSite", + "Rank": 1, "Command": "Remove-PnPHomeSite", - "Rank": 1 + "Id": 1038 }, { - "Id": 1039, "CommandName": "Remove-PnPHubSiteAssociation", + "Rank": 1, "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1 + "Id": 1039 }, { - "Id": 1040, "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 1, "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Rank": 1 + "Id": 1040 }, { - "Id": 1041, "CommandName": "Remove-PnPHubToHubAssociation", + "Rank": 2, "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Rank": 2 + "Id": 1041 }, { - "Id": 1042, "CommandName": "Remove-PnPIndexedProperty", + "Rank": 1, "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Rank": 1 + "Id": 1042 }, { - "Id": 1043, "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 1, "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Rank": 1 + "Id": 1043 }, { - "Id": 1044, "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 2, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Rank": 2 + "Id": 1044 }, { - "Id": 1045, "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 3, "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Rank": 3 + "Id": 1045 }, { - "Id": 1046, "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 4, "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Rank": 4 + "Id": 1046 }, { - "Id": 1047, "CommandName": "Remove-PnPJavaScriptLink", + "Rank": 5, "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Rank": 5 + "Id": 1047 }, { - "Id": 1048, "CommandName": "Remove-PnPKnowledgeHubSite", + "Rank": 1, "Command": "Remove-PnPKnowledgeHubSite", - "Rank": 1 + "Id": 1048 }, { - "Id": 1049, "CommandName": "Remove-PnPList", + "Rank": 1, "Command": "Remove-PnPList -Identity Announcements", - "Rank": 1 + "Id": 1049 }, { - "Id": 1050, "CommandName": "Remove-PnPList", + "Rank": 2, "Command": "Remove-PnPList -Identity Announcements -Force", - "Rank": 2 + "Id": 1050 }, { - "Id": 1051, "CommandName": "Remove-PnPList", + "Rank": 3, "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Rank": 3 + "Id": 1051 }, { - "Id": 1052, "CommandName": "Remove-PnPList", + "Rank": 4, "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Rank": 4 + "Id": 1052 }, { - "Id": 1053, "CommandName": "Remove-PnPListDesign", + "Rank": 1, "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Id": 1053 }, { - "Id": 1054, "CommandName": "Remove-PnPListItem", + "Rank": 1, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Rank": 1 + "Id": 1054 }, { - "Id": 1055, "CommandName": "Remove-PnPListItem", + "Rank": 2, "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Rank": 2 + "Id": 1055 }, { - "Id": 1056, "CommandName": "Remove-PnPListItem", + "Rank": 3, "Command": "Remove-PnPListItem -List \"Demo List\"", - "Rank": 3 + "Id": 1056 }, { - "Id": 1057, "CommandName": "Remove-PnPListItemAttachment", + "Rank": 1, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Rank": 1 + "Id": 1057 }, { - "Id": 1058, "CommandName": "Remove-PnPListItemAttachment", + "Rank": 2, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Rank": 2 + "Id": 1058 }, { - "Id": 1059, "CommandName": "Remove-PnPListItemAttachment", + "Rank": 3, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Rank": 3 + "Id": 1059 }, { - "Id": 1060, "CommandName": "Remove-PnPListItemAttachment", + "Rank": 4, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Rank": 4 + "Id": 1060 }, { - "Id": 1061, "CommandName": "Remove-PnPListItemAttachment", + "Rank": 5, "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Rank": 5 + "Id": 1061 }, { - "Id": 1062, "CommandName": "Remove-PnPListItemVersion", + "Rank": 1, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1 + "Id": 1062 }, { - "Id": 1063, "CommandName": "Remove-PnPListItemVersion", + "Rank": 2, "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2 + "Id": 1063 }, { - "Id": 1064, "CommandName": "Remove-PnPMicrosoft365Group", + "Rank": 1, "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Rank": 1 + "Id": 1064 }, { - "Id": 1065, "CommandName": "Remove-PnPMicrosoft365Group", + "Rank": 2, "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Rank": 2 + "Id": 1065 }, { - "Id": 1066, "CommandName": "Remove-PnPMicrosoft365GroupMember", + "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 1066 }, { - "Id": 1067, "CommandName": "Remove-PnPMicrosoft365GroupOwner", + "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 1067 }, { - "Id": 1068, "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 1, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Rank": 1 + "Id": 1068 }, { - "Id": 1069, "CommandName": "Remove-PnPMicrosoft365GroupSettings", + "Rank": 2, "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Rank": 2 + "Id": 1069 }, { - "Id": 1070, "CommandName": "Remove-PnPNavigationNode", + "Rank": 1, "Command": "Remove-PnPNavigationNode -Identity 1032", - "Rank": 1 + "Id": 1070 }, { - "Id": 1071, "CommandName": "Remove-PnPNavigationNode", + "Rank": 2, "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Rank": 2 + "Id": 1071 }, { - "Id": 1072, "CommandName": "Remove-PnPNavigationNode", + "Rank": 3, "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Rank": 3 + "Id": 1072 }, { - "Id": 1073, "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 1, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Rank": 1 + "Id": 1073 }, { - "Id": 1074, "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 2, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Rank": 2 + "Id": 1074 }, { - "Id": 1075, "CommandName": "Remove-PnPOrgAssetsLibrary", + "Rank": 3, "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Rank": 3 + "Id": 1075 }, { - "Id": 1076, "CommandName": "Remove-PnPOrgNewsSite", + "Rank": 1, "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Rank": 1 + "Id": 1076 }, { - "Id": 1077, "CommandName": "Remove-PnPPage", + "Rank": 1, "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Rank": 1 + "Id": 1077 }, { - "Id": 1078, "CommandName": "Remove-PnPPage", + "Rank": 2, "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Rank": 2 + "Id": 1078 }, { - "Id": 1079, "CommandName": "Remove-PnPPage", + "Rank": 3, "Command": "Remove-PnPPage $page", - "Rank": 3 + "Id": 1079 }, { - "Id": 1080, "CommandName": "Remove-PnPPage", + "Rank": 4, "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Rank": 4 + "Id": 1080 }, { - "Id": 1081, "CommandName": "Remove-PnPPageComponent", + "Rank": 1, "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1 + "Id": 1081 }, { - "Id": 1082, "CommandName": "Remove-PnPPlannerBucket", + "Rank": 1, "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Rank": 1 + "Id": 1082 }, { - "Id": 1083, "CommandName": "Remove-PnPPlannerPlan", + "Rank": 1, "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Rank": 1 + "Id": 1083 }, { - "Id": 1084, "CommandName": "Remove-PnPPlannerRoster", + "Rank": 1, "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Rank": 1 + "Id": 1084 }, { - "Id": 1085, "CommandName": "Remove-PnPPlannerRosterMember", + "Rank": 1, "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 1085 }, { - "Id": 1086, "CommandName": "Remove-PnPPlannerTask", + "Rank": 1, "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Rank": 1 + "Id": 1086 }, { - "Id": 1087, "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 1, "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Rank": 1 + "Id": 1087 }, { - "Id": 1088, "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 2, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Rank": 2 + "Id": 1088 }, { - "Id": 1089, "CommandName": "Remove-PnPPropertyBagValue", + "Rank": 3, "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Rank": 3 + "Id": 1089 }, { - "Id": 1090, "CommandName": "Remove-PnPPublishingImageRendition", + "Rank": 1, "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Rank": 1 + "Id": 1090 }, { - "Id": 1091, "CommandName": "Remove-PnPRoleDefinition", + "Rank": 1, "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Rank": 1 + "Id": 1091 }, { - "Id": 1092, "CommandName": "Remove-PnPSdnProvider", + "Rank": 1, "Command": "Remove-PnPSdnProvider -Confirm:false", - "Rank": 1 + "Id": 1092 }, { - "Id": 1093, "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 1, "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Rank": 1 + "Id": 1093 }, { - "Id": 1094, "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 2, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2 + "Id": 1094 }, { - "Id": 1095, "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 3, "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3 + "Id": 1095 }, { - "Id": 1096, "CommandName": "Remove-PnPSearchConfiguration", + "Rank": 4, "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4 + "Id": 1096 }, { - "Id": 1097, "CommandName": "Remove-PnPSiteCollectionAdmin", + "Rank": 1, "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 1097 }, { - "Id": 1098, "CommandName": "Remove-PnPSiteCollectionAdmin", + "Rank": 2, "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Rank": 2 + "Id": 1098 }, { - "Id": 1099, "CommandName": "Remove-PnPSiteCollectionAppCatalog", + "Rank": 1, "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Rank": 1 + "Id": 1099 }, { - "Id": 1100, "CommandName": "Remove-PnPSiteCollectionTermStore", + "Rank": 1, "Command": "Remove-PnPSiteCollectionTermStore", - "Rank": 1 + "Id": 1100 }, { - "Id": 1101, "CommandName": "Remove-PnPSiteDesign", + "Rank": 1, "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Id": 1101 }, { - "Id": 1102, "CommandName": "Remove-PnPSiteDesignTask", + "Rank": 1, "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Id": 1102 }, { - "Id": 1103, "CommandName": "Remove-PnPSiteGroup", + "Rank": 1, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1 + "Id": 1103 }, { - "Id": 1104, "CommandName": "Remove-PnPSiteGroup", + "Rank": 2, "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Rank": 2 + "Id": 1104 }, { - "Id": 1105, "CommandName": "Remove-PnPSiteScript", + "Rank": 1, "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Rank": 1 + "Id": 1105 }, { - "Id": 1106, "CommandName": "Remove-PnPSiteUserInvitations", + "Rank": 1, "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Rank": 1 + "Id": 1106 }, { - "Id": 1107, "CommandName": "Remove-PnPStorageEntity", + "Rank": 1, "Command": "Remove-PnPStorageEntity -Key MyKey", - "Rank": 1 + "Id": 1107 }, { - "Id": 1108, "CommandName": "Remove-PnPStorageEntity", + "Rank": 2, "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Rank": 2 + "Id": 1108 }, { - "Id": 1109, "CommandName": "Remove-PnPStoredCredential", + "Rank": 1, "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Rank": 1 + "Id": 1109 }, { - "Id": 1110, "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 1, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Rank": 1 + "Id": 1110 }, { - "Id": 1111, "CommandName": "Remove-PnPTaxonomyItem", + "Rank": 2, "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Rank": 2 + "Id": 1111 }, { - "Id": 1112, "CommandName": "Remove-PnPTeamsApp", + "Rank": 1, "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Rank": 1 + "Id": 1112 }, { - "Id": 1113, "CommandName": "Remove-PnPTeamsApp", + "Rank": 2, "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Rank": 2 + "Id": 1113 }, { - "Id": 1114, "CommandName": "Remove-PnPTeamsChannel", + "Rank": 1, "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Rank": 1 + "Id": 1114 }, { - "Id": 1115, "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 1, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Rank": 1 + "Id": 1115 }, { - "Id": 1116, "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 2, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Rank": 2 + "Id": 1116 }, { - "Id": 1117, "CommandName": "Remove-PnPTeamsChannelUser", + "Rank": 3, "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Rank": 3 + "Id": 1117 }, { - "Id": 1118, "CommandName": "Remove-PnPTeamsTab", + "Rank": 1, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Rank": 1 + "Id": 1118 }, { - "Id": 1119, "CommandName": "Remove-PnPTeamsTab", + "Rank": 2, "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Rank": 2 + "Id": 1119 }, { - "Id": 1120, "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": 1120 }, { - "Id": 1121, "CommandName": "Remove-PnPTeamsTag", + "Rank": 1, "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Rank": 1 + "Id": 1121 }, { - "Id": 1122, "CommandName": "Remove-PnPTeamsTeam", + "Rank": 1, "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Rank": 1 + "Id": 1122 }, { - "Id": 1123, "CommandName": "Remove-PnPTeamsTeam", + "Rank": 2, "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Rank": 2 + "Id": 1123 }, { - "Id": 1124, "CommandName": "Remove-PnPTeamsUser", + "Rank": 1, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Rank": 1 + "Id": 1124 }, { - "Id": 1125, "CommandName": "Remove-PnPTeamsUser", + "Rank": 2, "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 2 + "Id": 1125 }, { - "Id": 1126, "CommandName": "Remove-PnPTenantCdnOrigin", + "Rank": 1, "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Rank": 1 + "Id": 1126 }, { - "Id": 1127, "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 1, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "Id": 1127 }, { - "Id": 1128, "CommandName": "Remove-PnPTenantDeletedSite", + "Rank": 2, "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2 + "Id": 1128 }, { - "Id": 1129, "CommandName": "Remove-PnPTenantSite", + "Rank": 1, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "Id": 1129 }, { - "Id": 1130, "CommandName": "Remove-PnPTenantSite", + "Rank": 2, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Rank": 2 + "Id": 1130 }, { - "Id": 1131, "CommandName": "Remove-PnPTenantSite", + "Rank": 3, "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Rank": 3 + "Id": 1131 }, { - "Id": 1132, "CommandName": "Remove-PnPTenantSyncClientRestriction", + "Rank": 1, "Command": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1 + "Id": 1132 }, { - "Id": 1133, "CommandName": "Remove-PnPTenantTheme", + "Rank": 1, "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Rank": 1 + "Id": 1133 }, { - "Id": 1134, "CommandName": "Remove-PnPTerm", + "Rank": 1, "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1 + "Id": 1134 }, { - "Id": 1135, "CommandName": "Remove-PnPTerm", + "Rank": 2, "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "Id": 1135 }, { - "Id": 1136, "CommandName": "Remove-PnPTermGroup", + "Rank": 1, "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Rank": 1 + "Id": 1136 }, { - "Id": 1137, "CommandName": "Remove-PnPTermGroup", + "Rank": 2, "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Rank": 2 + "Id": 1137 }, { - "Id": 1138, "CommandName": "Remove-PnPTermGroup", + "Rank": 3, "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Rank": 3 + "Id": 1138 }, { - "Id": 1139, "CommandName": "Remove-PnPTermLabel", + "Rank": 1, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Rank": 1 + "Id": 1139 }, { - "Id": 1140, "CommandName": "Remove-PnPTermLabel", + "Rank": 2, "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Rank": 2 + "Id": 1140 }, { - "Id": 1141, "CommandName": "Remove-PnPUser", + "Rank": 1, "Command": "Remove-PnPUser -Identity 23", - "Rank": 1 + "Id": 1141 }, { - "Id": 1142, "CommandName": "Remove-PnPUser", + "Rank": 2, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Rank": 2 + "Id": 1142 }, { - "Id": 1143, "CommandName": "Remove-PnPUser", + "Rank": 3, "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Rank": 3 + "Id": 1143 }, { - "Id": 1144, "CommandName": "Remove-PnPUserInfo", + "Rank": 1, "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Rank": 1 + "Id": 1144 }, { - "Id": 1145, "CommandName": "Remove-PnPUserProfile", + "Rank": 1, "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Rank": 1 + "Id": 1145 }, { - "Id": 1146, "CommandName": "Remove-PnPView", + "Rank": 1, "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Rank": 1 + "Id": 1146 }, { - "Id": 1147, "CommandName": "Remove-PnPVivaConnectionsDashboardACE", + "Rank": 1, "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Rank": 1 + "Id": 1147 }, { - "Id": 1148, "CommandName": "Remove-PnPWeb", + "Rank": 1, "Command": "Remove-PnPWeb -Identity projectA", - "Rank": 1 + "Id": 1148 }, { - "Id": 1149, "CommandName": "Remove-PnPWeb", + "Rank": 2, "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Rank": 2 + "Id": 1149 }, { - "Id": 1150, "CommandName": "Remove-PnPWebhookSubscription", + "Rank": 1, "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Rank": 1 + "Id": 1150 }, { - "Id": 1151, "CommandName": "Remove-PnPWebPart", + "Rank": 1, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Rank": 1 + "Id": 1151 }, { - "Id": 1152, "CommandName": "Remove-PnPWebPart", + "Rank": 2, "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Rank": 2 + "Id": 1152 }, { - "Id": 1153, "CommandName": "Remove-PnPWikiPage", + "Rank": 1, "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Rank": 1 + "Id": 1153 }, { - "Id": 1154, "CommandName": "Rename-PnPFile", + "Rank": 1, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Rank": 1 + "Id": 1154 }, { - "Id": 1155, "CommandName": "Rename-PnPFile", + "Rank": 2, "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Rank": 2 + "Id": 1155 }, { - "Id": 1156, "CommandName": "Rename-PnPFile", + "Rank": 3, "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Rank": 3 + "Id": 1156 }, { - "Id": 1157, "CommandName": "Rename-PnPFolder", + "Rank": 1, "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Rank": 1 + "Id": 1157 }, { - "Id": 1158, "CommandName": "Repair-PnPSite", + "Rank": 1, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1 + "Id": 1158 }, { - "Id": 1159, "CommandName": "Repair-PnPSite", + "Rank": 2, "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2 + "Id": 1159 }, { - "Id": 1160, "CommandName": "Request-PnPAccessToken", + "Rank": 1, "Command": "Request-PnPAccessToken", - "Rank": 1 + "Id": 1160 }, { - "Id": 1161, "CommandName": "Request-PnPAccessToken", + "Rank": 2, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Rank": 2 + "Id": 1161 }, { - "Id": 1162, "CommandName": "Request-PnPAccessToken", + "Rank": 3, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Rank": 3 + "Id": 1162 }, { - "Id": 1163, "CommandName": "Request-PnPAccessToken", + "Rank": 4, "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Rank": 4 + "Id": 1163 }, { - "Id": 1164, "CommandName": "Request-PnPPersonalSite", + "Rank": 1, "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Rank": 1 + "Id": 1164 }, { - "Id": 1165, "CommandName": "Request-PnPPersonalSite", + "Rank": 2, "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Rank": 2 + "Id": 1165 }, { - "Id": 1166, "CommandName": "Request-PnPReIndexList", + "Rank": 1, "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Rank": 1 + "Id": 1166 }, { - "Id": 1167, "CommandName": "Request-PnPReIndexWeb", + "Rank": 1, "Command": "Request-PnPReIndexWeb", - "Rank": 1 + "Id": 1167 }, { - "Id": 1168, "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 1, "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Rank": 1 + "Id": 1168 }, { - "Id": 1169, "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 2, "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Rank": 2 + "Id": 1169 }, { - "Id": 1170, "CommandName": "Request-PnPSyntexClassifyAndExtract", + "Rank": 3, "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Rank": 3 + "Id": 1170 }, { - "Id": 1171, "CommandName": "Reset-PnPFileVersion", + "Rank": 1, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Rank": 1 + "Id": 1171 }, { - "Id": 1172, "CommandName": "Reset-PnPFileVersion", + "Rank": 2, "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Rank": 2 + "Id": 1172 }, { - "Id": 1173, "CommandName": "Reset-PnPLabel", + "Rank": 1, "Command": "Reset-PnPLabel -List \"Demo List\"", - "Rank": 1 + "Id": 1173 }, { - "Id": 1174, "CommandName": "Reset-PnPLabel", + "Rank": 2, "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Rank": 2 + "Id": 1174 }, { - "Id": 1175, "CommandName": "Reset-PnPMicrosoft365GroupExpiration", + "Rank": 1, "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1 + "Id": 1175 }, { - "Id": 1176, "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", + "Rank": 1, "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Rank": 1 + "Id": 1176 }, { - "Id": 1177, "CommandName": "Resolve-PnPFolder", + "Rank": 1, "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Rank": 1 + "Id": 1177 }, { - "Id": 1178, "CommandName": "Restore-PnPDeletedMicrosoft365Group", + "Rank": 1, "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Rank": 1 + "Id": 1178 }, { - "Id": 1179, "CommandName": "Restore-PnPFileVersion", + "Rank": 1, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Rank": 1 + "Id": 1179 }, { - "Id": 1180, "CommandName": "Restore-PnPFileVersion", + "Rank": 2, "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Rank": 2 + "Id": 1180 }, { - "Id": 1181, "CommandName": "Restore-PnPFileVersion", + "Rank": 3, "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Rank": 3 + "Id": 1181 }, { - "Id": 1182, "CommandName": "Restore-PnPListItemVersion", + "Rank": 1, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Rank": 1 + "Id": 1182 }, { - "Id": 1183, "CommandName": "Restore-PnPListItemVersion", + "Rank": 2, "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Rank": 2 + "Id": 1183 }, { - "Id": 1184, "CommandName": "Restore-PnPRecycleBinItem", + "Rank": 1, "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Rank": 1 + "Id": 1184 }, { - "Id": 1185, "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 1, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "Id": 1185 }, { - "Id": 1186, "CommandName": "Restore-PnPTenantRecycleBinItem", + "Rank": 2, "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Rank": 2 + "Id": 1186 }, { - "Id": 1187, "CommandName": "Restore-PnPTenantSite", + "Rank": 1, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Rank": 1 + "Id": 1187 }, { - "Id": 1188, "CommandName": "Restore-PnPTenantSite", + "Rank": 2, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Rank": 2 + "Id": 1188 }, { - "Id": 1189, "CommandName": "Restore-PnPTenantSite", + "Rank": 3, "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Rank": 3 + "Id": 1189 }, { - "Id": 1190, "CommandName": "Revoke-PnPAzureADAppSitePermission", + "Rank": 1, "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Rank": 1 + "Id": 1190 }, { - "Id": 1191, "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": 1191 }, { - "Id": 1192, "CommandName": "Revoke-PnPSiteDesignRights", + "Rank": 1, "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Rank": 1 + "Id": 1192 }, { - "Id": 1193, "CommandName": "Revoke-PnPTenantServicePrincipalPermission", + "Rank": 1, "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Rank": 1 + "Id": 1193 }, { - "Id": 1194, "CommandName": "Revoke-PnPUserSession", + "Rank": 1, "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Rank": 1 + "Id": 1194 }, { - "Id": 1195, "CommandName": "Save-PnPPageConversionLog", + "Rank": 1, "Command": "Save-PnPPageConversionLog", - "Rank": 1 + "Id": 1195 }, { - "Id": 1196, "CommandName": "Save-PnPSiteTemplate", + "Rank": 1, "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Rank": 1 + "Id": 1196 }, { - "Id": 1197, "CommandName": "Save-PnPTenantTemplate", + "Rank": 1, "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Rank": 1 + "Id": 1197 }, { - "Id": 1198, "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": 1198 }, { - "Id": 1199, "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": 1199 }, { - "Id": 1200, "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": 1200 }, { - "Id": 1201, "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": 1201 }, { - "Id": 1202, "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": 1202 }, { - "Id": 1203, "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": 1203 }, { - "Id": 1204, "CommandName": "Set-PnPAdaptiveScopeProperty", + "Rank": 1, "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Rank": 1 + "Id": 1204 }, { - "Id": 1205, "CommandName": "Set-PnPApplicationCustomizer", + "Rank": 1, "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Rank": 1 + "Id": 1205 }, { - "Id": 1206, "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": 1206 }, { - "Id": 1207, "CommandName": "Set-PnPAppSideLoading", + "Rank": 1, "Command": "Set-PnPAppSideLoading -On", - "Rank": 1 + "Id": 1207 }, { - "Id": 1208, "CommandName": "Set-PnPAppSideLoading", + "Rank": 2, "Command": "Set-PnPAppSideLoading -Off", - "Rank": 2 + "Id": 1208 }, { - "Id": 1209, "CommandName": "Set-PnPAuditing", + "Rank": 1, "Command": "Set-PnPAuditing -EnableAll", - "Rank": 1 + "Id": 1209 }, { - "Id": 1210, "CommandName": "Set-PnPAuditing", + "Rank": 2, "Command": "Set-PnPAuditing -DisableAll", - "Rank": 2 + "Id": 1210 }, { - "Id": 1211, "CommandName": "Set-PnPAuditing", + "Rank": 3, "Command": "Set-PnPAuditing -RetentionTime 7", - "Rank": 3 + "Id": 1211 }, { - "Id": 1212, "CommandName": "Set-PnPAuditing", + "Rank": 4, "Command": "Set-PnPAuditing -TrimAuditLog", - "Rank": 4 + "Id": 1212 }, { - "Id": 1213, "CommandName": "Set-PnPAuditing", + "Rank": 5, "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Rank": 5 + "Id": 1213 }, { - "Id": 1214, "CommandName": "Set-PnPAvailablePageLayouts", + "Rank": 1, "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Rank": 1 + "Id": 1214 }, { - "Id": 1215, "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 1, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Rank": 1 + "Id": 1215 }, { - "Id": 1216, "CommandName": "Set-PnPAzureADAppSitePermission", + "Rank": 2, "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Rank": 2 + "Id": 1216 }, { - "Id": 1217, "CommandName": "Set-PnPAzureADGroup", + "Rank": 1, "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1 + "Id": 1217 }, { - "Id": 1218, "CommandName": "Set-PnPAzureADGroup", + "Rank": 2, "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2 + "Id": 1218 }, { - "Id": 1219, "CommandName": "Set-PnPAzureADGroup", + "Rank": 3, "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Rank": 3 + "Id": 1219 }, { - "Id": 1220, "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 1, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Rank": 1 + "Id": 1220 }, { - "Id": 1221, "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 2, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Rank": 2 + "Id": 1221 }, { - "Id": 1222, "CommandName": "Set-PnPBrowserIdleSignout", + "Rank": 3, "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Rank": 3 + "Id": 1222 }, { - "Id": 1223, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 1, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Rank": 1 + "Id": 1223 }, { - "Id": 1224, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", + "Rank": 2, "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Rank": 2 + "Id": 1224 }, { - "Id": 1225, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 1, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Rank": 1 + "Id": 1225 }, { - "Id": 1226, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 2, "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Rank": 2 + "Id": 1226 }, { - "Id": 1227, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 3, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Rank": 3 + "Id": 1227 }, { - "Id": 1228, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", + "Rank": 4, "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Rank": 4 + "Id": 1228 }, { - "Id": 1229, "CommandName": "Set-PnPContentType", + "Rank": 1, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 1 + "Id": 1229 }, { - "Id": 1230, "CommandName": "Set-PnPContentType", + "Rank": 2, "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Rank": 2 + "Id": 1230 }, { - "Id": 1231, "CommandName": "Set-PnPContentType", + "Rank": 3, "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Rank": 3 + "Id": 1231 }, { - "Id": 1232, "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": 1232 }, { - "Id": 1233, "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": 1233 }, { - "Id": 1234, "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 1, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Rank": 1 + "Id": 1234 }, { - "Id": 1235, "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 2, "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Rank": 2 + "Id": 1235 }, { - "Id": 1236, "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 3, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Rank": 3 + "Id": 1236 }, { - "Id": 1237, "CommandName": "Set-PnPDefaultColumnValues", + "Rank": 4, "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Rank": 4 + "Id": 1237 }, { - "Id": 1238, "CommandName": "Set-PnPDefaultContentTypeToList", + "Rank": 1, "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Rank": 1 + "Id": 1238 }, { - "Id": 1239, "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 1, "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Rank": 1 + "Id": 1239 }, { - "Id": 1240, "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 2, "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Rank": 2 + "Id": 1240 }, { - "Id": 1241, "CommandName": "Set-PnPDefaultPageLayout", + "Rank": 3, "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Rank": 3 + "Id": 1241 }, { - "Id": 1242, "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 1, "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Rank": 1 + "Id": 1242 }, { - "Id": 1243, "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 2, "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 2 + "Id": 1243 }, { - "Id": 1244, "CommandName": "Set-PnPDisableSpacesActivation", + "Rank": 3, "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Rank": 3 + "Id": 1244 }, { - "Id": 1245, "CommandName": "Set-PnPDocumentSetField", + "Rank": 1, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Rank": 1 + "Id": 1245 }, { - "Id": 1246, "CommandName": "Set-PnPDocumentSetField", + "Rank": 2, "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Rank": 2 + "Id": 1246 }, { - "Id": 1247, "CommandName": "Set-PnPField", + "Rank": 1, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Rank": 1 + "Id": 1247 }, { - "Id": 1248, "CommandName": "Set-PnPField", + "Rank": 2, "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Rank": 2 + "Id": 1248 }, { - "Id": 1249, "CommandName": "Set-PnPField", + "Rank": 3, "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Rank": 3 + "Id": 1249 }, { - "Id": 1250, "CommandName": "Set-PnPFileCheckedIn", + "Rank": 1, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Rank": 1 + "Id": 1250 }, { - "Id": 1251, "CommandName": "Set-PnPFileCheckedIn", + "Rank": 2, "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Rank": 2 + "Id": 1251 }, { - "Id": 1252, "CommandName": "Set-PnPFileCheckedOut", + "Rank": 1, "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Rank": 1 + "Id": 1252 }, { - "Id": 1253, "CommandName": "Set-PnPFolderPermission", + "Rank": 1, "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1 + "Id": 1253 }, { - "Id": 1254, "CommandName": "Set-PnPFolderPermission", + "Rank": 2, "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2 + "Id": 1254 }, { - "Id": 1255, "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": 1255 }, { - "Id": 1256, "CommandName": "Set-PnPFooter", + "Rank": 1, "Command": "Set-PnPFooter -Enabled:$true", - "Rank": 1 + "Id": 1256 }, { - "Id": 1257, "CommandName": "Set-PnPFooter", + "Rank": 2, "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Rank": 2 + "Id": 1257 }, { - "Id": 1258, "CommandName": "Set-PnPFooter", + "Rank": 3, "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Rank": 3 + "Id": 1258 }, { - "Id": 1259, "CommandName": "Set-PnPFooter", + "Rank": 4, "Command": "Set-PnPFooter -LogoUrl \"\"", - "Rank": 4 + "Id": 1259 }, { - "Id": 1260, "CommandName": "Set-PnPGraphSubscription", + "Rank": 1, "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Rank": 1 + "Id": 1260 }, { - "Id": 1261, "CommandName": "Set-PnPGroup", + "Rank": 1, "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Rank": 1 + "Id": 1261 }, { - "Id": 1262, "CommandName": "Set-PnPGroup", + "Rank": 2, "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Rank": 2 + "Id": 1262 }, { - "Id": 1263, "CommandName": "Set-PnPGroupPermissions", + "Rank": 1, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Rank": 1 + "Id": 1263 }, { - "Id": 1264, "CommandName": "Set-PnPGroupPermissions", + "Rank": 2, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Rank": 2 + "Id": 1264 }, { - "Id": 1265, "CommandName": "Set-PnPGroupPermissions", + "Rank": 3, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Rank": 3 + "Id": 1265 }, { - "Id": 1266, "CommandName": "Set-PnPGroupPermissions", + "Rank": 4, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Rank": 4 + "Id": 1266 }, { - "Id": 1267, "CommandName": "Set-PnPGroupPermissions", + "Rank": 5, "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Rank": 5 + "Id": 1267 }, { - "Id": 1268, "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 1, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Rank": 1 + "Id": 1268 }, { - "Id": 1269, "CommandName": "Set-PnPHideDefaultThemes", + "Rank": 2, "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Rank": 2 + "Id": 1269 }, { - "Id": 1270, "CommandName": "Set-PnPHomePage", + "Rank": 1, "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Rank": 1 + "Id": 1270 }, { - "Id": 1271, "CommandName": "Set-PnPHomePage", + "Rank": 2, "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Rank": 2 + "Id": 1271 }, { - "Id": 1272, "CommandName": "Set-PnPHomeSite", + "Rank": 1, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Rank": 1 + "Id": 1272 }, { - "Id": 1273, "CommandName": "Set-PnPHomeSite", + "Rank": 2, "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Rank": 2 + "Id": 1273 }, { - "Id": 1274, "CommandName": "Set-PnPHubSite", + "Rank": 1, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Rank": 1 + "Id": 1274 }, { - "Id": 1275, "CommandName": "Set-PnPHubSite", + "Rank": 2, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Rank": 2 + "Id": 1275 }, { - "Id": 1276, "CommandName": "Set-PnPHubSite", + "Rank": 3, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Rank": 3 + "Id": 1276 }, { - "Id": 1277, "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": 1277 }, { - "Id": 1278, "CommandName": "Set-PnPHubSite", + "Rank": 5, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Rank": 5 + "Id": 1278 }, { - "Id": 1279, "CommandName": "Set-PnPHubSite", + "Rank": 6, "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Rank": 6 + "Id": 1279 }, { - "Id": 1280, "CommandName": "Set-PnPImageListItemColumn", + "Rank": 1, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Rank": 1 + "Id": 1280 }, { - "Id": 1281, "CommandName": "Set-PnPImageListItemColumn", + "Rank": 2, "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Rank": 2 + "Id": 1281 }, { - "Id": 1282, "CommandName": "Set-PnPIndexedProperties", + "Rank": 1, "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Rank": 1 + "Id": 1282 }, { - "Id": 1283, "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 1, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Rank": 1 + "Id": 1283 }, { - "Id": 1284, "CommandName": "Set-PnPInPlaceRecordsManagement", + "Rank": 2, "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Rank": 2 + "Id": 1284 }, { - "Id": 1285, "CommandName": "Set-PnPKnowledgeHubSite", + "Rank": 1, "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Rank": 1 + "Id": 1285 }, { - "Id": 1286, "CommandName": "Set-PnPLabel", + "Rank": 1, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Rank": 1 + "Id": 1286 }, { - "Id": 1287, "CommandName": "Set-PnPLabel", + "Rank": 2, "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Rank": 2 + "Id": 1287 }, { - "Id": 1288, "CommandName": "Set-PnPList", + "Rank": 1, "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Rank": 1 + "Id": 1288 }, { - "Id": 1289, "CommandName": "Set-PnPList", + "Rank": 2, "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Rank": 2 + "Id": 1289 }, { - "Id": 1290, "CommandName": "Set-PnPList", + "Rank": 3, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Rank": 3 + "Id": 1290 }, { - "Id": 1291, "CommandName": "Set-PnPList", + "Rank": 4, "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Rank": 4 + "Id": 1291 }, { - "Id": 1292, "CommandName": "Set-PnPList", + "Rank": 5, "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Rank": 5 + "Id": 1292 }, { - "Id": 1293, "CommandName": "Set-PnPList", + "Rank": 6, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Rank": 6 + "Id": 1293 }, { - "Id": 1294, "CommandName": "Set-PnPList", + "Rank": 7, "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Rank": 7 + "Id": 1294 }, { - "Id": 1295, "CommandName": "Set-PnPList", + "Rank": 8, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Rank": 8 + "Id": 1295 }, { - "Id": 1296, "CommandName": "Set-PnPList", + "Rank": 9, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Rank": 9 + "Id": 1296 }, { - "Id": 1297, "CommandName": "Set-PnPList", + "Rank": 10, "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Rank": 10 + "Id": 1297 }, { - "Id": 1298, "CommandName": "Set-PnPList", + "Rank": 11, "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Rank": 11 + "Id": 1298 }, { - "Id": 1299, "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 1, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Rank": 1 + "Id": 1299 }, { - "Id": 1300, "CommandName": "Set-PnPListInformationRightsManagement", + "Rank": 2, "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Rank": 2 + "Id": 1300 }, { - "Id": 1301, "CommandName": "Set-PnPListItem", + "Rank": 1, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 1 + "Id": 1301 }, { - "Id": 1302, "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": 1302 }, { - "Id": 1303, "CommandName": "Set-PnPListItem", + "Rank": 3, "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Rank": 3 + "Id": 1303 }, { - "Id": 1304, "CommandName": "Set-PnPListItem", + "Rank": 4, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Rank": 4 + "Id": 1304 }, { - "Id": 1305, "CommandName": "Set-PnPListItem", + "Rank": 5, "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Rank": 5 + "Id": 1305 }, { - "Id": 1306, "CommandName": "Set-PnPListItemAsRecord", + "Rank": 1, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Rank": 1 + "Id": 1306 }, { - "Id": 1307, "CommandName": "Set-PnPListItemAsRecord", + "Rank": 2, "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Rank": 2 + "Id": 1307 }, { - "Id": 1308, "CommandName": "Set-PnPListItemPermission", + "Rank": 1, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1 + "Id": 1308 }, { - "Id": 1309, "CommandName": "Set-PnPListItemPermission", + "Rank": 2, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2 + "Id": 1309 }, { - "Id": 1310, "CommandName": "Set-PnPListItemPermission", + "Rank": 3, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Rank": 3 + "Id": 1310 }, { - "Id": 1311, "CommandName": "Set-PnPListItemPermission", + "Rank": 4, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Rank": 4 + "Id": 1311 }, { - "Id": 1312, "CommandName": "Set-PnPListItemPermission", + "Rank": 5, "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Rank": 5 + "Id": 1312 }, { - "Id": 1313, "CommandName": "Set-PnPListPermission", + "Rank": 1, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Rank": 1 + "Id": 1313 }, { - "Id": 1314, "CommandName": "Set-PnPListPermission", + "Rank": 2, "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Rank": 2 + "Id": 1314 }, { - "Id": 1315, "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 1, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Rank": 1 + "Id": 1315 }, { - "Id": 1316, "CommandName": "Set-PnPListRecordDeclaration", + "Rank": 2, "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Rank": 2 + "Id": 1316 }, { - "Id": 1317, "CommandName": "Set-PnPMasterPage", + "Rank": 1, "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Rank": 1 + "Id": 1317 }, { - "Id": 1318, "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": 1318 }, { - "Id": 1319, "CommandName": "Set-PnPMasterPage", + "Rank": 3, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 3 + "Id": 1319 }, { - "Id": 1320, "CommandName": "Set-PnPMasterPage", + "Rank": 4, "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Rank": 4 + "Id": 1320 }, { - "Id": 1321, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Rank": 1 + "Id": 1321 }, { - "Id": 1322, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "Id": 1322 }, { - "Id": 1323, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3 + "Id": 1323 }, { - "Id": 1324, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Rank": 1 + "Id": 1324 }, { - "Id": 1325, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "Id": 1325 }, { - "Id": 1326, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3 + "Id": 1326 }, { - "Id": 1327, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Rank": 1 + "Id": 1327 }, { - "Id": 1328, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "Id": 1328 }, { - "Id": 1329, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3 + "Id": 1329 }, { - "Id": 1330, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Rank": 1 + "Id": 1330 }, { - "Id": 1331, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "Id": 1331 }, { - "Id": 1332, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3 + "Id": 1332 }, { - "Id": 1333, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Rank": 1 + "Id": 1333 }, { - "Id": 1334, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "Id": 1334 }, { - "Id": 1335, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3 + "Id": 1335 }, { - "Id": 1336, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 1, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Rank": 1 + "Id": 1336 }, { - "Id": 1337, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 2, "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Rank": 2 + "Id": 1337 }, { - "Id": 1338, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Rank": 3, "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3 + "Id": 1338 }, { - "Id": 1339, "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 1, "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Rank": 1 + "Id": 1339 }, { - "Id": 1340, "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 2, "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Rank": 2 + "Id": 1340 }, { - "Id": 1341, "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 3, "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Rank": 3 + "Id": 1341 }, { - "Id": 1342, "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 4, "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Rank": 4 + "Id": 1342 }, { - "Id": 1343, "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 5, "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Rank": 5 + "Id": 1343 }, { - "Id": 1344, "CommandName": "Set-PnPMicrosoft365Group", + "Rank": 6, "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Rank": 6 + "Id": 1344 }, { - "Id": 1345, "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 1, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Rank": 1 + "Id": 1345 }, { - "Id": 1346, "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Rank": 2, "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Rank": 2 + "Id": 1346 }, { - "Id": 1347, "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 1, "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Rank": 1 + "Id": 1347 }, { - "Id": 1348, "CommandName": "Set-PnPMinimalDownloadStrategy", + "Rank": 2, "Command": "Set-PnPMinimalDownloadStrategy -On", - "Rank": 2 + "Id": 1348 }, { - "Id": 1349, "CommandName": "Set-PnPPage", + "Rank": 1, "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Rank": 1 + "Id": 1349 }, { - "Id": 1350, "CommandName": "Set-PnPPage", + "Rank": 2, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Rank": 2 + "Id": 1350 }, { - "Id": 1351, "CommandName": "Set-PnPPage", + "Rank": 3, "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Rank": 3 + "Id": 1351 }, { - "Id": 1352, "CommandName": "Set-PnPPage", + "Rank": 4, "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Rank": 4 + "Id": 1352 }, { - "Id": 1353, "CommandName": "Set-PnPPage", + "Rank": 5, "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Rank": 5 + "Id": 1353 }, { - "Id": 1354, "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": 1354 }, { - "Id": 1355, "CommandName": "Set-PnPPage", + "Rank": 7, "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Rank": 7 + "Id": 1355 }, { - "Id": 1356, "CommandName": "Set-PnPPage", + "Rank": 8, "Command": "Set-PnPPage -Name \"NewPage\" -Translate", - "Rank": 8 + "Id": 1356 }, { - "Id": 1357, "CommandName": "Set-PnPPage", + "Rank": 9, "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Rank": 9 + "Id": 1357 }, { - "Id": 1358, "CommandName": "Set-PnPPage", + "Rank": 10, "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Rank": 10 + "Id": 1358 }, { - "Id": 1359, "CommandName": "Set-PnPPageTextPart", + "Rank": 1, "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Rank": 1 + "Id": 1359 }, { - "Id": 1360, "CommandName": "Set-PnPPageWebPart", + "Rank": 1, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Rank": 1 + "Id": 1360 }, { - "Id": 1361, "CommandName": "Set-PnPPageWebPart", + "Rank": 2, "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Rank": 2 + "Id": 1361 }, { - "Id": 1362, "CommandName": "Set-PnPPlannerBucket", + "Rank": 1, "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Rank": 1 + "Id": 1362 }, { - "Id": 1363, "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 1, "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Rank": 1 + "Id": 1363 }, { - "Id": 1364, "CommandName": "Set-PnPPlannerConfiguration", + "Rank": 2, "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Rank": 2 + "Id": 1364 }, { - "Id": 1365, "CommandName": "Set-PnPPlannerPlan", + "Rank": 1, "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Rank": 1 + "Id": 1365 }, { - "Id": 1366, "CommandName": "Set-PnPPlannerTask", + "Rank": 1, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Rank": 1 + "Id": 1366 }, { - "Id": 1367, "CommandName": "Set-PnPPlannerTask", + "Rank": 2, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Rank": 2 + "Id": 1367 }, { - "Id": 1368, "CommandName": "Set-PnPPlannerTask", + "Rank": 3, "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Rank": 3 + "Id": 1368 }, { - "Id": 1369, "CommandName": "Set-PnPPlannerUserPolicy", + "Rank": 1, "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Rank": 1 + "Id": 1369 }, { - "Id": 1370, "CommandName": "Set-PnPPropertyBagValue", + "Rank": 1, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Rank": 1 + "Id": 1370 }, { - "Id": 1371, "CommandName": "Set-PnPPropertyBagValue", + "Rank": 2, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Rank": 2 + "Id": 1371 }, { - "Id": 1372, "CommandName": "Set-PnPPropertyBagValue", + "Rank": 3, "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Rank": 3 + "Id": 1372 }, { - "Id": 1373, "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 1, "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Rank": 1 + "Id": 1373 }, { - "Id": 1374, "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 2, "Command": "Set-PnPRequestAccessEmails -Disabled", - "Rank": 2 + "Id": 1374 }, { - "Id": 1375, "CommandName": "Set-PnPRequestAccessEmails", + "Rank": 3, "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Rank": 3 + "Id": 1375 }, { - "Id": 1376, "CommandName": "Set-PnPRoleDefinition", + "Rank": 1, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Rank": 1 + "Id": 1376 }, { - "Id": 1377, "CommandName": "Set-PnPRoleDefinition", + "Rank": 2, "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Rank": 2 + "Id": 1377 }, { - "Id": 1378, "CommandName": "Set-PnPRoleDefinition", + "Rank": 3, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Rank": 3 + "Id": 1378 }, { - "Id": 1379, "CommandName": "Set-PnPRoleDefinition", + "Rank": 4, "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Rank": 4 + "Id": 1379 }, { - "Id": 1380, "CommandName": "Set-PnPSearchConfiguration", + "Rank": 1, "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Rank": 1 + "Id": 1380 }, { - "Id": 1381, "CommandName": "Set-PnPSearchConfiguration", + "Rank": 2, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Rank": 2 + "Id": 1381 }, { - "Id": 1382, "CommandName": "Set-PnPSearchConfiguration", + "Rank": 3, "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Rank": 3 + "Id": 1382 }, { - "Id": 1383, "CommandName": "Set-PnPSearchConfiguration", + "Rank": 4, "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Rank": 4 + "Id": 1383 }, { - "Id": 1384, "CommandName": "Set-PnPSearchSettings", + "Rank": 1, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Rank": 1 + "Id": 1384 }, { - "Id": 1385, "CommandName": "Set-PnPSearchSettings", + "Rank": 2, "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Rank": 2 + "Id": 1385 }, { - "Id": 1386, "CommandName": "Set-PnPSearchSettings", + "Rank": 3, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Rank": 3 + "Id": 1386 }, { - "Id": 1387, "CommandName": "Set-PnPSearchSettings", + "Rank": 4, "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Rank": 4 + "Id": 1387 }, { - "Id": 1388, "CommandName": "Set-PnPSearchSettings", + "Rank": 5, "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Rank": 5 + "Id": 1388 }, { - "Id": 1389, "CommandName": "Set-PnPSearchSettings", + "Rank": 6, "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Rank": 6 + "Id": 1389 }, { - "Id": 1390, "CommandName": "Set-PnPSearchSettings", + "Rank": 7, "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Rank": 7 + "Id": 1390 }, { - "Id": 1391, "CommandName": "Set-PnPSite", + "Rank": 1, "Command": "Set-PnPSite -Classification \"HBI\"", - "Rank": 1 + "Id": 1391 }, { - "Id": 1392, "CommandName": "Set-PnPSite", + "Rank": 2, "Command": "Set-PnPSite -Classification $null", - "Rank": 2 + "Id": 1392 }, { - "Id": 1393, "CommandName": "Set-PnPSite", + "Rank": 3, "Command": "Set-PnPSite -DisableFlows", - "Rank": 3 + "Id": 1393 }, { - "Id": 1394, "CommandName": "Set-PnPSite", + "Rank": 4, "Command": "Set-PnPSite -DisableFlows:$false", - "Rank": 4 + "Id": 1394 }, { - "Id": 1395, "CommandName": "Set-PnPSite", + "Rank": 5, "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Rank": 5 + "Id": 1395 }, { - "Id": 1396, "CommandName": "Set-PnPSite", + "Rank": 6, "Command": "Set-PnPSite -NoScriptSite $false", - "Rank": 6 + "Id": 1396 }, { - "Id": 1397, "CommandName": "Set-PnPSiteClassification", + "Rank": 1, "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Rank": 1 + "Id": 1397 }, { - "Id": 1398, "CommandName": "Set-PnPSiteClosure", + "Rank": 1, "Command": "Set-PnPSiteClosure -State Open", - "Rank": 1 + "Id": 1398 }, { - "Id": 1399, "CommandName": "Set-PnPSiteClosure", + "Rank": 2, "Command": "Set-PnPSiteClosure -State Closed", - "Rank": 2 + "Id": 1399 }, { - "Id": 1400, "CommandName": "Set-PnPSiteDesign", + "Rank": 1, "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Rank": 1 + "Id": 1400 }, { - "Id": 1401, "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": 1401 }, { - "Id": 1402, "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": 1402 }, { - "Id": 1403, "CommandName": "Set-PnPSiteGroup", + "Rank": 2, "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Rank": 2 + "Id": 1403 }, { - "Id": 1404, "CommandName": "Set-PnPSitePolicy", + "Rank": 1, "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Rank": 1 + "Id": 1404 }, { - "Id": 1405, "CommandName": "Set-PnPSiteScript", + "Rank": 1, "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1 + "Id": 1405 }, { - "Id": 1406, "CommandName": "Set-PnPSiteScriptPackage", + "Rank": 1, "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Rank": 1 + "Id": 1406 }, { - "Id": 1407, "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 1, "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Rank": 1 + "Id": 1407 }, { - "Id": 1408, "CommandName": "Set-PnPSiteSensitivityLabel", + "Rank": 2, "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Rank": 2 + "Id": 1408 }, { - "Id": 1409, "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 1, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 1 + "Id": 1409 }, { - "Id": 1410, "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 2, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Rank": 2 + "Id": 1410 }, { - "Id": 1411, "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 3, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 3 + "Id": 1411 }, { - "Id": 1412, "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 4, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Rank": 4 + "Id": 1412 }, { - "Id": 1413, "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 5, "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 5 + "Id": 1413 }, { - "Id": 1414, "CommandName": "Set-PnPSiteTemplateMetadata", + "Rank": 6, "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Rank": 6 + "Id": 1414 }, { - "Id": 1415, "CommandName": "Set-PnPStorageEntity", + "Rank": 1, "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 1 + "Id": 1415 }, { - "Id": 1416, "CommandName": "Set-PnPStorageEntity", + "Rank": 2, "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Rank": 2 + "Id": 1416 }, { - "Id": 1417, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 1 + "Id": 1417 }, { - "Id": 1418, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Rank": 2 + "Id": 1418 }, { - "Id": 1419, "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Rank": 1, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 1 + "Id": 1419 }, { - "Id": 1420, "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Rank": 2, "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Rank": 2 + "Id": 1420 }, { - "Id": 1421, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 1, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Rank": 1 + "Id": 1421 }, { - "Id": 1422, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Rank": 2, "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Rank": 2 + "Id": 1422 }, { - "Id": 1423, "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 1, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Rank": 1 + "Id": 1423 }, { - "Id": 1424, "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 2, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Rank": 2 + "Id": 1424 }, { - "Id": 1425, "CommandName": "Set-PnPTaxonomyFieldValue", + "Rank": 3, "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Rank": 3 + "Id": 1425 }, { - "Id": 1426, "CommandName": "Set-PnPTeamifyPromptHidden", + "Rank": 1, "Command": "Set-PnPTeamifyPromptHidden", - "Rank": 1 + "Id": 1426 }, { - "Id": 1427, "CommandName": "Set-PnPTeamsChannel", + "Rank": 1, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Rank": 1 + "Id": 1427 }, { - "Id": 1428, "CommandName": "Set-PnPTeamsChannel", + "Rank": 2, "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Rank": 2 + "Id": 1428 }, { - "Id": 1429, "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": 1429 }, { - "Id": 1430, "CommandName": "Set-PnpTeamsChannelUser", + "Rank": 2, "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Rank": 2 + "Id": 1430 }, { - "Id": 1431, "CommandName": "Set-PnPTeamsTab", + "Rank": 1, "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Rank": 1 + "Id": 1431 }, { - "Id": 1432, "CommandName": "Set-PnPTeamsTag", + "Rank": 1, "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Rank": 1 + "Id": 1432 }, { - "Id": 1433, "CommandName": "Set-PnPTeamsTeam", + "Rank": 1, "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Rank": 1 + "Id": 1433 }, { - "Id": 1434, "CommandName": "Set-PnPTeamsTeam", + "Rank": 2, "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Rank": 2 + "Id": 1434 }, { - "Id": 1435, "CommandName": "Set-PnPTeamsTeam", + "Rank": 3, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Rank": 3 + "Id": 1435 }, { - "Id": 1436, "CommandName": "Set-PnPTeamsTeam", + "Rank": 4, "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Rank": 4 + "Id": 1436 }, { - "Id": 1437, "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 1, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Rank": 1 + "Id": 1437 }, { - "Id": 1438, "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 2, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Rank": 2 + "Id": 1438 }, { - "Id": 1439, "CommandName": "Set-PnPTeamsTeamArchivedState", + "Rank": 3, "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Rank": 3 + "Id": 1439 }, { - "Id": 1440, "CommandName": "Set-PnPTeamsTeamPicture", + "Rank": 1, "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Rank": 1 + "Id": 1440 }, { - "Id": 1441, "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 1, "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Rank": 1 + "Id": 1441 }, { - "Id": 1442, "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Rank": 2, "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Rank": 2 + "Id": 1442 }, { - "Id": 1443, "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": 1443 }, { - "Id": 1444, "CommandName": "Set-PnPTenant", + "Rank": 2, "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Rank": 2 + "Id": 1444 }, { - "Id": 1445, "CommandName": "Set-PnPTenant", + "Rank": 3, "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Rank": 3 + "Id": 1445 }, { - "Id": 1446, "CommandName": "Set-PnPTenant", + "Rank": 4, "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Rank": 4 + "Id": 1446 }, { - "Id": 1447, "CommandName": "Set-PnPTenantAppCatalogUrl", + "Rank": 1, "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Rank": 1 + "Id": 1447 }, { - "Id": 1448, "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 1, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Rank": 1 + "Id": 1448 }, { - "Id": 1449, "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 2, "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Rank": 2 + "Id": 1449 }, { - "Id": 1450, "CommandName": "Set-PnPTenantCdnEnabled", + "Rank": 3, "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Rank": 3 + "Id": 1450 }, { - "Id": 1451, "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": 1451 }, { - "Id": 1452, "CommandName": "Set-PnPTenantCdnPolicy", + "Rank": 2, "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Rank": 2 + "Id": 1452 }, { - "Id": 1453, "CommandName": "Set-PnPTenantSite", + "Rank": 1, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Rank": 1 + "Id": 1453 }, { - "Id": 1454, "CommandName": "Set-PnPTenantSite", + "Rank": 2, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Rank": 2 + "Id": 1454 }, { - "Id": 1455, "CommandName": "Set-PnPTenantSite", + "Rank": 3, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Rank": 3 + "Id": 1455 }, { - "Id": 1456, "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": 1456 }, { - "Id": 1457, "CommandName": "Set-PnPTenantSite", + "Rank": 5, "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Rank": 5 + "Id": 1457 }, { - "Id": 1458, "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 1, "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Rank": 1 + "Id": 1458 }, { - "Id": 1459, "CommandName": "Set-PnPTenantSyncClientRestriction", + "Rank": 2, "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Rank": 2 + "Id": 1459 }, { - "Id": 1460, "CommandName": "Set-PnPTerm", + "Rank": 1, "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Rank": 1 + "Id": 1460 }, { - "Id": 1461, "CommandName": "Set-PnPTerm", + "Rank": 2, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 2 + "Id": 1461 }, { - "Id": 1462, "CommandName": "Set-PnPTerm", + "Rank": 3, "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Rank": 3 + "Id": 1462 }, { - "Id": 1463, "CommandName": "Set-PnPTermGroup", + "Rank": 1, "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Rank": 1 + "Id": 1463 }, { - "Id": 1464, "CommandName": "Set-PnPTermSet", + "Rank": 1, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Rank": 1 + "Id": 1464 }, { - "Id": 1465, "CommandName": "Set-PnPTermSet", + "Rank": 2, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Rank": 2 + "Id": 1465 }, { - "Id": 1466, "CommandName": "Set-PnPTermSet", + "Rank": 3, "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Rank": 3 + "Id": 1466 }, { - "Id": 1467, "CommandName": "Set-PnPTheme", + "Rank": 1, "Command": "Set-PnPTheme", - "Rank": 1 + "Id": 1467 }, { - "Id": 1468, "CommandName": "Set-PnPTheme", + "Rank": 2, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Rank": 2 + "Id": 1468 }, { - "Id": 1469, "CommandName": "Set-PnPTheme", + "Rank": 3, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Rank": 3 + "Id": 1469 }, { - "Id": 1470, "CommandName": "Set-PnPTheme", + "Rank": 4, "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Rank": 4 + "Id": 1470 }, { - "Id": 1471, "CommandName": "Set-PnPTraceLog", + "Rank": 1, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Rank": 1 + "Id": 1471 }, { - "Id": 1472, "CommandName": "Set-PnPTraceLog", + "Rank": 2, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Rank": 2 + "Id": 1472 }, { - "Id": 1473, "CommandName": "Set-PnPTraceLog", + "Rank": 3, "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Rank": 3 + "Id": 1473 }, { - "Id": 1474, "CommandName": "Set-PnPTraceLog", + "Rank": 4, "Command": "Set-PnPTraceLog -Off", - "Rank": 4 + "Id": 1474 }, { - "Id": 1475, "CommandName": "Set-PnPUserOneDriveQuota", + "Rank": 1, "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Rank": 1 + "Id": 1475 }, { - "Id": 1476, "CommandName": "Set-PnPUserProfileProperty", + "Rank": 1, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Rank": 1 + "Id": 1476 }, { - "Id": 1477, "CommandName": "Set-PnPUserProfileProperty", + "Rank": 2, "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Rank": 2 + "Id": 1477 }, { - "Id": 1478, "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": 1478 }, { - "Id": 1479, "CommandName": "Set-PnPView", + "Rank": 2, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Rank": 2 + "Id": 1479 }, { - "Id": 1480, "CommandName": "Set-PnPView", + "Rank": 3, "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "Rank": 3 + "Id": 1480 }, { - "Id": 1481, "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": 1481 }, { - "Id": 1482, "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": 1482 }, { - "Id": 1483, "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 2, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Rank": 2 + "Id": 1483 }, { - "Id": 1484, "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": 1484 }, { - "Id": 1485, "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Rank": 4, "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Rank": 4 + "Id": 1485 }, { - "Id": 1486, "CommandName": "Set-PnPWeb", + "Rank": 1, "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Rank": 1 + "Id": 1486 }, { - "Id": 1487, "CommandName": "Set-PnPWeb", + "Rank": 2, "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Rank": 2 + "Id": 1487 }, { - "Id": 1488, "CommandName": "Set-PnPWeb", + "Rank": 3, "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Rank": 3 + "Id": 1488 }, { - "Id": 1489, "CommandName": "Set-PnPWeb", + "Rank": 4, "Command": "Set-PnPWeb -NoCrawl:$true", - "Rank": 4 + "Id": 1489 }, { - "Id": 1490, "CommandName": "Set-PnPWebHeader", + "Rank": 1, "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Rank": 1 + "Id": 1490 }, { - "Id": 1491, "CommandName": "Set-PnPWebHeader", + "Rank": 2, "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Rank": 2 + "Id": 1491 }, { - "Id": 1492, "CommandName": "Set-PnPWebHeader", + "Rank": 3, "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Rank": 3 + "Id": 1492 }, { - "Id": 1493, "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": 1493 }, { - "Id": 1494, "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": 1494 }, { - "Id": 1495, "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": 1495 }, { - "Id": 1496, "CommandName": "Set-PnPWebPermission", + "Rank": 1, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 1 + "Id": 1496 }, { - "Id": 1497, "CommandName": "Set-PnPWebPermission", + "Rank": 2, "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Rank": 2 + "Id": 1497 }, { - "Id": 1498, "CommandName": "Set-PnPWebPermission", + "Rank": 3, "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Rank": 3 + "Id": 1498 }, { - "Id": 1499, "CommandName": "Set-PnPWebPermission", + "Rank": 4, "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Rank": 4 + "Id": 1499 }, { - "Id": 1500, "CommandName": "Set-PnPWebTheme", + "Rank": 1, "Command": "Set-PnPWebTheme -Theme MyTheme", - "Rank": 1 + "Id": 1500 }, { - "Id": 1501, "CommandName": "Set-PnPWebTheme", + "Rank": 2, "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Rank": 2 + "Id": 1501 }, { - "Id": 1502, "CommandName": "Set-PnPWikiPageContent", + "Rank": 1, "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Rank": 1 + "Id": 1502 }, { - "Id": 1503, "CommandName": "Submit-PnPSearchQuery", + "Rank": 1, "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Rank": 1 + "Id": 1503 }, { - "Id": 1504, "CommandName": "Submit-PnPSearchQuery", + "Rank": 2, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Rank": 2 + "Id": 1504 }, { - "Id": 1505, "CommandName": "Submit-PnPSearchQuery", + "Rank": 3, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Rank": 3 + "Id": 1505 }, { - "Id": 1506, "CommandName": "Submit-PnPSearchQuery", + "Rank": 4, "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Rank": 4 + "Id": 1506 }, { - "Id": 1507, "CommandName": "Submit-PnPSearchQuery", + "Rank": 5, "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Rank": 5 + "Id": 1507 }, { - "Id": 1508, "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 1, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Rank": 1 + "Id": 1508 }, { - "Id": 1509, "CommandName": "Submit-PnPTeamsChannelMessage", + "Rank": 2, "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Rank": 2 + "Id": 1509 }, { - "Id": 1510, "CommandName": "Sync-PnPAppToTeams", + "Rank": 1, "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Id": 1510 }, { - "Id": 1511, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 1, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Rank": 1 + "Id": 1511 }, { - "Id": 1512, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 2, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Rank": 2 + "Id": 1512 }, { - "Id": 1513, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Rank": 3, "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Rank": 3 + "Id": 1513 }, { - "Id": 1514, "CommandName": "Test-PnPListItemIsRecord", + "Rank": 1, "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Rank": 1 + "Id": 1514 }, { - "Id": 1515, "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Rank": 1, "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Rank": 1 + "Id": 1515 }, { - "Id": 1516, "CommandName": "Test-PnPSite", + "Rank": 1, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Rank": 1 + "Id": 1516 }, { - "Id": 1517, "CommandName": "Test-PnPSite", + "Rank": 2, "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Rank": 2 + "Id": 1517 }, { - "Id": 1518, "CommandName": "Test-PnPTenantTemplate", + "Rank": 1, "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Rank": 1 + "Id": 1518 }, { - "Id": 1519, "CommandName": "Undo-PnPFileCheckedOut", + "Rank": 1, "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Rank": 1 + "Id": 1519 }, { - "Id": 1520, "CommandName": "Uninstall-PnPApp", + "Rank": 1, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Id": 1520 }, { - "Id": 1521, "CommandName": "Uninstall-PnPApp", + "Rank": 2, "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "Id": 1521 }, { - "Id": 1522, "CommandName": "Unpublish-PnPApp", + "Rank": 1, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Id": 1522 }, { - "Id": 1523, "CommandName": "Unpublish-PnPApp", + "Rank": 2, "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "Id": 1523 }, { - "Id": 1524, "CommandName": "Unpublish-PnPContentType", + "Rank": 1, "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Rank": 1 + "Id": 1524 }, { - "Id": 1525, "CommandName": "Unpublish-PnPSyntexModel", + "Rank": 1, "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Rank": 1 + "Id": 1525 }, { - "Id": 1526, "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": 1526 }, { - "Id": 1527, "CommandName": "Unregister-PnPHubSite", + "Rank": 1, "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Rank": 1 + "Id": 1527 }, { - "Id": 1528, "CommandName": "Update-PnPApp", + "Rank": 1, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Rank": 1 + "Id": 1528 }, { - "Id": 1529, "CommandName": "Update-PnPApp", + "Rank": 2, "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Rank": 2 + "Id": 1529 }, { - "Id": 1530, "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 1, "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Rank": 1 + "Id": 1530 }, { - "Id": 1531, "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 2, "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Rank": 2 + "Id": 1531 }, { - "Id": 1532, "CommandName": "Update-PnPAvailableSiteClassification", + "Rank": 3, "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Rank": 3 + "Id": 1532 }, { - "Id": 1533, "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 1, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Rank": 1 + "Id": 1533 }, { - "Id": 1534, "CommandName": "Update-PnPSiteDesignFromWeb", + "Rank": 2, "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Rank": 2 + "Id": 1534 }, { - "Id": 1535, "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": 1535 }, { - "Id": 1536, "CommandName": "Update-PnPTeamsApp", + "Rank": 1, "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Rank": 1 + "Id": 1536 }, { - "Id": 1537, "CommandName": "Update-PnPTeamsUser", + "Rank": 1, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Rank": 1 + "Id": 1537 }, { - "Id": 1538, "CommandName": "Update-PnPTeamsUser", + "Rank": 2, "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Rank": 2 + "Id": 1538 }, { - "Id": 1539, "CommandName": "Update-PnPTeamsUser", + "Rank": 3, "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Rank": 3 + "Id": 1539 }, { - "Id": 1540, "CommandName": "Update-PnPUserType", + "Rank": 1, "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Rank": 1 + "Id": 1540 } ] diff --git a/version.txt b/version.txt index fec1c0ee0..386a6870c 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.24 \ No newline at end of file +2.2.25 \ No newline at end of file