diff --git a/CHANGELOG.md b/CHANGELOG.md index 2751d5fd8..d9238677d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,9 +11,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Added - 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 `-Includes` option to `Get-PnPListItem` which allows for specifying additional fields to be retrieved. [#3270](https://github.com/pnp/powershell/pull/3270) +- 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) - Added `AzureADLoginEndPoint` and `MicrosoftGraphEndPoint` parameters to `Connect-PnPOnline` cmdlet for use in custom Azure environments. [#2925](https://github.com/pnp/powershell/pull/2925) +- Added `-SharingStatus` parameter to `Get-PnPFlow` which allows for filtering flows based on their sharing status. [#3287](https://github.com/pnp/powershell/pull/3287) +- Added `-AzureADLoginEndPoint` and `-MicrosoftGraphEndPoint` parameters to `Connect-PnPOnline` cmdlet for use in custom Azure environments. [#2925](https://github.com/pnp/powershell/pull/2925) ### Fixed @@ -25,9 +28,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - 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) - Fixed issue with `-ArchiveRedirectUrl` parameter not working correctly in `Set-PnPTenant` cmdlet. [#3289](https://github.com/pnp/powershell/pull/3289) +- Fixed `New-PnPAzureADGroup` cmdlet throwing null reference error when owners and members are not specified. [#3308](https://github.com/pnp/powershell/pull/3308) +- Fixed `New-PnPTeamsTeam` cmdlet, it will now throw error if it fails to teamify a Microsoft 365 group. [#3310](https://github.com/pnp/powershell/pull/3310) +- Fixed `Connect-PnPOnline` cmdlet throwing host not reachable errors. [#3337](https://github.com/pnp/powershell/pull/3337) +- Fixed `Set-PnPTerm` cmdlet throwing object reference error when only the term Id is specified. [#3341](https://github.com/pnp/powershell/pull/3341) + +### Changed + +- Improved `Set-PnPListItem` cmdlet handling of Purview labels. [#3340](https://github.com/pnp/powershell/pull/3340) ### Contributors +- Per Østergaard [per-oestergaard] +- Nishkalank Bezawada [NishkalankBezawada] +- [PowerBugi] - Ganesh Sanap [ganesh-sanap] - Siddharth Vaghasia [siddharth-vaghasia] - Giacomo Pozzoni [jackpoz] diff --git a/MIGRATE-1.0-to-2.0.md b/MIGRATE-1.0-to-2.0.md index 3354aa0f6..a623896fb 100644 --- a/MIGRATE-1.0-to-2.0.md +++ b/MIGRATE-1.0-to-2.0.md @@ -57,7 +57,7 @@ Using PnP PowerShell in Azure functions ? You might be required to change the Pn | ----------- | ---------------------- | -------------------- | --------------------- | | New-PnPTenantSite | Force | - | The parameter was obsolete and not used. It has been removed. | | Set-PnPTenantSite | BlockDownloadOfNonViewableFiles | AllowDownloadingNonWebViewableFiles | The parameter was obsolete and hence removed. Use `AllowDownloadingNonWebViewableFiles` | -| Connect-PnPOnline | NoTelemetry | - | The parameter was obsolete and hence removed. Use `$env:PNP_DISABLETELEMETRY` environment variable or `Disable-PnPTelemetry/Enable-PnPTelemetry` cmdlet | +| Connect-PnPOnline | NoTelemetry | - | The parameter was obsolete and hence removed. Use `$env:PNPPOWERSHELL_DISABLETELEMETRY` environment variable or `Disable-PnPTelemetry/Enable-PnPTelemetry` cmdlet | | Connect-PnPOnline | NoVersionCheck | - | The parameter was obsolete and hence removed. Use `$env:PNPPOWERSHELL_UPDATECHECK` environment variable | | Disconnect-PnPOnline | Connection | - | The parameter was obsolete and hence removed. | | Request-PnPAccessToken | Resource | Scopes | The parameter was obsolete and hence removed. Use `Scopes` instead | @@ -90,4 +90,4 @@ Using PnP PowerShell in Azure functions ? You might be required to change the Pn - The output type of `Get-PnPAzureADGroupMember` has changed to `PnP.PowerShell.Commands.Model.Microsoft365User` - The output type of `Get-PnPAzureADGroup` has changed to `PnP.PowerShell.Commands.Model.Graph.Group` - The output type of `New-PnPAzureADGroup` has changed to `PnP.PowerShell.Commands.Model.Graph.Group` -- The output type of `Get-PnPUserProfileProperty` has changed to `SortedDictionary` \ No newline at end of file +- The output type of `Get-PnPUserProfileProperty` has changed to `SortedDictionary` diff --git a/documentation/Find-PnPFile.md b/documentation/Find-PnPFile.md index 4bfdbaf35..86874f07d 100644 --- a/documentation/Find-PnPFile.md +++ b/documentation/Find-PnPFile.md @@ -103,7 +103,7 @@ Accept wildcard characters: False ``` ### -Match -Wildcard query +Wildcard query using * (any number of charactes) and ? (single character) ```yaml Type: String @@ -113,7 +113,7 @@ Required: True Position: 0 Default value: None Accept pipeline input: True (ByValue) -Accept wildcard characters: False +Accept wildcard characters: True ``` diff --git a/documentation/Get-PnPAzureACSPrincipal.md b/documentation/Get-PnPAzureACSPrincipal.md index b501e0ff7..6fa6341ea 100644 --- a/documentation/Get-PnPAzureACSPrincipal.md +++ b/documentation/Get-PnPAzureACSPrincipal.md @@ -25,6 +25,8 @@ Get-PnPAzureACSPrincipal [-Scope ] [-IncludeSubsites -AsFileObject [-Connection ] - +Get-PnPFile -Url -AsFileObject [-Connection ] ``` ### Return as list item ```powershell -Get-PnPFile [-Url] -AsListItem [-ThrowExceptionIfFileNotFound] - [-Connection ] +Get-PnPFile -Url -AsListItem [-ThrowExceptionIfFileNotFound] [-Connection ] ``` ### Save to local path ```powershell -Get-PnPFile [-Url] -AsFile [-Path ] [-Filename ] [-Force] - [-Connection ] +Get-PnPFile -Url -AsFile -Path -Filename [-Force] [-Connection ] ``` ### Return as string ```powershell -Get-PnPFile [-Url] -AsString [-Connection ] +Get-PnPFile -Url -AsString [-Connection ] +``` + +### Return as memorystream +```powershell +Get-PnPFile -Url -AsMemoryStream [-Connection ] ``` ## DESCRIPTION diff --git a/documentation/Get-PnPFlow.md b/documentation/Get-PnPFlow.md index 6a622e66b..2328b0a9c 100644 --- a/documentation/Get-PnPFlow.md +++ b/documentation/Get-PnPFlow.md @@ -15,31 +15,48 @@ title: Get-PnPFlow * Azure: management.azure.com -Returns the flows for a given environment +Returns Power Automate Flows ## SYNTAX +### All (Default) ```powershell -Get-PnPFlow [-Environment ] [-AsAdmin] [-Identity ] -[-Connection ] [-Verbose] +Get-PnPFlow [-Environment ] [-AsAdmin] [-SharingStatus ] [-Connection ] [-Verbose] +``` + +### By Identity +```powershell +Get-PnPFlow [-Environment ] [-AsAdmin] [-Identity ] [-Connection ] [-Verbose] ``` ## DESCRIPTION -This cmdlet returns the flows for a given environment. +This cmdlet returns Power Automate Flows meeting the specified criteria. ## EXAMPLES ### Example 1 ```powershell -Get-PnPPowerPlatformEnvironment -Identity "MyOrganization (default)" | Get-PnPFlow +Get-PnPFlow -AsAdmin ``` -This returns all the flows for a given Power Platform environment +Returns all the flows in the default Power Platform environment belonging to any user ### Example 2 ```powershell +Get-PnPPowerPlatformEnvironment -Identity "MyOrganization (default)" | Get-PnPFlow +``` +Returns all the flows for a given Power Platform environment belonging to the current user + +### Example 3 +```powershell +Get-PnPFlow -SharingStatus SharedWithMe +``` +Returns all the flows which have been shared with the current user in the default Power Platform environment + +### Example 4 +```powershell Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182 ``` -This returns a specific flow from the default environment +Returns a specific flow from the default Power Platform environment ## PARAMETERS @@ -63,7 +80,7 @@ The Name/Id of the flow to retrieve. ```yaml Type: PowerPlatformPipeBind -Parameter Sets: (All) +Parameter Sets: By Identity Aliases: Required: False @@ -104,6 +121,20 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SharingStatus +Allows specifying the type of Power Automate Flows that should be returned. Valid values: All, SharedWithMe, Personal. + +```yaml +Type: FlowSharingStatus +Parameter Sets: All + +Required: False +Position: Named +Default value: All +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Verbose When provided, additional debug statements will be shown while executing the cmdlet. diff --git a/documentation/Submit-PnPTeamsChannelMessage.md b/documentation/Submit-PnPTeamsChannelMessage.md index 215759cbb..c8c24a6b9 100644 --- a/documentation/Submit-PnPTeamsChannelMessage.md +++ b/documentation/Submit-PnPTeamsChannelMessage.md @@ -13,7 +13,7 @@ online version: https://pnp.github.io/powershell/cmdlets/Submit-PnPTeamsChannelM **Required Permissions** - * Microsoft Graph API: API required one of 'Teamwork.Migrate.All, ChannelMessage.ReadWrite.All'. + * Microsoft Graph API: API required one of: `Teamwork.Migrate.All, ChannelMessage.Send or Group.ReadWrite.All`. Sends a message to a Microsoft Teams Channel. diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index c238811a7..cb4d2486a 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -68a74deb61639d98cf3573b73aec2531fe31367f \ No newline at end of file +3dfef0d44df853b5bf4ad4390ce6b3fee0f10d92 \ No newline at end of file diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 6c391f653..0caf06d47 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -d90091873176a477cb70a321d177d0a8190ba63a \ No newline at end of file +9aee231f630906ac884c417351a102fb5743ef05 \ 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 795dc59d0..3eaf2b7c4 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9248 +1,9260 @@ [ { - "Command": "Add-PnPAlert -List \"Demo List\"", - "Id": 1, + "Rank": 1, "CommandName": "Add-PnPAlert", - "Rank": 1 + "Command": "Add-PnPAlert -List \"Demo List\"", + "Id": 1 }, { - "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)", - "Id": 2, + "Rank": 2, "CommandName": "Add-PnPAlert", - "Rank": 2 + "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)", + "Id": 2 }, { - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 3, + "Rank": 3, "CommandName": "Add-PnPAlert", - "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\" -Frequency Daily -Time ((Get-Date).AddDays(1))", - "Id": 4, + "Rank": 4, "CommandName": "Add-PnPAlert", - "Rank": 4 + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\" -Frequency Daily -Time ((Get-Date).AddDays(1))", + "Id": 4 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg", - "Id": 5, + "Rank": 1, "CommandName": "Add-PnPApp", - "Rank": 1 + "Command": "Add-PnPApp -Path ./myapp.sppkg", + "Id": 5 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", - "Id": 6, + "Rank": 2, "CommandName": "Add-PnPApp", - "Rank": 2 + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", + "Id": 6 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", - "Id": 7, + "Rank": 3, "CommandName": "Add-PnPApp", - "Rank": 3 + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", + "Id": 7 }, { - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", - "Id": 8, + "Rank": 4, "CommandName": "Add-PnPApp", - "Rank": 4 + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", + "Id": 8 }, { - "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", - "Id": 9, + "Rank": 1, "CommandName": "Add-PnPApplicationCustomizer", - "Rank": 1 + "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}", + "Id": 9 }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", - "Id": 10, + "Rank": 1, "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 1 + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", + "Id": 10 }, { - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", - "Id": 11, + "Rank": 2, "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 2 + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", + "Id": 11 }, { - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 12, + "Rank": 1, "CommandName": "Add-PnPAzureADGroupMember", - "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\" -RemoveExisting", - "Id": 13, + "Rank": 2, "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 \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Id": 14, + "Rank": 3, "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 3 + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Id": 14 }, { - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 15, + "Rank": 1, "CommandName": "Add-PnPAzureADGroupOwner", - "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\" -RemoveExisting", - "Id": 16, + "Rank": 2, "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 \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", - "Id": 17, + "Rank": 3, "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 3 + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", + "Id": 17 }, { - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph", - "Id": 18, + "Rank": 1, "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "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 \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", - "Id": 19, + "Rank": 2, "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Rank": 2 + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", + "Id": 19 }, { - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct", - "Id": 20, + "Rank": 1, "CommandName": "Add-PnPContentType", - "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 (Get-PnPContentType -Identity 0x0101) -DocumentTemplate \"/_cts/Project Document/template.docx\"", - "Id": 21, + "Rank": 2, "CommandName": "Add-PnPContentType", - "Rank": 2 + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType (Get-PnPContentType -Identity 0x0101) -DocumentTemplate \"/_cts/Project Document/template.docx\"", + "Id": 21 }, { - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", - "Id": 22, + "Rank": 3, "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\"", - "Id": 23, + "Rank": 4, "CommandName": "Add-PnPContentType", - "Rank": 4 + "Command": "Add-PnPContentType -Name \"Project Item\"", + "Id": 23 }, { - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", - "Id": 24, + "Rank": 5, "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-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", - "Id": 25, + "Rank": 1, "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 1 + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", + "Id": 25 }, { - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", - "Id": 26, + "Rank": 2, "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 2 + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", + "Id": 26 }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Id": 27, + "Rank": 1, "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 1 + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Id": 27 }, { - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Id": 28, + "Rank": 2, "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 2 + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Id": 28 }, { - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", - "Id": 29, + "Rank": 1, "CommandName": "Add-PnPContentTypeToList", - "Rank": 1 + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", + "Id": 29 }, { - "Command": "Add-PnPCustomAction -Title \"CollabFooter\" -Name \"CollabFooter\" -Location \"ClientSideExtension.ApplicationCustomizer\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "Id": 30, + "Rank": 1, "CommandName": "Add-PnPCustomAction", - "Rank": 1 + "Command": "Add-PnPCustomAction -Title \"CollabFooter\" -Name \"CollabFooter\" -Location \"ClientSideExtension.ApplicationCustomizer\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", + "Id": 30 }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", - "Id": 31, + "Rank": 1, "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 1 + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", + "Id": 31 }, { - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", - "Id": 32, + "Rank": 2, "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 2 + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", + "Id": 32 }, { - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", - "Id": 33, + "Rank": 1, "CommandName": "Add-PnPDocumentSet", - "Rank": 1 + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", + "Id": 33 }, { - "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", - "Id": 34, + "Rank": 1, "CommandName": "Add-PnPEventReceiver", - "Rank": 1 + "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous", + "Id": 34 }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", - "Id": 35, + "Rank": 2, "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 ListAdding -Synchronization Synchronous -Scope Site", - "Id": 36, + "Rank": 3, "CommandName": "Add-PnPEventReceiver", - "Rank": 3 + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", + "Id": 36 }, { - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", - "Id": 37, + "Rank": 4, "CommandName": "Add-PnPEventReceiver", - "Rank": 4 + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", + "Id": 37 }, { - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", - "Id": 38, + "Rank": 1, "CommandName": "Add-PnPField", - "Rank": 1 + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", + "Id": 38 }, { - "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", - "Id": 39, + "Rank": 2, "CommandName": "Add-PnPField", - "Rank": 2 + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", + "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\"", - "Id": 40, + "Rank": 3, "CommandName": "Add-PnPField", - "Rank": 3 + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"", + "Id": 40 }, { - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", - "Id": 41, + "Rank": 4, "CommandName": "Add-PnPField", - "Rank": 4 + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", + "Id": 41 }, { - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", - "Id": 42, + "Rank": 5, "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 Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", - "Id": 43, + "Rank": 6, "CommandName": "Add-PnPField", - "Rank": 6 + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", + "Id": 43 }, { - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Id": 44, + "Rank": 1, "CommandName": "Add-PnPFieldToContentType", - "Rank": 1 + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Id": 44 }, { - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", - "Id": 45, + "Rank": 1, "CommandName": "Add-PnPFile", - "Rank": 1 + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", + "Id": 45 }, { - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", - "Id": 46, + "Rank": 2, "CommandName": "Add-PnPFile", - "Rank": 2 + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", + "Id": 46 }, { - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", - "Id": 47, + "Rank": 3, "CommandName": "Add-PnPFile", - "Rank": 3 + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"1/1/2016\"}", + "Id": 47 }, { - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"1/1/2016\"}", - "Id": 48, + "Rank": 4, "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 -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"1/1/2016\"}", - "Id": 49, + "Rank": 5, "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.docx -Folder \"Documents\" -Values @{Modified=\"1/1/2016\"; Created=\"1/1/2017\"; Editor=23}", - "Id": 50, + "Rank": 6, "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\" -NewFileName \"differentname.docx\"", - "Id": 51, + "Rank": 7, "CommandName": "Add-PnPFile", - "Rank": 7 + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", + "Id": 51 }, { - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", - "Id": 52, + "Rank": 8, "CommandName": "Add-PnPFile", - "Rank": 8 + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", + "Id": 52 }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 53, + "Rank": 1, "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 1 + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 53 }, { - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", - "Id": 54, + "Rank": 2, "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 View -ExpirationDateTime (Get-Date).AddDays(15)", - "Id": 55, + "Rank": 3, "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-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 56, + "Rank": 1, "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Rank": 1 + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 56 }, { - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", - "Id": 57, + "Rank": 2, "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Rank": 2 + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", + "Id": 57 }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Id": 58, + "Rank": 1, "CommandName": "Add-PnPFileSharingInvite", - "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 -SendInvitation -Role Owner", - "Id": 59, + "Rank": 2, "CommandName": "Add-PnPFileSharingInvite", - "Rank": 2 + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "Id": 59 }, { - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", - "Id": 60, + "Rank": 3, "CommandName": "Add-PnPFileSharingInvite", - "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-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", - "Id": 61, + "Rank": 1, "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 1 + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", + "Id": 61 }, { - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", - "Id": 62, + "Rank": 2, "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 template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", - "Id": 63, + "Rank": 3, "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 $sourceFilePath -Folder $targetFolder -Container $container", - "Id": 64, + "Rank": 4, "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 -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", - "Id": 65, + "Rank": 5, "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 5 + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", + "Id": 65 }, { - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 66, + "Rank": 1, "CommandName": "Add-PnPFileUserSharingLink", - "Rank": 1 + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 66 }, { - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 67, + "Rank": 2, "CommandName": "Add-PnPFileUserSharingLink", - "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-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Id": 68, + "Rank": 1, "CommandName": "Add-PnPFolder", - "Rank": 1 + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Id": 68 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", - "Id": 69, + "Rank": 2, "CommandName": "Add-PnPFolder", - "Rank": 2 + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", + "Id": 69 }, { - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", - "Id": 70, + "Rank": 3, "CommandName": "Add-PnPFolder", - "Rank": 3 + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", + "Id": 70 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 71, + "Rank": 1, "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 1 + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 71 }, { - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", - "Id": 72, + "Rank": 2, "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!\" -ExpirationDateTime (Get-Date).AddDays(15)", - "Id": 73, + "Rank": 3, "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 3 + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", + "Id": 73 }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 74, + "Rank": 1, "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 1 + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 74 }, { - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", - "Id": 75, + "Rank": 2, "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 2 + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", + "Id": 75 }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", - "Id": 76, + "Rank": 1, "CommandName": "Add-PnPFolderSharingInvite", - "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 -SendInvitation -Role Owner", - "Id": 77, + "Rank": 2, "CommandName": "Add-PnPFolderSharingInvite", - "Rank": 2 + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", + "Id": 77 }, { - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", - "Id": 78, + "Rank": 3, "CommandName": "Add-PnPFolderSharingInvite", - "Rank": 3 + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", + "Id": 78 }, { - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 79, + "Rank": 1, "CommandName": "Add-PnPFolderUserSharingLink", - "Rank": 1 + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 79 }, { - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 80, + "Rank": 2, "CommandName": "Add-PnPFolderUserSharingLink", - "Rank": 2 + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 80 }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Id": 81, + "Rank": 1, "CommandName": "Add-PnPGroupMember", - "Rank": 1 + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Id": 81 }, { - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", - "Id": 82, + "Rank": 2, "CommandName": "Add-PnPGroupMember", - "Rank": 2 + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", + "Id": 82 }, { - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Id": 83, + "Rank": 1, "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Rank": 1 + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Id": 83 }, { - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", - "Id": 84, + "Rank": 1, "CommandName": "Add-PnPHubSiteAssociation", - "Rank": 1 + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", + "Id": 84 }, { - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", - "Id": 85, + "Rank": 1, "CommandName": "Add-PnPHubToHubAssociation", - "Rank": 1 + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", + "Id": 85 }, { - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", - "Id": 86, + "Rank": 2, "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/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, "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-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", - "Id": 88, + "Rank": 1, "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 1 + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", + "Id": 88 }, { - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", - "Id": 89, + "Rank": 2, "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 2 + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", + "Id": 89 }, { - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", - "Id": 90, + "Rank": 1, "CommandName": "Add-PnPJavaScriptLink", - "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", - "Id": 91, + "Rank": 2, "CommandName": "Add-PnPJavaScriptLink", - "Rank": 2 + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", + "Id": 91 }, { - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", - "Id": 92, + "Rank": 1, "CommandName": "Add-PnPListDesign", - "Rank": 1 + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", + "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\"", - "Id": 93, + "Rank": 2, "CommandName": "Add-PnPListDesign", - "Rank": 2 + "Command": "Add-PnPListDesign -Title \"My Company Design\" -SiteScriptIds \"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -ListColor Orange -ListIcon BullseyeTarget -ThumbnailUrl \"https://contoso.sharepoint.com/SiteAssets/site-thumbnail.png\"", + "Id": 93 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", - "Id": 94, + "Rank": 1, "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 1 + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", + "Id": 94 }, { - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", - "Id": 95, + "Rank": 2, "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 -IncludeSecurity", - "Id": 96, + "Rank": 3, "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 3 + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", + "Id": 96 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 97, + "Rank": 1, "CommandName": "Add-PnPListItem", - "Rank": 1 + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 97 }, { - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 98, + "Rank": 2, "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\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", - "Id": 99, + "Rank": 3, "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 @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", - "Id": 100, + "Rank": 4, "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\"} -Label \"Public\"", - "Id": 101, + "Rank": 5, "CommandName": "Add-PnPListItem", - "Rank": 5 + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", + "Id": 101 }, { - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", - "Id": 102, + "Rank": 1, "CommandName": "Add-PnPListItemAttachment", - "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 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", - "Id": 103, + "Rank": 2, "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.mp4\" -Stream $fileStream", - "Id": 104, + "Rank": 3, "CommandName": "Add-PnPListItemAttachment", - "Rank": 3 + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", + "Id": 104 }, { - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", - "Id": 105, + "Rank": 1, "CommandName": "Add-PnPListItemComment", - "Rank": 1 + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", + "Id": 105 }, { - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", - "Id": 106, + "Rank": 1, "CommandName": "Add-PnPMasterPage", - "Rank": 1 + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", + "Id": 106 }, { - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 107, + "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupMember", - "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\" -RemoveExisting", - "Id": 108, + "Rank": 2, "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-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 109, + "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupOwner", - "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\" -RemoveExisting", - "Id": 110, + "Rank": 2, "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-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", - "Id": 111, + "Rank": 1, "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 1 + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", + "Id": 111 }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", - "Id": 112, + "Rank": 2, "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 2 + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", + "Id": 112 }, { - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", - "Id": 113, + "Rank": 3, "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 3 + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", + "Id": 113 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", - "Id": 114, + "Rank": 1, "CommandName": "Add-PnPNavigationNode", - "Rank": 1 + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", + "Id": 114 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", - "Id": 115, + "Rank": 2, "CommandName": "Add-PnPNavigationNode", - "Rank": 2 + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", + "Id": 115 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", - "Id": 116, + "Rank": 3, "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 Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", - "Id": 117, + "Rank": 4, "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 \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", - "Id": 118, + "Rank": 5, "CommandName": "Add-PnPNavigationNode", - "Rank": 5 + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", + "Id": 118 }, { - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", - "Id": 119, + "Rank": 6, "CommandName": "Add-PnPNavigationNode", - "Rank": 6 + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", + "Id": 119 }, { - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", - "Id": 120, + "Rank": 7, "CommandName": "Add-PnPNavigationNode", - "Rank": 7 + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", + "Id": 120 }, { - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", - "Id": 121, + "Rank": 8, "CommandName": "Add-PnPNavigationNode", - "Rank": 8 + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", + "Id": 121 }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", - "Id": 122, + "Rank": 1, "CommandName": "Add-PnPOrgAssetsLibrary", - "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\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", - "Id": 123, + "Rank": 2, "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 2 + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", + "Id": 123 }, { - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", - "Id": 124, + "Rank": 3, "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 3 + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", + "Id": 124 }, { - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", - "Id": 125, + "Rank": 1, "CommandName": "Add-PnPOrgNewsSite", - "Rank": 1 + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", + "Id": 125 }, { - "Command": "Add-PnPPage -Name \"NewPage\"", - "Id": 126, + "Rank": 1, "CommandName": "Add-PnPPage", - "Rank": 1 + "Command": "Add-PnPPage -Name \"NewPage\"", + "Id": 126 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", - "Id": 127, + "Rank": 2, "CommandName": "Add-PnPPage", - "Rank": 2 + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", + "Id": 127 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", - "Id": 128, + "Rank": 3, "CommandName": "Add-PnPPage", - "Rank": 3 + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", + "Id": 128 }, { - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", - "Id": 129, + "Rank": 4, "CommandName": "Add-PnPPage", - "Rank": 4 + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", + "Id": 129 }, { - "Command": "Add-PnPPage -Name \"Folder/NewPage\"", - "Id": 130, + "Rank": 5, "CommandName": "Add-PnPPage", - "Rank": 5 + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", + "Id": 130 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", - "Id": 131, + "Rank": 6, "CommandName": "Add-PnPPage", - "Rank": 6 + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", + "Id": 131 }, { - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", - "Id": 132, + "Rank": 7, "CommandName": "Add-PnPPage", - "Rank": 7 + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", + "Id": 132 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate", - "Id": 133, + "Rank": 8, "CommandName": "Add-PnPPage", - "Rank": 8 + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", + "Id": 133 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Id": 134, + "Rank": 9, "CommandName": "Add-PnPPage", - "Rank": 9 + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Id": 134 }, { - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Id": 135, + "Rank": 10, "CommandName": "Add-PnPPage", - "Rank": 10 + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Id": 135 }, { - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", - "Id": 136, + "Rank": 1, "CommandName": "Add-PnPPageImageWebPart", - "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\" -ImageWidth 400 -ImageHeight 200 -Caption \"Caption text\" -AlternativeText \"Alt text\" -Link \"https://pnp.github.io\"", - "Id": 137, + "Rank": 2, "CommandName": "Add-PnPPageImageWebPart", - "Rank": 2 + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -ImageWidth 400 -ImageHeight 200 -Caption \"Caption text\" -AlternativeText \"Alt text\" -Link \"https://pnp.github.io\"", + "Id": 137 }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", - "Id": 138, + "Rank": 1, "CommandName": "Add-PnPPageSection", - "Rank": 1 + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", + "Id": 138 }, { - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", - "Id": 139, + "Rank": 2, "CommandName": "Add-PnPPageSection", - "Rank": 2 + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", + "Id": 139 }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", - "Id": 140, + "Rank": 1, "CommandName": "Add-PnPPageTextPart", - "Rank": 1 + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", + "Id": 140 }, { - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", - "Id": 141, + "Rank": 2, "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\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", - "Id": 142, + "Rank": 3, "CommandName": "Add-PnPPageTextPart", - "Rank": 3 + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", + "Id": 142 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", - "Id": 143, + "Rank": 1, "CommandName": "Add-PnPPageWebPart", - "Rank": 1 + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", + "Id": 143 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", - "Id": 144, + "Rank": 2, "CommandName": "Add-PnPPageWebPart", - "Rank": 2 + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", + "Id": 144 }, { - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", - "Id": 145, + "Rank": 3, "CommandName": "Add-PnPPageWebPart", - "Rank": 3 + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", + "Id": 145 }, { - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", - "Id": 146, + "Rank": 1, "CommandName": "Add-PnPPlannerBucket", - "Rank": 1 + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", + "Id": 146 }, { - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", - "Id": 147, + "Rank": 2, "CommandName": "Add-PnPPlannerBucket", - "Rank": 2 + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", + "Id": 147 }, { - "Command": "Add-PnPPlannerRoster", - "Id": 148, + "Rank": 1, "CommandName": "Add-PnPPlannerRoster", - "Rank": 1 + "Command": "Add-PnPPlannerRoster", + "Id": 148 }, { - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 149, + "Rank": 1, "CommandName": "Add-PnPPlannerRosterMember", - "Rank": 1 + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 149 }, { - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Id": 150, + "Rank": 1, "CommandName": "Add-PnPPlannerTask", - "Rank": 1 + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Id": 150 }, { - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", - "Id": 151, + "Rank": 2, "CommandName": "Add-PnPPlannerTask", - "Rank": 2 + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", + "Id": 151 }, { - "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, "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-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Id": 153, + "Rank": 1, "CommandName": "Add-PnPPublishingImageRendition", - "Rank": 1 + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Id": 153 }, { - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", - "Id": 154, + "Rank": 1, "CommandName": "Add-PnPPublishingPage", - "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' -Folder '/Pages/folder'", - "Id": 155, + "Rank": 2, "CommandName": "Add-PnPPublishingPage", - "Rank": 2 + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", + "Id": 155 }, { - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", - "Id": 156, + "Rank": 1, "CommandName": "Add-PnPPublishingPageLayout", - "Rank": 1 + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", + "Id": 156 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", - "Id": 157, + "Rank": 1, "CommandName": "Add-PnPRoleDefinition", - "Rank": 1 + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", + "Id": 157 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", - "Id": 158, + "Rank": 2, "CommandName": "Add-PnPRoleDefinition", - "Rank": 2 + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", + "Id": 158 }, { - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", - "Id": 159, + "Rank": 3, "CommandName": "Add-PnPRoleDefinition", - "Rank": 3 + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", + "Id": 159 }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 160, + "Rank": 1, "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 1 + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 160 }, { - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 161, + "Rank": 2, "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 2 + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 161 }, { - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", - "Id": 162, + "Rank": 3, "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 3 + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", + "Id": 162 }, { - "Command": "Add-PnPSiteCollectionAppCatalog", - "Id": 163, + "Rank": 1, "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1 + "Command": "Add-PnPSiteCollectionAppCatalog", + "Id": 163 }, { - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Id": 164, + "Rank": 2, "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 2 + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "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", - "Id": 165, + "Rank": 1, "CommandName": "Add-PnPSiteDesign", - "Rank": 1 + "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite", + "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", - "Id": 166, + "Rank": 2, "CommandName": "Add-PnPSiteDesign", - "Rank": 2 + "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png", + "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\"", - "Id": 167, + "Rank": 3, "CommandName": "Add-PnPSiteDesign", - "Rank": 3 + "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"", + "Id": 167 }, { - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", - "Id": 168, + "Rank": 1, "CommandName": "Add-PnPSiteDesignFromWeb", - "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 -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Id": 169, + "Rank": 2, "CommandName": "Add-PnPSiteDesignFromWeb", - "Rank": 2 + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "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", - "Id": 170, + "Rank": 3, "CommandName": "Add-PnPSiteDesignFromWeb", - "Rank": 3 + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -Lists \"/lists/Issue list\" -ThumbnailUrl https://contoso.sharepoint.com/SiteAssets/logo.png", + "Id": 170 }, { - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", - "Id": 171, + "Rank": 1, "CommandName": "Add-PnPSiteDesignTask", - "Rank": 1 + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", + "Id": 171 }, { - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Id": 172, + "Rank": 2, "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-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", - "Id": 173, + "Rank": 1, "CommandName": "Add-PnPSiteScript", - "Rank": 1 + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", + "Id": 173 }, { - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", - "Id": 174, + "Rank": 1, "CommandName": "Add-PnPSiteScriptPackage", - "Rank": 1 + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", + "Id": 174 }, { - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", - "Id": 175, + "Rank": 1, "CommandName": "Add-PnPSiteTemplate", - "Rank": 1 + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", + "Id": 175 }, { - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", - "Id": 176, + "Rank": 1, "CommandName": "Add-PnPStoredCredential", - "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 -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Id": 177, + "Rank": 2, "CommandName": "Add-PnPStoredCredential", - "Rank": 2 + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "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\"", - "Id": 178, + "Rank": 3, "CommandName": "Add-PnPStoredCredential", - "Rank": 3 + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"", + "Id": 178 }, { - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", - "Id": 179, + "Rank": 1, "CommandName": "Add-PnPTaxonomyField", - "Rank": 1 + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", + "Id": 179 }, { - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", - "Id": 180, + "Rank": 2, "CommandName": "Add-PnPTaxonomyField", - "Rank": 2 + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", + "Id": 180 }, { - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", - "Id": 181, + "Rank": 1, "CommandName": "Add-PnPTeamsChannel", - "Rank": 1 + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", + "Id": 181 }, { - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", - "Id": 182, + "Rank": 2, "CommandName": "Add-PnPTeamsChannel", - "Rank": 2 + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", + "Id": 182 }, { - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", - "Id": 183, + "Rank": 3, "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 \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", - "Id": 184, + "Rank": 4, "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-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", - "Id": 185, + "Rank": 1, "CommandName": "Add-PnpTeamsChannelUser", - "Rank": 1 + "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", + "Id": 185 }, { - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", - "Id": 186, + "Rank": 2, "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-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", - "Id": 187, + "Rank": 1, "CommandName": "Add-PnPTeamsTab", - "Rank": 1 + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", + "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\"", - "Id": 188, + "Rank": 2, "CommandName": "Add-PnPTeamsTab", - "Rank": 2 + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type PDF -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/General/MyFile.pdf\" -EntityId \"null\"", + "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\"", - "Id": 189, + "Rank": 3, "CommandName": "Add-PnPTeamsTab", - "Rank": 3 + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type SharePointPageAndList -WebSiteUrl \"https://contoso.sharepoint.com/sites/Marketing/SitePages/Home.aspx\"", + "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", - "Id": 190, + "Rank": 4, "CommandName": "Add-PnPTeamsTab", - "Rank": 4 + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Excel Tab\" -Type Excel -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/My Excel File.csv\" -EntityId 6", + "Id": 190 }, { - "Command": "Add-PnPTeamsTeam", - "Id": 191, + "Rank": 1, "CommandName": "Add-PnPTeamsTeam", - "Rank": 1 + "Command": "Add-PnPTeamsTeam", + "Id": 191 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 192, + "Rank": 1, "CommandName": "Add-PnPTeamsUser", - "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 Member", - "Id": 193, + "Rank": 2, "CommandName": "Add-PnPTeamsUser", - "Rank": 2 + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Id": 193 }, { - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", - "Id": 194, + "Rank": 3, "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 -User \"jane@doe.com\" -Role Member -Channel Private", - "Id": 195, + "Rank": 4, "CommandName": "Add-PnPTeamsUser", - "Rank": 4 + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", + "Id": 195 }, { - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Id": 196, + "Rank": 1, "CommandName": "Add-PnPTenantCdnOrigin", - "Rank": 1 + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Id": 196 }, { - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", - "Id": 197, + "Rank": 1, "CommandName": "Add-PnPTenantSequence", - "Rank": 1 + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", + "Id": 197 }, { - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", - "Id": 198, + "Rank": 1, "CommandName": "Add-PnPTenantSequenceSite", - "Rank": 1 + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", + "Id": 198 }, { - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", - "Id": 199, + "Rank": 1, "CommandName": "Add-PnPTenantSequenceSubSite", - "Rank": 1 + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", + "Id": 199 }, { - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", - "Id": 200, + "Rank": 1, "CommandName": "Add-PnPTermToTerm", - "Rank": 1 + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", + "Id": 200 }, { - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", - "Id": 201, + "Rank": 1, "CommandName": "Add-PnPView", - "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\" -Paged -RowLimit 100", - "Id": 202, + "Rank": 2, "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\" -Aggregations \"\"", - "Id": 203, + "Rank": 3, "CommandName": "Add-PnPView", - "Rank": 3 + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", + "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\"", - "Id": 204, + "Rank": 1, "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Rank": 1 + "Command": "Add-PnPVivaConnectionsDashboardACE -Identity CardDesigner -Order 3 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Large -Description \"ACE description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"", + "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\"", - "Id": 205, + "Rank": 2, "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Rank": 2 + "Command": "Add-PnPVivaConnectionsDashboardACE -Identity ThirdPartyApp -Order 1 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Medium -Description \"ACE with description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"", + "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\"", - "Id": 206, + "Rank": 3, "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Rank": 3 + "Command": "Add-PnPVivaConnectionsDashboardACE -Identity AssignedTasks -Order 2 -Title \"Tasks\" -PropertiesJSON $myProperties -CardSize Medium -Description \"My Assigned tasks\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"", + "Id": 206 }, { - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Id": 207, + "Rank": 1, "CommandName": "Add-PnPWebhookSubscription", - "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 -ExpirationDate \"2017-09-01\"", - "Id": 208, + "Rank": 2, "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\" -ClientState \"Hello State!\"", - "Id": 209, + "Rank": 3, "CommandName": "Add-PnPWebhookSubscription", - "Rank": 3 + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", + "Id": 209 }, { - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", - "Id": 210, + "Rank": 1, "CommandName": "Add-PnPWebPartToWebPartPage", - "Rank": 1 + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", + "Id": 210 }, { - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", - "Id": 211, + "Rank": 2, "CommandName": "Add-PnPWebPartToWebPartPage", - "Rank": 2 + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", + "Id": 211 }, { - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", - "Id": 212, + "Rank": 1, "CommandName": "Add-PnPWebPartToWikiPage", - "Rank": 1 + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", + "Id": 212 }, { - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", - "Id": 213, + "Rank": 2, "CommandName": "Add-PnPWebPartToWikiPage", - "Rank": 2 + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", + "Id": 213 }, { - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", - "Id": 214, + "Rank": 1, "CommandName": "Add-PnPWikiPage", - "Rank": 1 + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", + "Id": 214 }, { - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", - "Id": 215, + "Rank": 1, "CommandName": "Clear-PnPAzureADGroupMember", - "Rank": 1 + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", + "Id": 215 }, { - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", - "Id": 216, + "Rank": 1, "CommandName": "Clear-PnPAzureADGroupOwner", - "Rank": 1 + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", + "Id": 216 }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", - "Id": 217, + "Rank": 1, "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 1 + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", + "Id": 217 }, { - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", - "Id": 218, + "Rank": 2, "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 2 + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", + "Id": 218 }, { - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Id": 219, + "Rank": 1, "CommandName": "Clear-PnPListItemAsRecord", - "Rank": 1 + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Id": 219 }, { - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", - "Id": 220, + "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Rank": 1 + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", + "Id": 220 }, { - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", - "Id": 221, + "Rank": 1, "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Rank": 1 + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", + "Id": 221 }, { - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Id": 222, + "Rank": 1, "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 1 + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Id": 222 }, { - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", - "Id": 223, + "Rank": 2, "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 2 + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", + "Id": 223 }, { - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", - "Id": 224, + "Rank": 3, "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 3 + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", + "Id": 224 }, { - "Command": "Clear-PnPTenantAppCatalogUrl", - "Id": 225, + "Rank": 1, "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1 + "Command": "Clear-PnPTenantAppCatalogUrl", + "Id": 225 }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 226, + "Rank": 1, "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 1 + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 226 }, { - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Id": 227, + "Rank": 2, "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 2 + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Id": 227 }, { - "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", - "Id": 228, + "Rank": 1, "CommandName": "Connect-PnPOnline", - "Rank": 1 + "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", + "Id": 228 }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", - "Id": 229, + "Rank": 1, "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 1 + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", + "Id": 229 }, { - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", - "Id": 230, + "Rank": 2, "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 2 + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", + "Id": 230 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml", - "Id": 231, + "Rank": 1, "CommandName": "Convert-PnPSiteTemplate", - "Rank": 1 + "Command": "Convert-PnPSiteTemplate -Path template.xml", + "Id": 231 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", - "Id": 232, + "Rank": 2, "CommandName": "Convert-PnPSiteTemplate", - "Rank": 2 + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", + "Id": 232 }, { - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", - "Id": 233, + "Rank": 3, "CommandName": "Convert-PnPSiteTemplate", - "Rank": 3 + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", + "Id": 233 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", - "Id": 234, + "Rank": 1, "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 1 + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", + "Id": 234 }, { - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", - "Id": 235, + "Rank": 2, "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 2 + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", + "Id": 235 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", - "Id": 236, + "Rank": 1, "CommandName": "ConvertTo-PnPPage", - "Rank": 1 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", + "Id": 236 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", - "Id": 237, + "Rank": 2, "CommandName": "ConvertTo-PnPPage", - "Rank": 2 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", + "Id": 237 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", - "Id": 238, + "Rank": 3, "CommandName": "ConvertTo-PnPPage", - "Rank": 3 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", + "Id": 238 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", - "Id": 239, + "Rank": 4, "CommandName": "ConvertTo-PnPPage", - "Rank": 4 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", + "Id": 239 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 240, + "Rank": 5, "CommandName": "ConvertTo-PnPPage", - "Rank": 5 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 240 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", - "Id": 241, + "Rank": 6, "CommandName": "ConvertTo-PnPPage", - "Rank": 6 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", + "Id": 241 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", - "Id": 242, + "Rank": 7, "CommandName": "ConvertTo-PnPPage", - "Rank": 7 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", + "Id": 242 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", - "Id": 243, + "Rank": 8, "CommandName": "ConvertTo-PnPPage", - "Rank": 8 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", + "Id": 243 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 244, + "Rank": 9, "CommandName": "ConvertTo-PnPPage", - "Rank": 9 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 244 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", - "Id": 245, + "Rank": 10, "CommandName": "ConvertTo-PnPPage", - "Rank": 10 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", + "Id": 245 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", - "Id": 246, + "Rank": 11, "CommandName": "ConvertTo-PnPPage", - "Rank": 11 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", + "Id": 246 }, { - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 247, + "Rank": 12, "CommandName": "ConvertTo-PnPPage", - "Rank": 12 + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 247 }, { - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", - "Id": 248, + "Rank": 13, "CommandName": "ConvertTo-PnPPage", - "Rank": 13 + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", + "Id": 248 }, { - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", - "Id": 249, + "Rank": 14, "CommandName": "ConvertTo-PnPPage", - "Rank": 14 + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", + "Id": 249 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 250, + "Rank": 1, "CommandName": "Copy-PnPFile", - "Rank": 1 + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 250 }, { - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Id": 251, + "Rank": 2, "CommandName": "Copy-PnPFile", - "Rank": 2 + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Id": 251 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Id": 252, + "Rank": 3, "CommandName": "Copy-PnPFile", - "Rank": 3 + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Id": 252 }, { - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 253, + "Rank": 4, "CommandName": "Copy-PnPFile", - "Rank": 4 + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 253 }, { - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Id": 254, + "Rank": 5, "CommandName": "Copy-PnPFile", - "Rank": 5 + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Id": 254 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Id": 255, + "Rank": 6, "CommandName": "Copy-PnPFile", - "Rank": 6 + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Id": 255 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Id": 256, + "Rank": 7, "CommandName": "Copy-PnPFile", - "Rank": 7 + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Id": 256 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 257, + "Rank": 8, "CommandName": "Copy-PnPFile", - "Rank": 8 + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 257 }, { - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Id": 258, + "Rank": 9, "CommandName": "Copy-PnPFile", - "Rank": 9 + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Id": 258 }, { - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Id": 259, + "Rank": 10, "CommandName": "Copy-PnPFile", - "Rank": 10 + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Id": 259 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 260, + "Rank": 1, "CommandName": "Copy-PnPFolder", - "Rank": 1 + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 260 }, { - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", - "Id": 261, + "Rank": 2, "CommandName": "Copy-PnPFolder", - "Rank": 2 + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", + "Id": 261 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", - "Id": 262, + "Rank": 3, "CommandName": "Copy-PnPFolder", - "Rank": 3 + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", + "Id": 262 }, { - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 263, + "Rank": 4, "CommandName": "Copy-PnPFolder", - "Rank": 4 + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 263 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", - "Id": 264, + "Rank": 5, "CommandName": "Copy-PnPFolder", - "Rank": 5 + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", + "Id": 264 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", - "Id": 265, + "Rank": 6, "CommandName": "Copy-PnPFolder", - "Rank": 6 + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", + "Id": 265 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", - "Id": 266, + "Rank": 7, "CommandName": "Copy-PnPFolder", - "Rank": 7 + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", + "Id": 266 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", - "Id": 267, + "Rank": 8, "CommandName": "Copy-PnPFolder", - "Rank": 8 + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", + "Id": 267 }, { - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", - "Id": 268, + "Rank": 9, "CommandName": "Copy-PnPFolder", - "Rank": 9 + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", + "Id": 268 }, { - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", - "Id": 269, + "Rank": 10, "CommandName": "Copy-PnPFolder", - "Rank": 10 + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", + "Id": 269 }, { - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", - "Id": 270, + "Rank": 1, "CommandName": "Copy-PnPItemProxy", - "Rank": 1 + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", + "Id": 270 }, { - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", - "Id": 271, + "Rank": 1, "CommandName": "Copy-PnPList", - "Rank": 1 + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", + "Id": 271 }, { - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", - "Id": 272, + "Rank": 2, "CommandName": "Copy-PnPList", - "Rank": 2 + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", + "Id": 272 }, { - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", - "Id": 273, + "Rank": 3, "CommandName": "Copy-PnPList", - "Rank": 3 + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", + "Id": 273 }, { - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", - "Id": 274, + "Rank": 4, "CommandName": "Copy-PnPList", - "Rank": 4 + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", + "Id": 274 }, { - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", - "Id": 275, + "Rank": 1, "CommandName": "Copy-PnPTeamsTeam", - "Rank": 1 + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", + "Id": 275 }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", - "Id": 276, + "Rank": 2, "CommandName": "Copy-PnPTeamsTeam", - "Rank": 2 + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", + "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", - "Id": 277, + "Rank": 3, "CommandName": "Copy-PnPTeamsTeam", - "Rank": 3 + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "Id": 277 }, { - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", - "Id": 278, + "Rank": 4, "CommandName": "Copy-PnPTeamsTeam", - "Rank": 4 + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", + "Id": 278 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 279, + "Rank": 1, "CommandName": "Disable-PnPFeature", - "Rank": 1 + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 279 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Id": 280, + "Rank": 2, "CommandName": "Disable-PnPFeature", - "Rank": 2 + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Id": 280 }, { - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Id": 281, + "Rank": 3, "CommandName": "Disable-PnPFeature", - "Rank": 3 + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Id": 281 }, { - "Command": "Disable-PnPPageScheduling", - "Id": 282, + "Rank": 1, "CommandName": "Disable-PnPPageScheduling", - "Rank": 1 + "Command": "Disable-PnPPageScheduling", + "Id": 282 }, { - "Command": "Disable-PnPPowerShellTelemetry", - "Id": 283, + "Rank": 1, "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 1 + "Command": "Disable-PnPPowerShellTelemetry", + "Id": 283 }, { - "Command": "Disable-PnPPowerShellTelemetry -Force", - "Id": 284, + "Rank": 2, "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 2 + "Command": "Disable-PnPPowerShellTelemetry -Force", + "Id": 284 }, { - "Command": "Disable-PnPSharingForNonOwnersOfSite", - "Id": 285, + "Rank": 1, "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "Command": "Disable-PnPSharingForNonOwnersOfSite", + "Id": 285 }, { - "Command": "Disable-PnPSiteClassification", - "Id": 286, + "Rank": 1, "CommandName": "Disable-PnPSiteClassification", - "Rank": 1 + "Command": "Disable-PnPSiteClassification", + "Id": 286 }, { - "Command": "Disconnect-PnPOnline", - "Id": 287, + "Rank": 1, "CommandName": "Disconnect-PnPOnline", - "Rank": 1 + "Command": "Disconnect-PnPOnline", + "Id": 287 }, { - "Command": "Enable-PnPCommSite", - "Id": 288, + "Rank": 1, "CommandName": "Enable-PnPCommSite", - "Rank": 1 + "Command": "Enable-PnPCommSite", + "Id": 288 }, { - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", - "Id": 289, + "Rank": 2, "CommandName": "Enable-PnPCommSite", - "Rank": 2 + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", + "Id": 289 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 290, + "Rank": 1, "CommandName": "Enable-PnPFeature", - "Rank": 1 + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 290 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", - "Id": 291, + "Rank": 2, "CommandName": "Enable-PnPFeature", - "Rank": 2 + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", + "Id": 291 }, { - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", - "Id": 292, + "Rank": 3, "CommandName": "Enable-PnPFeature", - "Rank": 3 + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", + "Id": 292 }, { - "Command": "Enable-PnPPageScheduling", - "Id": 293, + "Rank": 1, "CommandName": "Enable-PnPPageScheduling", - "Rank": 1 + "Command": "Enable-PnPPageScheduling", + "Id": 293 }, { - "Command": "Enable-PnPPowerShellTelemetry", - "Id": 294, + "Rank": 1, "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 1 + "Command": "Enable-PnPPowerShellTelemetry", + "Id": 294 }, { - "Command": "Enable-PnPPowerShellTelemetry -Force", - "Id": 295, + "Rank": 2, "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 2 + "Command": "Enable-PnPPowerShellTelemetry -Force", + "Id": 295 }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", - "Id": 296, + "Rank": 1, "CommandName": "Enable-PnPSiteClassification", - "Rank": 1 + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", + "Id": 296 }, { - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Id": 297, + "Rank": 2, "CommandName": "Enable-PnPSiteClassification", - "Rank": 2 + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Id": 297 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", - "Id": 298, + "Rank": 1, "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 1 + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", + "Id": 298 }, { - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", - "Id": 299, + "Rank": 2, "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 2 + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", + "Id": 299 }, { - "Command": "Export-PnPPage -Identity Home.aspx", - "Id": 300, + "Rank": 1, "CommandName": "Export-PnPPage", - "Rank": 1 + "Command": "Export-PnPPage -Identity Home.aspx", + "Id": 300 }, { - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", - "Id": 301, + "Rank": 1, "CommandName": "Export-PnPPageMapping", - "Rank": 1 + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", + "Id": 301 }, { - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", - "Id": 302, + "Rank": 2, "CommandName": "Export-PnPPageMapping", - "Rank": 2 + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", + "Id": 302 }, { - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", - "Id": 303, + "Rank": 3, "CommandName": "Export-PnPPageMapping", - "Rank": 3 + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", + "Id": 303 }, { - "Command": "Export-PnPTaxonomy", - "Id": 304, + "Rank": 1, "CommandName": "Export-PnPTaxonomy", - "Rank": 1 + "Command": "Export-PnPTaxonomy", + "Id": 304 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt", - "Id": 305, + "Rank": 2, "CommandName": "Export-PnPTaxonomy", - "Rank": 2 + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", + "Id": 305 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", - "Id": 306, + "Rank": 3, "CommandName": "Export-PnPTaxonomy", - "Rank": 3 + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", + "Id": 306 }, { - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", - "Id": 307, + "Rank": 4, "CommandName": "Export-PnPTaxonomy", - "Rank": 4 + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", + "Id": 307 }, { - "Command": "Export-PnPTermGroupToXml", - "Id": 308, + "Rank": 1, "CommandName": "Export-PnPTermGroupToXml", - "Rank": 1 + "Command": "Export-PnPTermGroupToXml", + "Id": 308 }, { - "Command": "Export-PnPTermGroupToXml -Out output.xml", - "Id": 309, + "Rank": 2, "CommandName": "Export-PnPTermGroupToXml", - "Rank": 2 + "Command": "Export-PnPTermGroupToXml -Out output.xml", + "Id": 309 }, { - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", - "Id": 310, + "Rank": 3, "CommandName": "Export-PnPTermGroupToXml", - "Rank": 3 + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", + "Id": 310 }, { - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Id": 311, + "Rank": 1, "CommandName": "Export-PnPUserInfo", - "Rank": 1 + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Id": 311 }, { - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", - "Id": 312, + "Rank": 2, "CommandName": "Export-PnPUserInfo", - "Rank": 2 + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", + "Id": 312 }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com", - "Id": 313, + "Rank": 1, "CommandName": "Export-PnPUserProfile", - "Rank": 1 + "Command": "Export-PnPUserProfile -LoginName user@domain.com", + "Id": 313 }, { - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", - "Id": 314, + "Rank": 2, "CommandName": "Export-PnPUserProfile", - "Rank": 2 + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", + "Id": 314 }, { - "Command": "Find-PnPFile -Match *.master", - "Id": 315, + "Rank": 1, "CommandName": "Find-PnPFile", - "Rank": 1 + "Command": "Find-PnPFile -Match *.master", + "Id": 315 }, { - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", - "Id": 316, + "Rank": 2, "CommandName": "Find-PnPFile", - "Rank": 2 + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", + "Id": 316 }, { - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", - "Id": 317, + "Rank": 3, "CommandName": "Find-PnPFile", - "Rank": 3 + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", + "Id": 317 }, { - "Command": "Get-PnPAccessToken", - "Id": 318, + "Rank": 1, "CommandName": "Get-PnPAccessToken", - "Rank": 1 + "Command": "Get-PnPAccessToken", + "Id": 318 }, { - "Command": "Get-PnPAccessToken -Decoded", - "Id": 319, + "Rank": 2, "CommandName": "Get-PnPAccessToken", - "Rank": 2 + "Command": "Get-PnPAccessToken -Decoded", + "Id": 319 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", - "Id": 320, + "Rank": 3, "CommandName": "Get-PnPAccessToken", - "Rank": 3 + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", + "Id": 320 }, { - "Command": "Get-PnPAccessToken -ResourceTypeName ARM", - "Id": 321, + "Rank": 4, "CommandName": "Get-PnPAccessToken", - "Rank": 4 + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", + "Id": 321 }, { - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", - "Id": 322, + "Rank": 5, "CommandName": "Get-PnPAccessToken", - "Rank": 5 + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", + "Id": 322 }, { - "Command": "Get-PnPAlert", - "Id": 323, + "Rank": 1, "CommandName": "Get-PnPAlert", - "Rank": 1 + "Command": "Get-PnPAlert", + "Id": 323 }, { - "Command": "Get-PnPAlert -List \"Demo List\"", - "Id": 324, + "Rank": 2, "CommandName": "Get-PnPAlert", - "Rank": 2 + "Command": "Get-PnPAlert -List \"Demo List\"", + "Id": 324 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 325, + "Rank": 3, "CommandName": "Get-PnPAlert", - "Rank": 3 + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Id": 325 }, { - "Command": "Get-PnPAlert -Title \"Demo Alert\"", - "Id": 326, + "Rank": 4, "CommandName": "Get-PnPAlert", - "Rank": 4 + "Command": "Get-PnPAlert -Title \"Demo Alert\"", + "Id": 326 }, { - "Command": "Get-PnPAlert -AllUsers", - "Id": 327, + "Rank": 5, "CommandName": "Get-PnPAlert", - "Rank": 5 + "Command": "Get-PnPAlert -AllUsers", + "Id": 327 }, { - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", - "Id": 328, + "Rank": 6, "CommandName": "Get-PnPAlert", - "Rank": 6 + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", + "Id": 328 }, { - "Command": "Get-PnPApp", - "Id": 329, + "Rank": 1, "CommandName": "Get-PnPApp", - "Rank": 1 + "Command": "Get-PnPApp", + "Id": 329 }, { - "Command": "Get-PnPApp -Scope Site", - "Id": 330, + "Rank": 2, "CommandName": "Get-PnPApp", - "Rank": 2 + "Command": "Get-PnPApp -Scope Site", + "Id": 330 }, { - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 331, + "Rank": 3, "CommandName": "Get-PnPApp", - "Rank": 3 + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 331 }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", - "Id": 332, + "Rank": 1, "CommandName": "Get-PnPAppErrors", - "Rank": 1 + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", + "Id": 332 }, { - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", - "Id": 333, + "Rank": 2, "CommandName": "Get-PnPAppErrors", - "Rank": 2 + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", + "Id": 333 }, { - "Command": "Get-PnPAppInfo -Name \"Excel Service\"", - "Id": 334, + "Rank": 1, "CommandName": "Get-PnPAppInfo", - "Rank": 1 + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", + "Id": 334 }, { - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 335, + "Rank": 2, "CommandName": "Get-PnPAppInfo", - "Rank": 2 + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 335 }, { - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", - "Id": 336, + "Rank": 3, "CommandName": "Get-PnPAppInfo", - "Rank": 3 + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", + "Id": 336 }, { - "Command": "Get-PnPApplicationCustomizer", - "Id": 337, + "Rank": 1, "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 1 + "Command": "Get-PnPApplicationCustomizer", + "Id": 337 }, { - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 338, + "Rank": 2, "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 2 + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 338 }, { - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", - "Id": 339, + "Rank": 3, "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 3 + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", + "Id": 339 }, { - "Command": "Get-PnPAuditing", - "Id": 340, + "Rank": 1, "CommandName": "Get-PnPAuditing", - "Rank": 1 + "Command": "Get-PnPAuditing", + "Id": 340 }, { - "Command": "Get-PnPAuthenticationRealm", - "Id": 341, + "Rank": 1, "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 1 + "Command": "Get-PnPAuthenticationRealm", + "Id": 341 }, { - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", - "Id": 342, + "Rank": 2, "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 2 + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", + "Id": 342 }, { - "Command": "Get-PnPAvailableLanguage", - "Id": 343, + "Rank": 1, "CommandName": "Get-PnPAvailableLanguage", - "Rank": 1 + "Command": "Get-PnPAvailableLanguage", + "Id": 343 }, { - "Command": "Get-PnPAvailableSensitivityLabel", - "Id": 344, + "Rank": 1, "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 1 + "Command": "Get-PnPAvailableSensitivityLabel", + "Id": 344 }, { - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", - "Id": 345, + "Rank": 2, "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 2 + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", + "Id": 345 }, { - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", - "Id": 346, + "Rank": 3, "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 3 + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", + "Id": 346 }, { - "Command": "Get-PnPAvailableSiteClassification", - "Id": 347, + "Rank": 1, "CommandName": "Get-PnPAvailableSiteClassification", - "Rank": 1 + "Command": "Get-PnPAvailableSiteClassification", + "Id": 347 }, { - "Command": "Get-PnPAzureACSPrincipal", - "Id": 348, + "Rank": 1, "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 1 + "Command": "Get-PnPAzureACSPrincipal", + "Id": 348 }, { - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", - "Id": 349, + "Rank": 2, "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 2 + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", + "Id": 349 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", - "Id": 350, + "Rank": 3, "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 3 + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", + "Id": 350 }, { - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", - "Id": 351, + "Rank": 4, "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 4 + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", + "Id": 351 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit", - "Id": 352, + "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1 + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", + "Id": 352 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", - "Id": 353, + "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 2 + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", + "Id": 353 }, { - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", - "Id": 354, + "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 3 + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", + "Id": 354 }, { - "Command": "Get-PnPAzureADActivityReportSignIn", - "Id": 355, + "Rank": 1, "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1 + "Command": "Get-PnPAzureADActivityReportSignIn", + "Id": 355 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", - "Id": 356, + "Rank": 2, "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 2 + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", + "Id": 356 }, { - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", - "Id": 357, + "Rank": 3, "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 3 + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", + "Id": 357 }, { - "Command": "Get-PnPAzureADApp", - "Id": 358, + "Rank": 1, "CommandName": "Get-PnPAzureADApp", - "Rank": 1 + "Command": "Get-PnPAzureADApp", + "Id": 358 }, { - "Command": "Get-PnPAzureADApp -Identity MyApp", - "Id": 359, + "Rank": 2, "CommandName": "Get-PnPAzureADApp", - "Rank": 2 + "Command": "Get-PnPAzureADApp -Identity MyApp", + "Id": 359 }, { - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 360, + "Rank": 3, "CommandName": "Get-PnPAzureADApp", - "Rank": 3 + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 360 }, { - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", - "Id": 361, + "Rank": 4, "CommandName": "Get-PnPAzureADApp", - "Rank": 4 + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", + "Id": 361 }, { - "Command": "Get-PnPAzureADAppPermission", - "Id": 362, + "Rank": 1, "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 1 + "Command": "Get-PnPAzureADAppPermission", + "Id": 362 }, { - "Command": "Get-PnPAzureADAppPermission -Identity MyApp", - "Id": 363, + "Rank": 2, "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 2 + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", + "Id": 363 }, { - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 364, + "Rank": 3, "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 3 + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 364 }, { - "Command": "Get-PnPAzureADAppSitePermission", - "Id": 365, + "Rank": 1, "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 1 + "Command": "Get-PnPAzureADAppSitePermission", + "Id": 365 }, { - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", - "Id": 366, + "Rank": 2, "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 2 + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", + "Id": 366 }, { - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", - "Id": 367, + "Rank": 3, "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 3 + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", + "Id": 367 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", - "Id": 368, + "Rank": 4, "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 4 + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", + "Id": 368 }, { - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", - "Id": 369, + "Rank": 5, "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 5 + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", + "Id": 369 }, { - "Command": "Get-PnPAzureADGroup", - "Id": 370, + "Rank": 1, "CommandName": "Get-PnPAzureADGroup", - "Rank": 1 + "Command": "Get-PnPAzureADGroup", + "Id": 370 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupId", - "Id": 371, + "Rank": 2, "CommandName": "Get-PnPAzureADGroup", - "Rank": 2 + "Command": "Get-PnPAzureADGroup -Identity $groupId", + "Id": 371 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", - "Id": 372, + "Rank": 3, "CommandName": "Get-PnPAzureADGroup", - "Rank": 3 + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", + "Id": 372 }, { - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", - "Id": 373, + "Rank": 4, "CommandName": "Get-PnPAzureADGroup", - "Rank": 4 + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", + "Id": 373 }, { - "Command": "Get-PnPAzureADGroup -Identity $group", - "Id": 374, + "Rank": 5, "CommandName": "Get-PnPAzureADGroup", - "Rank": 5 + "Command": "Get-PnPAzureADGroup -Identity $group", + "Id": 374 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $groupId", - "Id": 375, + "Rank": 1, "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 1 + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", + "Id": 375 }, { - "Command": "Get-PnPAzureADGroupMember -Identity $group", - "Id": 376, + "Rank": 2, "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 2 + "Command": "Get-PnPAzureADGroupMember -Identity $group", + "Id": 376 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", - "Id": 377, + "Rank": 1, "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 1 + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", + "Id": 377 }, { - "Command": "Get-PnPAzureADGroupOwner -Identity $group", - "Id": 378, + "Rank": 2, "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 2 + "Command": "Get-PnPAzureADGroupOwner -Identity $group", + "Id": 378 }, { - "Command": "Get-PnPAzureADServicePrincipal", - "Id": 379, + "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 1 + "Command": "Get-PnPAzureADServicePrincipal", + "Id": 379 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", - "Id": 380, + "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 2 + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", + "Id": 380 }, { - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", - "Id": 381, + "Rank": 3, "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 3 + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", + "Id": 381 }, { - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", - "Id": 382, + "Rank": 4, "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 4 + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", + "Id": 382 }, { - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", - "Id": 383, + "Rank": 5, "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 5 + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", + "Id": 383 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 384, + "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1 + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 384 }, { - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Id": 385, + "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2 + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Id": 385 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 386, + "Rank": 1, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 1 + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 386 }, { - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", - "Id": 387, + "Rank": 2, "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 2 + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", + "Id": 387 }, { - "Command": "Get-PnPAzureADUser", - "Id": 388, + "Rank": 1, "CommandName": "Get-PnPAzureADUser", - "Rank": 1 + "Command": "Get-PnPAzureADUser", + "Id": 388 }, { - "Command": "Get-PnPAzureADUser -EndIndex 50", - "Id": 389, + "Rank": 2, "CommandName": "Get-PnPAzureADUser", - "Rank": 2 + "Command": "Get-PnPAzureADUser -EndIndex 50", + "Id": 389 }, { - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Id": 390, + "Rank": 3, "CommandName": "Get-PnPAzureADUser", - "Rank": 3 + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Id": 390 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com", - "Id": 391, + "Rank": 4, "CommandName": "Get-PnPAzureADUser", - "Rank": 4 + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", + "Id": 391 }, { - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", - "Id": 392, + "Rank": 5, "CommandName": "Get-PnPAzureADUser", - "Rank": 5 + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", + "Id": 392 }, { - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", - "Id": 393, + "Rank": 6, "CommandName": "Get-PnPAzureADUser", - "Rank": 6 + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", + "Id": 393 }, { - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", - "Id": 394, + "Rank": 7, "CommandName": "Get-PnPAzureADUser", - "Rank": 7 + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", + "Id": 394 }, { - "Command": "Get-PnPAzureADUser -Delta", - "Id": 395, + "Rank": 8, "CommandName": "Get-PnPAzureADUser", - "Rank": 8 + "Command": "Get-PnPAzureADUser -Delta", + "Id": 395 }, { - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", - "Id": 396, + "Rank": 9, "CommandName": "Get-PnPAzureADUser", - "Rank": 9 + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", + "Id": 396 }, { - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", - "Id": 397, + "Rank": 10, "CommandName": "Get-PnPAzureADUser", - "Rank": 10 + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", + "Id": 397 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", - "Id": 398, + "Rank": 1, "CommandName": "Get-PnPAzureCertificate", - "Rank": 1 + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", + "Id": 398 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", - "Id": 399, + "Rank": 2, "CommandName": "Get-PnPAzureCertificate", - "Rank": 2 + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", + "Id": 399 }, { - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", - "Id": 400, + "Rank": 3, "CommandName": "Get-PnPAzureCertificate", - "Rank": 3 + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", + "Id": 400 }, { - "Command": "Get-PnPBrowserIdleSignout", - "Id": 401, + "Rank": 1, "CommandName": "Get-PnPBrowserIdleSignout", - "Rank": 1 + "Command": "Get-PnPBrowserIdleSignout", + "Id": 401 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", - "Id": 402, + "Rank": 1, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 1 + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", + "Id": 402 }, { - "Command": "Get-PnPBuiltInDesignPackageVisibility", - "Id": 403, + "Rank": 2, "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2 + "Command": "Get-PnPBuiltInDesignPackageVisibility", + "Id": 403 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings", - "Id": 404, + "Rank": 1, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1 + "Command": "Get-PnPBuiltInSiteTemplateSettings", + "Id": 404 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", - "Id": 405, + "Rank": 2, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 2 + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", + "Id": 405 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", - "Id": 406, + "Rank": 3, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 3 + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", + "Id": 406 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", - "Id": 407, + "Rank": 4, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 4 + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", + "Id": 407 }, { - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", - "Id": 408, + "Rank": 5, "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 5 + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", + "Id": 408 }, { - "Command": "Get-PnPChangeLog", - "Id": 409, + "Rank": 1, "CommandName": "Get-PnPChangeLog", - "Rank": 1 + "Command": "Get-PnPChangeLog", + "Id": 409 }, { - "Command": "Get-PnPChangeLog -Nightly", - "Id": 410, + "Rank": 2, "CommandName": "Get-PnPChangeLog", - "Rank": 2 + "Command": "Get-PnPChangeLog -Nightly", + "Id": 410 }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", - "Id": 411, + "Rank": 1, "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 1 + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", + "Id": 411 }, { - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", - "Id": 412, + "Rank": 2, "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 2 + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", + "Id": 412 }, { - "Command": "Get-PnPContentType", - "Id": 413, + "Rank": 1, "CommandName": "Get-PnPContentType", - "Rank": 1 + "Command": "Get-PnPContentType", + "Id": 413 }, { - "Command": "Get-PnPContentType -InSiteHierarchy", - "Id": 414, + "Rank": 2, "CommandName": "Get-PnPContentType", - "Rank": 2 + "Command": "Get-PnPContentType -InSiteHierarchy", + "Id": 414 }, { - "Command": "Get-PnPContentType -Identity \"Project Document\"", - "Id": 415, + "Rank": 3, "CommandName": "Get-PnPContentType", - "Rank": 3 + "Command": "Get-PnPContentType -Identity \"Project Document\"", + "Id": 415 }, { - "Command": "Get-PnPContentType -List \"Documents\"", - "Id": 416, + "Rank": 4, "CommandName": "Get-PnPContentType", - "Rank": 4 + "Command": "Get-PnPContentType -List \"Documents\"", + "Id": 416 }, { - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", - "Id": 417, + "Rank": 1, "CommandName": "Get-PnPContentTypePublishingStatus", - "Rank": 1 + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", + "Id": 417 }, { - "Command": "Get-PnPCustomAction", - "Id": 418, + "Rank": 1, "CommandName": "Get-PnPCustomAction", - "Rank": 1 + "Command": "Get-PnPCustomAction", + "Id": 418 }, { - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 419, + "Rank": 2, "CommandName": "Get-PnPCustomAction", - "Rank": 2 + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 419 }, { - "Command": "Get-PnPCustomAction -Scope web", - "Id": 420, + "Rank": 3, "CommandName": "Get-PnPCustomAction", - "Rank": 3 + "Command": "Get-PnPCustomAction -Scope web", + "Id": 420 }, { - "Command": "Get-PnPDeletedMicrosoft365Group", - "Id": 421, + "Rank": 1, "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1 + "Command": "Get-PnPDeletedMicrosoft365Group", + "Id": 421 }, { - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 422, + "Rank": 2, "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 2 + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 422 }, { - "Command": "Get-PnPDeletedTeam", - "Id": 423, + "Rank": 1, "CommandName": "Get-PnPDeletedTeam", - "Rank": 1 + "Command": "Get-PnPDeletedTeam", + "Id": 423 }, { - "Command": "Get-PnPDiagnostics", - "Id": 424, + "Rank": 1, "CommandName": "Get-PnPDiagnostics", - "Rank": 1 + "Command": "Get-PnPDiagnostics", + "Id": 424 }, { - "Command": "Get-PnPDisableSpacesActivation", - "Id": 425, + "Rank": 1, "CommandName": "Get-PnPDisableSpacesActivation", - "Rank": 1 + "Command": "Get-PnPDisableSpacesActivation", + "Id": 425 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", - "Id": 426, + "Rank": 1, "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 1 + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", + "Id": 426 }, { - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", - "Id": 427, + "Rank": 2, "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 2 + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", + "Id": 427 }, { - "Command": "Get-PnPEventReceiver", - "Id": 428, + "Rank": 1, "CommandName": "Get-PnPEventReceiver", - "Rank": 1 + "Command": "Get-PnPEventReceiver", + "Id": 428 }, { - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 429, + "Rank": 2, "CommandName": "Get-PnPEventReceiver", - "Rank": 2 + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 429 }, { - "Command": "Get-PnPEventReceiver -Identity MyReceiver", - "Id": 430, + "Rank": 3, "CommandName": "Get-PnPEventReceiver", - "Rank": 3 + "Command": "Get-PnPEventReceiver -Identity MyReceiver", + "Id": 430 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\"", - "Id": 431, + "Rank": 4, "CommandName": "Get-PnPEventReceiver", - "Rank": 4 + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", + "Id": 431 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 432, + "Rank": 5, "CommandName": "Get-PnPEventReceiver", - "Rank": 5 + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 432 }, { - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", - "Id": 433, + "Rank": 6, "CommandName": "Get-PnPEventReceiver", - "Rank": 6 + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", + "Id": 433 }, { - "Command": "Get-PnPEventReceiver -Scope Site", - "Id": 434, + "Rank": 7, "CommandName": "Get-PnPEventReceiver", - "Rank": 7 + "Command": "Get-PnPEventReceiver -Scope Site", + "Id": 434 }, { - "Command": "Get-PnPEventReceiver -Scope Web", - "Id": 435, + "Rank": 8, "CommandName": "Get-PnPEventReceiver", - "Rank": 8 + "Command": "Get-PnPEventReceiver -Scope Web", + "Id": 435 }, { - "Command": "Get-PnPEventReceiver -Scope All", - "Id": 436, + "Rank": 9, "CommandName": "Get-PnPEventReceiver", - "Rank": 9 + "Command": "Get-PnPEventReceiver -Scope All", + "Id": 436 }, { - "Command": "Get-PnPException", - "Id": 437, + "Rank": 1, "CommandName": "Get-PnPException", - "Rank": 1 + "Command": "Get-PnPException", + "Id": 437 }, { - "Command": "Get-PnPException -All", - "Id": 438, + "Rank": 2, "CommandName": "Get-PnPException", - "Rank": 2 + "Command": "Get-PnPException -All", + "Id": 438 }, { - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", - "Id": 439, + "Rank": 1, "CommandName": "Get-PnPExternalUser", - "Rank": 1 + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", + "Id": 439 }, { - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", - "Id": 440, + "Rank": 2, "CommandName": "Get-PnPExternalUser", - "Rank": 2 + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", + "Id": 440 }, { - "Command": "Get-PnPFeature", - "Id": 441, + "Rank": 1, "CommandName": "Get-PnPFeature", - "Rank": 1 + "Command": "Get-PnPFeature", + "Id": 441 }, { - "Command": "Get-PnPFeature -Scope Site", - "Id": 442, + "Rank": 2, "CommandName": "Get-PnPFeature", - "Rank": 2 + "Command": "Get-PnPFeature -Scope Site", + "Id": 442 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 443, + "Rank": 3, "CommandName": "Get-PnPFeature", - "Rank": 3 + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 443 }, { - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", - "Id": 444, + "Rank": 4, "CommandName": "Get-PnPFeature", - "Rank": 4 + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", + "Id": 444 }, { - "Command": "Get-PnPField", - "Id": 445, + "Rank": 1, "CommandName": "Get-PnPField", - "Rank": 1 + "Command": "Get-PnPField", + "Id": 445 }, { - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Id": 446, + "Rank": 2, "CommandName": "Get-PnPField", - "Rank": 2 + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Id": 446 }, { - "Command": "Get-PnPField -Group \"Custom Columns\"", - "Id": 447, + "Rank": 3, "CommandName": "Get-PnPField", - "Rank": 3 + "Command": "Get-PnPField -Group \"Custom Columns\"", + "Id": 447 }, { - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", - "Id": 448, + "Rank": 1, "CommandName": "Get-PnPFile", - "Rank": 1 + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", + "Id": 448 }, { - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", - "Id": 449, + "Rank": 2, "CommandName": "Get-PnPFile", - "Rank": 2 + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", + "Id": 449 }, { - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", - "Id": 450, + "Rank": 3, "CommandName": "Get-PnPFile", - "Rank": 3 + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", + "Id": 450 }, { - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", - "Id": 451, + "Rank": 4, "CommandName": "Get-PnPFile", - "Rank": 4 + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", + "Id": 451 }, { - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", - "Id": 452, + "Rank": 5, "CommandName": "Get-PnPFile", - "Rank": 5 + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", + "Id": 452 }, { - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", - "Id": 453, + "Rank": 6, "CommandName": "Get-PnPFile", - "Rank": 6 + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", + "Id": 453 }, { - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", - "Id": 454, + "Rank": 7, "CommandName": "Get-PnPFile", - "Rank": 7 + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", + "Id": 454 }, { - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 455, + "Rank": 1, "CommandName": "Get-PnPFileSharingLink", - "Rank": 1 + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 455 }, { - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", - "Id": 456, + "Rank": 1, "CommandName": "Get-PnPFileVersion", - "Rank": 1 + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", + "Id": 456 }, { - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", - "Id": 457, + "Rank": 2, "CommandName": "Get-PnPFileVersion", - "Rank": 2 + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", + "Id": 457 }, { - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", - "Id": 458, + "Rank": 1, "CommandName": "Get-PnPFlow", - "Rank": 1 + "Command": "Get-PnPFlow -AsAdmin", + "Id": 458 }, { - "Command": "Get-PnPFolder -Url \"Shared Documents\"", - "Id": 459, + "Rank": 2, + "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", + "Id": 459 + }, + { + "Rank": 3, + "CommandName": "Get-PnPFlow", + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", + "Id": 460 + }, + { + "Rank": 1, "CommandName": "Get-PnPFolder", - "Rank": 1 + "Command": "Get-PnPFolder -Url \"Shared Documents\"", + "Id": 461 }, { - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", - "Id": 460, + "Rank": 2, "CommandName": "Get-PnPFolder", - "Rank": 2 + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", + "Id": 462 }, { - "Command": "Get-PnPFolder -List \"Shared Documents\"", - "Id": 461, + "Rank": 3, "CommandName": "Get-PnPFolder", - "Rank": 3 + "Command": "Get-PnPFolder -List \"Shared Documents\"", + "Id": 463 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\"", - "Id": 462, + "Rank": 1, "CommandName": "Get-PnPFolderItem", - "Rank": 1 + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\"", + "Id": 464 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", - "Id": 463, + "Rank": 2, "CommandName": "Get-PnPFolderItem", - "Rank": 2 + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", + "Id": 465 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", - "Id": 464, + "Rank": 3, "CommandName": "Get-PnPFolderItem", - "Rank": 3 + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", + "Id": 466 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType File", - "Id": 465, + "Rank": 4, "CommandName": "Get-PnPFolderItem", - "Rank": 4 + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType File", + "Id": 467 }, { - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", - "Id": 466, + "Rank": 5, "CommandName": "Get-PnPFolderItem", - "Rank": 5 + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", + "Id": 468 }, { - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 467, + "Rank": 1, "CommandName": "Get-PnPFolderSharingLink", - "Rank": 1 + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 469 }, { - "Command": "Get-PnPFolderStorageMetric", - "Id": 468, + "Rank": 1, "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 1 + "Command": "Get-PnPFolderStorageMetric", + "Id": 470 }, { - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", - "Id": 469, + "Rank": 2, "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 2 + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", + "Id": 471 }, { - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", - "Id": 470, + "Rank": 3, "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 3 + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", + "Id": 472 }, { - "Command": "Get-PnPFooter", - "Id": 471, + "Rank": 1, "CommandName": "Get-PnPFooter", - "Rank": 1 + "Command": "Get-PnPFooter", + "Id": 473 }, { - "Command": "Get-PnPGraphAccessToken", - "Id": 472, + "Rank": 1, "CommandName": "Get-PnPGraphAccessToken", - "Rank": 1 + "Command": "Get-PnPGraphAccessToken", + "Id": 474 }, { - "Command": "Get-PnPGraphAccessToken -Decoded", - "Id": 473, + "Rank": 2, "CommandName": "Get-PnPGraphAccessToken", - "Rank": 2 + "Command": "Get-PnPGraphAccessToken -Decoded", + "Id": 475 }, { - "Command": "Get-PnPGraphSubscription", - "Id": 474, + "Rank": 1, "CommandName": "Get-PnPGraphSubscription", - "Rank": 1 + "Command": "Get-PnPGraphSubscription", + "Id": 476 }, { - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", - "Id": 475, + "Rank": 2, "CommandName": "Get-PnPGraphSubscription", - "Rank": 2 + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", + "Id": 477 }, { - "Command": "Get-PnPGroup", - "Id": 476, + "Rank": 1, "CommandName": "Get-PnPGroup", - "Rank": 1 + "Command": "Get-PnPGroup", + "Id": 478 }, { - "Command": "Get-PnPGroup -Identity 'My Site Users'", - "Id": 477, + "Rank": 2, "CommandName": "Get-PnPGroup", - "Rank": 2 + "Command": "Get-PnPGroup -Identity 'My Site Users'", + "Id": 479 }, { - "Command": "Get-PnPGroup -AssociatedMemberGroup", - "Id": 478, + "Rank": 3, "CommandName": "Get-PnPGroup", - "Rank": 3 + "Command": "Get-PnPGroup -AssociatedMemberGroup", + "Id": 480 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", - "Id": 479, + "Rank": 1, "CommandName": "Get-PnPGroupMember", - "Rank": 1 + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", + "Id": 481 }, { - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", - "Id": 480, + "Rank": 2, "CommandName": "Get-PnPGroupMember", - "Rank": 2 + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", + "Id": 482 }, { - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", - "Id": 481, + "Rank": 1, "CommandName": "Get-PnPGroupPermissions", - "Rank": 1 + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", + "Id": 483 }, { - "Command": "Get-PnPHideDefaultThemes", - "Id": 482, + "Rank": 1, "CommandName": "Get-PnPHideDefaultThemes", - "Rank": 1 + "Command": "Get-PnPHideDefaultThemes", + "Id": 484 }, { - "Command": "Get-PnPHomePage", - "Id": 483, + "Rank": 1, "CommandName": "Get-PnPHomePage", - "Rank": 1 + "Command": "Get-PnPHomePage", + "Id": 485 }, { - "Command": "Get-PnPHomeSite", - "Id": 484, + "Rank": 1, "CommandName": "Get-PnPHomeSite", - "Rank": 1 + "Command": "Get-PnPHomeSite", + "Id": 486 }, { - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", - "Id": 485, + "Rank": 2, "CommandName": "Get-PnPHomeSite", - "Rank": 2 + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", + "Id": 487 }, { - "Command": "Get-PnPHomeSite -Detailed", - "Id": 486, + "Rank": 3, "CommandName": "Get-PnPHomeSite", - "Rank": 3 + "Command": "Get-PnPHomeSite -Detailed", + "Id": 488 }, { - "Command": "Get-PnPHubSite", - "Id": 487, + "Rank": 1, "CommandName": "Get-PnPHubSite", - "Rank": 1 + "Command": "Get-PnPHubSite", + "Id": 489 }, { - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Id": 488, + "Rank": 2, "CommandName": "Get-PnPHubSite", - "Rank": 2 + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Id": 490 }, { - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", - "Id": 489, + "Rank": 3, "CommandName": "Get-PnPHubSite", - "Rank": 3 + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", + "Id": 491 }, { - "Command": "Get-PnPHubSiteChild", - "Id": 490, + "Rank": 1, "CommandName": "Get-PnPHubSiteChild", - "Rank": 1 + "Command": "Get-PnPHubSiteChild", + "Id": 492 }, { - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", - "Id": 491, + "Rank": 2, "CommandName": "Get-PnPHubSiteChild", - "Rank": 2 + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", + "Id": 493 }, { - "Command": "Get-PnPInPlaceRecordsManagement", - "Id": 492, + "Rank": 1, "CommandName": "Get-PnPInPlaceRecordsManagement", - "Rank": 1 + "Command": "Get-PnPInPlaceRecordsManagement", + "Id": 494 }, { - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", - "Id": 493, + "Rank": 1, "CommandName": "Get-PnPIsSiteAliasAvailable", - "Rank": 1 + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", + "Id": 495 }, { - "Command": "Get-PnPJavaScriptLink", - "Id": 494, + "Rank": 1, "CommandName": "Get-PnPJavaScriptLink", - "Rank": 1 + "Command": "Get-PnPJavaScriptLink", + "Id": 496 }, { - "Command": "Get-PnPJavaScriptLink -Scope All", - "Id": 495, + "Rank": 2, "CommandName": "Get-PnPJavaScriptLink", - "Rank": 2 + "Command": "Get-PnPJavaScriptLink -Scope All", + "Id": 497 }, { - "Command": "Get-PnPJavaScriptLink -Scope Web", - "Id": 496, + "Rank": 3, "CommandName": "Get-PnPJavaScriptLink", - "Rank": 3 + "Command": "Get-PnPJavaScriptLink -Scope Web", + "Id": 498 }, { - "Command": "Get-PnPJavaScriptLink -Scope Site", - "Id": 497, + "Rank": 4, "CommandName": "Get-PnPJavaScriptLink", - "Rank": 4 + "Command": "Get-PnPJavaScriptLink -Scope Site", + "Id": 499 }, { - "Command": "Get-PnPJavaScriptLink -Name Test", - "Id": 498, + "Rank": 5, "CommandName": "Get-PnPJavaScriptLink", - "Rank": 5 + "Command": "Get-PnPJavaScriptLink -Name Test", + "Id": 500 }, { - "Command": "Get-PnPKnowledgeHubSite", - "Id": 499, + "Rank": 1, "CommandName": "Get-PnPKnowledgeHubSite", - "Rank": 1 + "Command": "Get-PnPKnowledgeHubSite", + "Id": 501 }, { - "Command": "Get-PnPLabel", - "Id": 500, + "Rank": 1, "CommandName": "Get-PnPLabel", - "Rank": 1 + "Command": "Get-PnPLabel", + "Id": 502 }, { - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", - "Id": 501, + "Rank": 2, "CommandName": "Get-PnPLabel", - "Rank": 2 + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", + "Id": 503 }, { - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", - "Id": 502, + "Rank": 1, "CommandName": "Get-PnPLargeListOperationStatus", - "Rank": 1 + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", + "Id": 504 }, { - "Command": "Get-PnPList", - "Id": 503, + "Rank": 1, "CommandName": "Get-PnPList", - "Rank": 1 + "Command": "Get-PnPList", + "Id": 505 }, { - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 504, + "Rank": 2, "CommandName": "Get-PnPList", - "Rank": 2 + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 506 }, { - "Command": "Get-PnPList -Identity Lists/Announcements", - "Id": 505, + "Rank": 3, "CommandName": "Get-PnPList", - "Rank": 3 + "Command": "Get-PnPList -Identity Lists/Announcements", + "Id": 507 }, { - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", - "Id": 506, + "Rank": 4, "CommandName": "Get-PnPList", - "Rank": 4 + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", + "Id": 508 }, { - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", - "Id": 507, + "Rank": 5, "CommandName": "Get-PnPList", - "Rank": 5 + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", + "Id": 509 }, { - "Command": "Get-PnPListDesign", - "Id": 508, + "Rank": 1, "CommandName": "Get-PnPListDesign", - "Rank": 1 + "Command": "Get-PnPListDesign", + "Id": 510 }, { - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 509, + "Rank": 2, "CommandName": "Get-PnPListDesign", - "Rank": 2 + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 511 }, { - "Command": "Get-PnPListDesign -Identity ListEvent", - "Id": 510, + "Rank": 3, "CommandName": "Get-PnPListDesign", - "Rank": 3 + "Command": "Get-PnPListDesign -Identity ListEvent", + "Id": 512 }, { - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", - "Id": 511, + "Rank": 1, "CommandName": "Get-PnPListInformationRightsManagement", - "Rank": 1 + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", + "Id": 513 }, { - "Command": "Get-PnPListItem -List Tasks", - "Id": 512, + "Rank": 1, "CommandName": "Get-PnPListItem", - "Rank": 1 + "Command": "Get-PnPListItem -List Tasks", + "Id": 514 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1", - "Id": 513, + "Rank": 2, "CommandName": "Get-PnPListItem", - "Rank": 2 + "Command": "Get-PnPListItem -List Tasks -Id 1", + "Id": 515 }, { - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", - "Id": 514, + "Rank": 3, "CommandName": "Get-PnPListItem", - "Rank": 3 + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", + "Id": 516 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", - "Id": 515, + "Rank": 4, "CommandName": "Get-PnPListItem", - "Rank": 4 + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", + "Id": 517 }, { - "Command": "Get-PnPListItem -List Tasks -Query \"\"", - "Id": 516, + "Rank": 5, "CommandName": "Get-PnPListItem", - "Rank": 5 + "Command": "Get-PnPListItem -List Tasks -Query \"\"", + "Id": 518 }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000", - "Id": 517, + "Rank": 6, "CommandName": "Get-PnPListItem", - "Rank": 6 + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", + "Id": 519 }, { - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", - "Id": 518, + "Rank": 7, "CommandName": "Get-PnPListItem", - "Rank": 7 + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", + "Id": 520 }, { - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", - "Id": 519, + "Rank": 8, "CommandName": "Get-PnPListItem", - "Rank": 8 + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", + "Id": 521 }, { - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", - "Id": 520, + "Rank": 9, "CommandName": "Get-PnPListItem", - "Rank": 9 + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", + "Id": 522 }, { - "Command": "Get-PnPListItemComment -List Tasks -Identity 1", - "Id": 521, + "Rank": 1, "CommandName": "Get-PnPListItemComment", - "Rank": 1 + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", + "Id": 523 }, { - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", - "Id": 522, + "Rank": 1, "CommandName": "Get-PnPListItemPermission", - "Rank": 1 + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", + "Id": 524 }, { - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", - "Id": 523, + "Rank": 1, "CommandName": "Get-PnPListItemVersion", - "Rank": 1 + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", + "Id": 525 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", - "Id": 524, + "Rank": 1, "CommandName": "Get-PnPListPermissions", - "Rank": 1 + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", + "Id": 526 }, { - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", - "Id": 525, + "Rank": 2, "CommandName": "Get-PnPListPermissions", - "Rank": 2 + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", + "Id": 527 }, { - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", - "Id": 526, + "Rank": 1, "CommandName": "Get-PnPListRecordDeclaration", - "Rank": 1 + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", + "Id": 528 }, { - "Command": "Get-PnPMasterPage", - "Id": 527, + "Rank": 1, "CommandName": "Get-PnPMasterPage", - "Rank": 1 + "Command": "Get-PnPMasterPage", + "Id": 529 }, { - "Command": "Get-PnPMessageCenterAnnouncement", - "Id": 528, + "Rank": 1, "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 1 + "Command": "Get-PnPMessageCenterAnnouncement", + "Id": 530 }, { - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", - "Id": 529, + "Rank": 2, "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 2 + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", + "Id": 531 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup", - "Id": 530, + "Rank": 1, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1 + "Command": "Get-PnPMicrosoft365ExpiringGroup", + "Id": 532 }, { - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", - "Id": 531, + "Rank": 2, "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 2 + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", + "Id": 533 }, { - "Command": "Get-PnPMicrosoft365Group", - "Id": 532, + "Rank": 1, "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 1 + "Command": "Get-PnPMicrosoft365Group", + "Id": 534 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupId", - "Id": 533, + "Rank": 2, "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 2 + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", + "Id": 535 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", - "Id": 534, + "Rank": 3, "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 3 + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", + "Id": 536 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", - "Id": 535, + "Rank": 4, "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 4 + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", + "Id": 537 }, { - "Command": "Get-PnPMicrosoft365Group -Identity $group", - "Id": 536, + "Rank": 5, "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 5 + "Command": "Get-PnPMicrosoft365Group -Identity $group", + "Id": 538 }, { - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", - "Id": 537, + "Rank": 6, "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 6 + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", + "Id": 539 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint", - "Id": 538, + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1 + "Command": "Get-PnPMicrosoft365GroupEndpoint", + "Id": 540 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", - "Id": 539, + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 2 + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", + "Id": 541 }, { - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 540, + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 3 + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 542 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", - "Id": 541, + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 1 + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", + "Id": 543 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", - "Id": 542, + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 2 + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", + "Id": 544 }, { - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", - "Id": 543, + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 3 + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", + "Id": 545 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", - "Id": 544, + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 1 + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", + "Id": 546 }, { - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", - "Id": 545, + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 2 + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", + "Id": 547 }, { - "Command": "Get-PnPMicrosoft365GroupSettings", - "Id": 546, + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1 + "Command": "Get-PnPMicrosoft365GroupSettings", + "Id": 548 }, { - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", - "Id": 547, + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 2 + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", + "Id": 549 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates", - "Id": 548, + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1 + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", + "Id": 550 }, { - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", - "Id": 549, + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 2 + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", + "Id": 551 }, { - "Command": "Get-PnPMicrosoft365GroupTeam", - "Id": 550, + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1 + "Command": "Get-PnPMicrosoft365GroupTeam", + "Id": 552 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", - "Id": 551, + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 2 + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", + "Id": 553 }, { - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 552, + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 3 + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 554 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity", - "Id": 553, + "Rank": 1, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1 + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", + "Id": 555 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", - "Id": 554, + "Rank": 2, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 2 + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", + "Id": 556 }, { - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", - "Id": 555, + "Rank": 3, "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 3 + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", + "Id": 557 }, { - "Command": "Get-PnPNavigationNode", - "Id": 556, + "Rank": 1, "CommandName": "Get-PnPNavigationNode", - "Rank": 1 + "Command": "Get-PnPNavigationNode", + "Id": 558 }, { - "Command": "Get-PnPNavigationNode -Location QuickLaunch", - "Id": 557, + "Rank": 2, "CommandName": "Get-PnPNavigationNode", - "Rank": 2 + "Command": "Get-PnPNavigationNode -Location QuickLaunch", + "Id": 559 }, { - "Command": "Get-PnPNavigationNode -Location TopNavigationBar", - "Id": 558, + "Rank": 3, "CommandName": "Get-PnPNavigationNode", - "Rank": 3 + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", + "Id": 560 }, { - "Command": "Get-PnPOrgAssetsLibrary", - "Id": 559, + "Rank": 1, "CommandName": "Get-PnPOrgAssetsLibrary", - "Rank": 1 + "Command": "Get-PnPOrgAssetsLibrary", + "Id": 561 }, { - "Command": "Get-PnPOrgNewsSite", - "Id": 560, + "Rank": 1, "CommandName": "Get-PnPOrgNewsSite", - "Rank": 1 + "Command": "Get-PnPOrgNewsSite", + "Id": 562 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", - "Id": 561, + "Rank": 1, "CommandName": "Get-PnPPage", - "Rank": 1 + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", + "Id": 563 }, { - "Command": "Get-PnPPage \"MyPage\"", - "Id": 562, + "Rank": 2, "CommandName": "Get-PnPPage", - "Rank": 2 + "Command": "Get-PnPPage \"MyPage\"", + "Id": 564 }, { - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", - "Id": 563, + "Rank": 3, "CommandName": "Get-PnPPage", - "Rank": 3 + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", + "Id": 565 }, { - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", - "Id": 564, + "Rank": 4, "CommandName": "Get-PnPPage", - "Rank": 4 + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", + "Id": 566 }, { - "Command": "Get-PnPPageComponent -Page Home", - "Id": 565, + "Rank": 1, "CommandName": "Get-PnPPageComponent", - "Rank": 1 + "Command": "Get-PnPPageComponent -Page Home", + "Id": 567 }, { - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 566, + "Rank": 2, "CommandName": "Get-PnPPageComponent", - "Rank": 2 + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 568 }, { - "Command": "Get-PnPPageComponent -Page Home -ListAvailable", - "Id": 567, + "Rank": 3, "CommandName": "Get-PnPPageComponent", - "Rank": 3 + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", + "Id": 569 }, { - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", - "Id": 568, + "Rank": 1, "CommandName": "Get-PnPPlannerBucket", - "Rank": 1 + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", + "Id": 570 }, { - "Command": "Get-PnPPlannerConfiguration", - "Id": 569, + "Rank": 1, "CommandName": "Get-PnPPlannerConfiguration", - "Rank": 1 + "Command": "Get-PnPPlannerConfiguration", + "Id": 571 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", - "Id": 570, + "Rank": 1, "CommandName": "Get-PnPPlannerPlan", - "Rank": 1 + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", + "Id": 572 }, { - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", - "Id": 571, + "Rank": 2, "CommandName": "Get-PnPPlannerPlan", - "Rank": 2 + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", + "Id": 573 }, { - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", - "Id": 572, + "Rank": 3, "CommandName": "Get-PnPPlannerPlan", - "Rank": 3 + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", + "Id": 574 }, { - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Id": 573, + "Rank": 1, "CommandName": "Get-PnPPlannerRosterMember", - "Rank": 1 + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Id": 575 }, { - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", - "Id": 574, + "Rank": 1, "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 1 + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", + "Id": 576 }, { - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 575, + "Rank": 2, "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 2 + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 577 }, { - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", - "Id": 576, + "Rank": 1, "CommandName": "Get-PnPPlannerTask", - "Rank": 1 + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", + "Id": 578 }, { - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Id": 577, + "Rank": 2, "CommandName": "Get-PnPPlannerTask", - "Rank": 2 + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Id": 579 }, { - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", - "Id": 578, + "Rank": 3, "CommandName": "Get-PnPPlannerTask", - "Rank": 3 + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", + "Id": 580 }, { - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Id": 579, + "Rank": 1, "CommandName": "Get-PnPPlannerUserPolicy", - "Rank": 1 + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Id": 581 }, { - "Command": "Get-PnPPowerPlatformEnvironment", - "Id": 580, + "Rank": 1, "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 1 + "Command": "Get-PnPPowerPlatformEnvironment", + "Id": 582 }, { - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", - "Id": 581, + "Rank": 2, "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 2 + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", + "Id": 583 }, { - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", - "Id": 582, + "Rank": 3, "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 3 + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", + "Id": 584 }, { - "Command": "Get-PnPPowerShellTelemetryEnabled", - "Id": 583, + "Rank": 1, "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1 + "Command": "Get-PnPPowerShellTelemetryEnabled", + "Id": 585 }, { - "Command": "Get-PnPPropertyBag", - "Id": 584, + "Rank": 1, "CommandName": "Get-PnPPropertyBag", - "Rank": 1 + "Command": "Get-PnPPropertyBag", + "Id": 586 }, { - "Command": "Get-PnPPropertyBag -Key MyKey", - "Id": 585, + "Rank": 2, "CommandName": "Get-PnPPropertyBag", - "Rank": 2 + "Command": "Get-PnPPropertyBag -Key MyKey", + "Id": 587 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder", - "Id": 586, + "Rank": 3, "CommandName": "Get-PnPPropertyBag", - "Rank": 3 + "Command": "Get-PnPPropertyBag -Folder /MyFolder", + "Id": 588 }, { - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", - "Id": 587, + "Rank": 4, "CommandName": "Get-PnPPropertyBag", - "Rank": 4 + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", + "Id": 589 }, { - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", - "Id": 588, + "Rank": 5, "CommandName": "Get-PnPPropertyBag", - "Rank": 5 + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", + "Id": 590 }, { - "Command": "Get-PnPPublishingImageRendition", - "Id": 589, + "Rank": 1, "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 1 + "Command": "Get-PnPPublishingImageRendition", + "Id": 591 }, { - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", - "Id": 590, + "Rank": 2, "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 2 + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", + "Id": 592 }, { - "Command": "Get-PnPPublishingImageRendition -Identity 2", - "Id": 591, + "Rank": 3, "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 3 + "Command": "Get-PnPPublishingImageRendition -Identity 2", + "Id": 593 }, { - "Command": "Get-PnPRecycleBinItem", - "Id": 592, + "Rank": 1, "CommandName": "Get-PnPRecycleBinItem", - "Rank": 1 + "Command": "Get-PnPRecycleBinItem", + "Id": 594 }, { - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", - "Id": 593, + "Rank": 2, "CommandName": "Get-PnPRecycleBinItem", - "Rank": 2 + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", + "Id": 595 }, { - "Command": "Get-PnPRecycleBinItem -FirstStage", - "Id": 594, + "Rank": 3, "CommandName": "Get-PnPRecycleBinItem", - "Rank": 3 + "Command": "Get-PnPRecycleBinItem -FirstStage", + "Id": 596 }, { - "Command": "Get-PnPRecycleBinItem -SecondStage", - "Id": 595, + "Rank": 4, "CommandName": "Get-PnPRecycleBinItem", - "Rank": 4 + "Command": "Get-PnPRecycleBinItem -SecondStage", + "Id": 597 }, { - "Command": "Get-PnPRecycleBinItem -RowLimit 10000", - "Id": 596, + "Rank": 5, "CommandName": "Get-PnPRecycleBinItem", - "Rank": 5 + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", + "Id": 598 }, { - "Command": "Get-PnPRequestAccessEmails", - "Id": 597, + "Rank": 1, "CommandName": "Get-PnPRequestAccessEmails", - "Rank": 1 + "Command": "Get-PnPRequestAccessEmails", + "Id": 599 }, { - "Command": "Get-PnPRoleDefinition", - "Id": 598, + "Rank": 1, "CommandName": "Get-PnPRoleDefinition", - "Rank": 1 + "Command": "Get-PnPRoleDefinition", + "Id": 600 }, { - "Command": "Get-PnPRoleDefinition -Identity Read", - "Id": 599, + "Rank": 2, "CommandName": "Get-PnPRoleDefinition", - "Rank": 2 + "Command": "Get-PnPRoleDefinition -Identity Read", + "Id": 601 }, { - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", - "Id": 600, + "Rank": 3, "CommandName": "Get-PnPRoleDefinition", - "Rank": 3 + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", + "Id": 602 }, { - "Command": "Get-PnPSearchConfiguration", - "Id": 601, + "Rank": 1, "CommandName": "Get-PnPSearchConfiguration", - "Rank": 1 + "Command": "Get-PnPSearchConfiguration", + "Id": 603 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site", - "Id": 602, + "Rank": 2, "CommandName": "Get-PnPSearchConfiguration", - "Rank": 2 + "Command": "Get-PnPSearchConfiguration -Scope Site", + "Id": 604 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription", - "Id": 603, + "Rank": 3, "CommandName": "Get-PnPSearchConfiguration", - "Rank": 3 + "Command": "Get-PnPSearchConfiguration -Scope Subscription", + "Id": 605 }, { - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 604, + "Rank": 4, "CommandName": "Get-PnPSearchConfiguration", - "Rank": 4 + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 606 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", - "Id": 605, + "Rank": 5, "CommandName": "Get-PnPSearchConfiguration", - "Rank": 5 + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", + "Id": 607 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", - "Id": 606, + "Rank": 6, "CommandName": "Get-PnPSearchConfiguration", - "Rank": 6 + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", + "Id": 608 }, { - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", - "Id": 607, + "Rank": 7, "CommandName": "Get-PnPSearchConfiguration", - "Rank": 7 + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", + "Id": 609 }, { - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", - "Id": 608, + "Rank": 8, "CommandName": "Get-PnPSearchConfiguration", - "Rank": 8 + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", + "Id": 610 }, { - "Command": "Get-PnPSearchCrawlLog", - "Id": 609, + "Rank": 1, "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 1 + "Command": "Get-PnPSearchCrawlLog", + "Id": 611 }, { - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", - "Id": 610, + "Rank": 2, "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 2 + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", + "Id": 612 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", - "Id": 611, + "Rank": 3, "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 3 + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", + "Id": 613 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", - "Id": 612, + "Rank": 4, "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 4 + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", + "Id": 614 }, { - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", - "Id": 613, + "Rank": 5, "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 5 + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", + "Id": 615 }, { - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", - "Id": 614, + "Rank": 6, "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 6 + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", + "Id": 616 }, { - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", - "Id": 615, + "Rank": 7, "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 7 + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", + "Id": 617 }, { - "Command": "Get-PnPSearchSettings", - "Id": 616, + "Rank": 1, "CommandName": "Get-PnPSearchSettings", - "Rank": 1 + "Command": "Get-PnPSearchSettings", + "Id": 618 }, { - "Command": "Get-PnPServiceCurrentHealth", - "Id": 617, + "Rank": 1, "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 1 + "Command": "Get-PnPServiceCurrentHealth", + "Id": 619 }, { - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", - "Id": 618, + "Rank": 2, "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 2 + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", + "Id": 620 }, { - "Command": "Get-PnPServiceHealthIssue", - "Id": 619, + "Rank": 1, "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 1 + "Command": "Get-PnPServiceHealthIssue", + "Id": 621 }, { - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", - "Id": 620, + "Rank": 2, "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 2 + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", + "Id": 622 }, { - "Command": "Get-PnPSharePointAddIn", - "Id": 621, + "Rank": 1, "CommandName": "Get-PnPSharePointAddIn", - "Rank": 1 + "Command": "Get-PnPSharePointAddIn", + "Id": 623 }, { - "Command": "Get-PnPSharePointAddIn -IncludeSubsites", - "Id": 622, + "Rank": 2, "CommandName": "Get-PnPSharePointAddIn", - "Rank": 2 + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", + "Id": 624 }, { - "Command": "Get-PnPSharingForNonOwnersOfSite", - "Id": 623, + "Rank": 1, "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1 + "Command": "Get-PnPSharingForNonOwnersOfSite", + "Id": 625 }, { - "Command": "Get-PnPSite", - "Id": 624, + "Rank": 1, "CommandName": "Get-PnPSite", - "Rank": 1 + "Command": "Get-PnPSite", + "Id": 626 }, { - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", - "Id": 625, + "Rank": 2, "CommandName": "Get-PnPSite", - "Rank": 2 + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", + "Id": 627 }, { - "Command": "Get-PnPSiteClosure", - "Id": 626, + "Rank": 1, "CommandName": "Get-PnPSiteClosure", - "Rank": 1 + "Command": "Get-PnPSiteClosure", + "Id": 628 }, { - "Command": "Get-PnPSiteCollectionAdmin", - "Id": 627, + "Rank": 1, "CommandName": "Get-PnPSiteCollectionAdmin", - "Rank": 1 + "Command": "Get-PnPSiteCollectionAdmin", + "Id": 629 }, { - "Command": "Get-PnPSiteCollectionAppCatalog", - "Id": 628, + "Rank": 1, "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1 + "Command": "Get-PnPSiteCollectionAppCatalog", + "Id": 630 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", - "Id": 629, + "Rank": 2, "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 2 + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", + "Id": 631 }, { - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", - "Id": 630, + "Rank": 3, "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 3 + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", + "Id": 632 }, { - "Command": "Get-PnPSiteCollectionTermStore", - "Id": 631, + "Rank": 1, "CommandName": "Get-PnPSiteCollectionTermStore", - "Rank": 1 + "Command": "Get-PnPSiteCollectionTermStore", + "Id": 633 }, { - "Command": "Get-PnPSiteDesign", - "Id": 632, + "Rank": 1, "CommandName": "Get-PnPSiteDesign", - "Rank": 1 + "Command": "Get-PnPSiteDesign", + "Id": 634 }, { - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 633, + "Rank": 2, "CommandName": "Get-PnPSiteDesign", - "Rank": 2 + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 635 }, { - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 634, + "Rank": 1, "CommandName": "Get-PnPSiteDesignRights", - "Rank": 1 + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 636 }, { - "Command": "Get-PnPSiteDesignRun", - "Id": 635, + "Rank": 1, "CommandName": "Get-PnPSiteDesignRun", - "Rank": 1 + "Command": "Get-PnPSiteDesignRun", + "Id": 637 }, { - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", - "Id": 636, + "Rank": 2, "CommandName": "Get-PnPSiteDesignRun", - "Rank": 2 + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", + "Id": 638 }, { - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", - "Id": 637, + "Rank": 1, "CommandName": "Get-PnPSiteDesignTask", - "Rank": 1 + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", + "Id": 639 }, { - "Command": "Get-PnPSiteDesignTask", - "Id": 638, + "Rank": 2, "CommandName": "Get-PnPSiteDesignTask", - "Rank": 2 + "Command": "Get-PnPSiteDesignTask", + "Id": 640 }, { - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", - "Id": 639, + "Rank": 3, "CommandName": "Get-PnPSiteDesignTask", - "Rank": 3 + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", + "Id": 641 }, { - "Command": "Get-PnPSiteGroup", - "Id": 640, + "Rank": 1, "CommandName": "Get-PnPSiteGroup", - "Rank": 1 + "Command": "Get-PnPSiteGroup", + "Id": 642 }, { - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Id": 641, + "Rank": 2, "CommandName": "Get-PnPSiteGroup", - "Rank": 2 + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Id": 643 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", - "Id": 642, + "Rank": 3, "CommandName": "Get-PnPSiteGroup", - "Rank": 3 + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", + "Id": 644 }, { - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", - "Id": 643, + "Rank": 4, "CommandName": "Get-PnPSiteGroup", - "Rank": 4 + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", + "Id": 645 }, { - "Command": "Get-PnPSitePolicy", - "Id": 644, + "Rank": 1, "CommandName": "Get-PnPSitePolicy", - "Rank": 1 + "Command": "Get-PnPSitePolicy", + "Id": 646 }, { - "Command": "Get-PnPSitePolicy -AllAvailable", - "Id": 645, + "Rank": 2, "CommandName": "Get-PnPSitePolicy", - "Rank": 2 + "Command": "Get-PnPSitePolicy -AllAvailable", + "Id": 647 }, { - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", - "Id": 646, + "Rank": 3, "CommandName": "Get-PnPSitePolicy", - "Rank": 3 + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", + "Id": 648 }, { - "Command": "Get-PnPSiteScript", - "Id": 647, + "Rank": 1, "CommandName": "Get-PnPSiteScript", - "Rank": 1 + "Command": "Get-PnPSiteScript", + "Id": 649 }, { - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 648, + "Rank": 2, "CommandName": "Get-PnPSiteScript", - "Rank": 2 + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 650 }, { - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", - "Id": 649, + "Rank": 1, "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 1 + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", + "Id": 651 }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", - "Id": 650, + "Rank": 2, "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 2 + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", + "Id": 652 }, { - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", - "Id": 651, + "Rank": 3, "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 3 + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", + "Id": 653 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", - "Id": 652, + "Rank": 1, "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 1 + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", + "Id": 654 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", - "Id": 653, + "Rank": 2, "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 2 + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", + "Id": 655 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", - "Id": 654, + "Rank": 3, "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 3 + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", + "Id": 656 }, { - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", - "Id": 655, + "Rank": 4, "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 4 + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", + "Id": 657 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", - "Id": 656, + "Rank": 5, "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 5 + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", + "Id": 658 }, { - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", - "Id": 657, + "Rank": 6, "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 6 + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", + "Id": 659 }, { - "Command": "Get-PnPSiteSearchQueryResults", - "Id": 658, + "Rank": 1, "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 1 + "Command": "Get-PnPSiteSearchQueryResults", + "Id": 660 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", - "Id": 659, + "Rank": 2, "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 2 + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", + "Id": 661 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", - "Id": 660, + "Rank": 3, "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 3 + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", + "Id": 662 }, { - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", - "Id": 661, + "Rank": 4, "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 4 + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", + "Id": 663 }, { - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", - "Id": 662, + "Rank": 5, "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 5 + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", + "Id": 664 }, { - "Command": "Get-PnPSiteSearchQueryResults -All", - "Id": 663, + "Rank": 6, "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 6 + "Command": "Get-PnPSiteSearchQueryResults -All", + "Id": 665 }, { - "Command": "Get-PnPSiteSensitivityLabel", - "Id": 664, + "Rank": 1, "CommandName": "Get-PnPSiteSensitivityLabel", - "Rank": 1 + "Command": "Get-PnPSiteSensitivityLabel", + "Id": 666 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp", - "Id": 665, + "Rank": 1, "CommandName": "Get-PnPSiteTemplate", - "Rank": 1 + "Command": "Get-PnPSiteTemplate -Out template.pnp", + "Id": 667 }, { - "Command": "Get-PnPSiteTemplate -Out template.xml", - "Id": 666, + "Rank": 2, "CommandName": "Get-PnPSiteTemplate", - "Rank": 2 + "Command": "Get-PnPSiteTemplate -Out template.xml", + "Id": 668 }, { - "Command": "Get-PnPSiteTemplate -Out template.md", - "Id": 667, + "Rank": 3, "CommandName": "Get-PnPSiteTemplate", - "Rank": 3 + "Command": "Get-PnPSiteTemplate -Out template.md", + "Id": 669 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", - "Id": 668, + "Rank": 4, "CommandName": "Get-PnPSiteTemplate", - "Rank": 4 + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", + "Id": 670 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", - "Id": 669, + "Rank": 5, "CommandName": "Get-PnPSiteTemplate", - "Rank": 5 + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", + "Id": 671 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", - "Id": 670, + "Rank": 6, "CommandName": "Get-PnPSiteTemplate", - "Rank": 6 + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", + "Id": 672 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", - "Id": 671, + "Rank": 7, "CommandName": "Get-PnPSiteTemplate", - "Rank": 7 + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", + "Id": 673 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", - "Id": 672, + "Rank": 8, "CommandName": "Get-PnPSiteTemplate", - "Rank": 8 + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", + "Id": 674 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", - "Id": 673, + "Rank": 9, "CommandName": "Get-PnPSiteTemplate", - "Rank": 9 + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", + "Id": 675 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", - "Id": 674, + "Rank": 10, "CommandName": "Get-PnPSiteTemplate", - "Rank": 10 + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", + "Id": 676 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", - "Id": 675, + "Rank": 11, "CommandName": "Get-PnPSiteTemplate", - "Rank": 11 + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", + "Id": 677 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", - "Id": 676, + "Rank": 12, "CommandName": "Get-PnPSiteTemplate", - "Rank": 12 + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", + "Id": 678 }, { - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", - "Id": 677, + "Rank": 13, "CommandName": "Get-PnPSiteTemplate", - "Rank": 13 + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", + "Id": 679 }, { - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", - "Id": 678, + "Rank": 14, "CommandName": "Get-PnPSiteTemplate", - "Rank": 14 + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", + "Id": 680 }, { - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Id": 679, + "Rank": 1, "CommandName": "Get-PnPSiteUserInvitations", - "Rank": 1 + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Id": 681 }, { - "Command": "Get-PnPStorageEntity", - "Id": 680, + "Rank": 1, "CommandName": "Get-PnPStorageEntity", - "Rank": 1 + "Command": "Get-PnPStorageEntity", + "Id": 682 }, { - "Command": "Get-PnPStorageEntity -Key MyKey", - "Id": 681, + "Rank": 2, "CommandName": "Get-PnPStorageEntity", - "Rank": 2 + "Command": "Get-PnPStorageEntity -Key MyKey", + "Id": 683 }, { - "Command": "Get-PnPStorageEntity -Scope Site", - "Id": 682, + "Rank": 3, "CommandName": "Get-PnPStorageEntity", - "Rank": 3 + "Command": "Get-PnPStorageEntity -Scope Site", + "Id": 684 }, { - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", - "Id": 683, + "Rank": 4, "CommandName": "Get-PnPStorageEntity", - "Rank": 4 + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", + "Id": 685 }, { - "Command": "Get-PnPStoredCredential -Name O365", - "Id": 684, + "Rank": 1, "CommandName": "Get-PnPStoredCredential", - "Rank": 1 + "Command": "Get-PnPStoredCredential -Name O365", + "Id": 686 }, { - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 685, + "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Rank": 1 + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 687 }, { - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 686, + "Rank": 1, "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Rank": 1 + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 688 }, { - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", - "Id": 687, + "Rank": 1, "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Rank": 1 + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", + "Id": 689 }, { - "Command": "Get-PnPSubWeb", - "Id": 688, + "Rank": 1, "CommandName": "Get-PnPSubWeb", - "Rank": 1 + "Command": "Get-PnPSubWeb", + "Id": 690 }, { - "Command": "Get-PnPSubWeb -Recurse", - "Id": 689, + "Rank": 2, "CommandName": "Get-PnPSubWeb", - "Rank": 2 + "Command": "Get-PnPSubWeb -Recurse", + "Id": 691 }, { - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", - "Id": 690, + "Rank": 3, "CommandName": "Get-PnPSubWeb", - "Rank": 3 + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", + "Id": 692 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", - "Id": 691, + "Rank": 4, "CommandName": "Get-PnPSubWeb", - "Rank": 4 + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", + "Id": 693 }, { - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", - "Id": 692, + "Rank": 5, "CommandName": "Get-PnPSubWeb", - "Rank": 5 + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", + "Id": 694 }, { - "Command": "Get-PnPSyntexModel", - "Id": 693, + "Rank": 1, "CommandName": "Get-PnPSyntexModel", - "Rank": 1 + "Command": "Get-PnPSyntexModel", + "Id": 695 }, { - "Command": "Get-PnPSyntexModel -Identity 1", - "Id": 694, + "Rank": 2, "CommandName": "Get-PnPSyntexModel", - "Rank": 2 + "Command": "Get-PnPSyntexModel -Identity 1", + "Id": 696 }, { - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", - "Id": 695, + "Rank": 3, "CommandName": "Get-PnPSyntexModel", - "Rank": 3 + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", + "Id": 697 }, { - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", - "Id": 696, + "Rank": 1, "CommandName": "Get-PnPSyntexModelPublication", - "Rank": 1 + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", + "Id": 698 }, { - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", - "Id": 697, + "Rank": 1, "CommandName": "Get-PnPTaxonomyItem", - "Rank": 1 + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", + "Id": 699 }, { - "Command": "Get-PnPTeamsApp", - "Id": 698, + "Rank": 1, "CommandName": "Get-PnPTeamsApp", - "Rank": 1 + "Command": "Get-PnPTeamsApp", + "Id": 700 }, { - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", - "Id": 699, + "Rank": 2, "CommandName": "Get-PnPTeamsApp", - "Rank": 2 + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", + "Id": 701 }, { - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", - "Id": 700, + "Rank": 3, "CommandName": "Get-PnPTeamsApp", - "Rank": 3 + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", + "Id": 702 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", - "Id": 701, + "Rank": 1, "CommandName": "Get-PnPTeamsChannel", - "Rank": 1 + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", + "Id": 703 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", - "Id": 702, + "Rank": 2, "CommandName": "Get-PnPTeamsChannel", - "Rank": 2 + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", + "Id": 704 }, { - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Id": 703, + "Rank": 3, "CommandName": "Get-PnPTeamsChannel", - "Rank": 3 + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Id": 705 }, { - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", - "Id": 704, + "Rank": 1, "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 1 + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", + "Id": 706 }, { - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", - "Id": 705, + "Rank": 2, "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 2 + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", + "Id": 707 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", - "Id": 706, + "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 1 + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", + "Id": 708 }, { - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", - "Id": 707, + "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 2 + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", + "Id": 709 }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", - "Id": 708, + "Rank": 1, "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 1 + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", + "Id": 710 }, { - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", - "Id": 709, + "Rank": 2, "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 2 + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", + "Id": 711 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", - "Id": 710, + "Rank": 1, "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 1 + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", + "Id": 712 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", - "Id": 711, + "Rank": 2, "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 2 + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", + "Id": 713 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", - "Id": 712, + "Rank": 3, "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 3 + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", + "Id": 714 }, { - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Id": 713, + "Rank": 4, "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 4 + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Id": 715 }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", - "Id": 714, + "Rank": 1, "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 1 + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", + "Id": 716 }, { - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", - "Id": 715, + "Rank": 2, "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 2 + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", + "Id": 717 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", - "Id": 716, + "Rank": 1, "CommandName": "Get-PnPTeamsTab", - "Rank": 1 + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", + "Id": 718 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", - "Id": 717, + "Rank": 2, "CommandName": "Get-PnPTeamsTab", - "Rank": 2 + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", + "Id": 719 }, { - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", - "Id": 718, + "Rank": 3, "CommandName": "Get-PnPTeamsTab", - "Rank": 3 + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", + "Id": 720 }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", - "Id": 719, + "Rank": 4, "CommandName": "Get-PnPTeamsTab", - "Rank": 4 + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", + "Id": 721 }, { - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", - "Id": 720, + "Rank": 5, "CommandName": "Get-PnPTeamsTab", - "Rank": 5 + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", + "Id": 722 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Id": 721, + "Rank": 1, "CommandName": "Get-PnPTeamsTag", - "Rank": 1 + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Id": 723 }, { - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Id": 722, + "Rank": 2, "CommandName": "Get-PnPTeamsTag", - "Rank": 2 + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Id": 724 }, { - "Command": "Get-PnPTeamsTeam", - "Id": 723, + "Rank": 1, "CommandName": "Get-PnPTeamsTeam", - "Rank": 1 + "Command": "Get-PnPTeamsTeam", + "Id": 725 }, { - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", - "Id": 724, + "Rank": 2, "CommandName": "Get-PnPTeamsTeam", - "Rank": 2 + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", + "Id": 726 }, { - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", - "Id": 725, + "Rank": 3, "CommandName": "Get-PnPTeamsTeam", - "Rank": 3 + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", + "Id": 727 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", - "Id": 726, + "Rank": 4, "CommandName": "Get-PnPTeamsTeam", - "Rank": 4 + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", + "Id": 728 }, { - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", - "Id": 727, + "Rank": 5, "CommandName": "Get-PnPTeamsTeam", - "Rank": 5 + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", + "Id": 729 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam", - "Id": 728, + "Rank": 1, "CommandName": "Get-PnPTeamsUser", - "Rank": 1 + "Command": "Get-PnPTeamsUser -Team MyTeam", + "Id": 730 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", - "Id": 729, + "Rank": 2, "CommandName": "Get-PnPTeamsUser", - "Rank": 2 + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", + "Id": 731 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", - "Id": 730, + "Rank": 3, "CommandName": "Get-PnPTeamsUser", - "Rank": 3 + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", + "Id": 732 }, { - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", - "Id": 731, + "Rank": 4, "CommandName": "Get-PnPTeamsUser", - "Rank": 4 + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", + "Id": 733 }, { - "Command": "Get-PnPTemporarilyDisableAppBar", - "Id": 732, + "Rank": 1, "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1 + "Command": "Get-PnPTemporarilyDisableAppBar", + "Id": 734 }, { - "Command": "Get-PnPTenant", - "Id": 733, + "Rank": 1, "CommandName": "Get-PnPTenant", - "Rank": 1 + "Command": "Get-PnPTenant", + "Id": 735 }, { - "Command": "Get-PnPTenantAppCatalogUrl", - "Id": 734, + "Rank": 1, "CommandName": "Get-PnPTenantAppCatalogUrl", - "Rank": 1 + "Command": "Get-PnPTenantAppCatalogUrl", + "Id": 736 }, { - "Command": "Get-PnPTenantCdnEnabled -CdnType Public", - "Id": 735, + "Rank": 1, "CommandName": "Get-PnPTenantCdnEnabled", - "Rank": 1 + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", + "Id": 737 }, { - "Command": "Get-PnPTenantCdnOrigin -CdnType Public", - "Id": 736, + "Rank": 1, "CommandName": "Get-PnPTenantCdnOrigin", - "Rank": 1 + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", + "Id": 738 }, { - "Command": "Get-PnPTenantCdnPolicies -CdnType Public", - "Id": 737, + "Rank": 1, "CommandName": "Get-PnPTenantCdnPolicies", - "Rank": 1 + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", + "Id": 739 }, { - "Command": "Get-PnPTenantDeletedSite", - "Id": 738, + "Rank": 1, "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 1 + "Command": "Get-PnPTenantDeletedSite", + "Id": 740 }, { - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 739, + "Rank": 2, "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 2 + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 741 }, { - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", - "Id": 740, + "Rank": 3, "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 3 + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", + "Id": 742 }, { - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", - "Id": 741, + "Rank": 4, "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 4 + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", + "Id": 743 }, { - "Command": "Get-PnPTenantId", - "Id": 742, + "Rank": 1, "CommandName": "Get-PnPTenantId", - "Rank": 1 + "Command": "Get-PnPTenantId", + "Id": 744 }, { - "Command": "Get-PnPTenantId contoso", - "Id": 743, + "Rank": 2, "CommandName": "Get-PnPTenantId", - "Rank": 2 + "Command": "Get-PnPTenantId contoso", + "Id": 745 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", - "Id": 744, + "Rank": 3, "CommandName": "Get-PnPTenantId", - "Rank": 3 + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", + "Id": 746 }, { - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", - "Id": 745, + "Rank": 4, "CommandName": "Get-PnPTenantId", - "Rank": 4 + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", + "Id": 747 }, { - "Command": "Get-PnPTenantInstance", - "Id": 746, + "Rank": 1, "CommandName": "Get-PnPTenantInstance", - "Rank": 1 + "Command": "Get-PnPTenantInstance", + "Id": 748 }, { - "Command": "Get-PnPTenantRecycleBinItem", - "Id": 747, + "Rank": 1, "CommandName": "Get-PnPTenantRecycleBinItem", - "Rank": 1 + "Command": "Get-PnPTenantRecycleBinItem", + "Id": 749 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject", - "Id": 748, + "Rank": 1, "CommandName": "Get-PnPTenantSequence", - "Rank": 1 + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", + "Id": 750 }, { - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", - "Id": 749, + "Rank": 2, "CommandName": "Get-PnPTenantSequence", - "Rank": 2 + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", + "Id": 751 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", - "Id": 750, + "Rank": 1, "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 1 + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", + "Id": 752 }, { - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", - "Id": 751, + "Rank": 2, "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 2 + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", + "Id": 753 }, { - "Command": "Get-PnPTenantSite", - "Id": 752, + "Rank": 1, "CommandName": "Get-PnPTenantSite", - "Rank": 1 + "Command": "Get-PnPTenantSite", + "Id": 754 }, { - "Command": "Get-PnPTenantSite -Detailed", - "Id": 753, + "Rank": 2, "CommandName": "Get-PnPTenantSite", - "Rank": 2 + "Command": "Get-PnPTenantSite -Detailed", + "Id": 755 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites", - "Id": 754, + "Rank": 3, "CommandName": "Get-PnPTenantSite", - "Rank": 3 + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", + "Id": 756 }, { - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", - "Id": 755, + "Rank": 4, "CommandName": "Get-PnPTenantSite", - "Rank": 4 + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", + "Id": 757 }, { - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", - "Id": 756, + "Rank": 5, "CommandName": "Get-PnPTenantSite", - "Rank": 5 + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", + "Id": 758 }, { - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", - "Id": 757, + "Rank": 6, "CommandName": "Get-PnPTenantSite", - "Rank": 6 + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", + "Id": 759 }, { - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", - "Id": 758, + "Rank": 7, "CommandName": "Get-PnPTenantSite", - "Rank": 7 + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", + "Id": 760 }, { - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", - "Id": 759, + "Rank": 8, "CommandName": "Get-PnPTenantSite", - "Rank": 8 + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", + "Id": 761 }, { - "Command": "Get-PnPTenantSite -GroupIdDefined $true", - "Id": 760, + "Rank": 9, "CommandName": "Get-PnPTenantSite", - "Rank": 9 + "Command": "Get-PnPTenantSite -GroupIdDefined $true", + "Id": 762 }, { - "Command": "Get-PnPTenantSyncClientRestriction", - "Id": 761, + "Rank": 1, "CommandName": "Get-PnPTenantSyncClientRestriction", - "Rank": 1 + "Command": "Get-PnPTenantSyncClientRestriction", + "Id": 763 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", - "Id": 762, + "Rank": 1, "CommandName": "Get-PnPTenantTemplate", - "Rank": 1 + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", + "Id": 764 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", - "Id": 763, + "Rank": 2, "CommandName": "Get-PnPTenantTemplate", - "Rank": 2 + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", + "Id": 765 }, { - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", - "Id": 764, + "Rank": 3, "CommandName": "Get-PnPTenantTemplate", - "Rank": 3 + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", + "Id": 766 }, { - "Command": "Get-PnPTenantTheme", - "Id": 765, + "Rank": 1, "CommandName": "Get-PnPTenantTheme", - "Rank": 1 + "Command": "Get-PnPTenantTheme", + "Id": 767 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Id": 766, + "Rank": 2, "CommandName": "Get-PnPTenantTheme", - "Rank": 2 + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Id": 768 }, { - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", - "Id": 767, + "Rank": 3, "CommandName": "Get-PnPTenantTheme", - "Rank": 3 + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", + "Id": 769 }, { - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 768, + "Rank": 1, "CommandName": "Get-PnPTerm", - "Rank": 1 + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 770 }, { - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 769, + "Rank": 2, "CommandName": "Get-PnPTerm", - "Rank": 2 + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 771 }, { - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 770, + "Rank": 3, "CommandName": "Get-PnPTerm", - "Rank": 3 + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 772 }, { - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", - "Id": 771, + "Rank": 4, "CommandName": "Get-PnPTerm", - "Rank": 4 + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", + "Id": 773 }, { - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", - "Id": 772, + "Rank": 5, "CommandName": "Get-PnPTerm", - "Rank": 5 + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", + "Id": 774 }, { - "Command": "Get-PnPTermGroup", - "Id": 773, + "Rank": 1, "CommandName": "Get-PnPTermGroup", - "Rank": 1 + "Command": "Get-PnPTermGroup", + "Id": 775 }, { - "Command": "Get-PnPTermGroup -Identity \"Departments\"", - "Id": 774, + "Rank": 2, "CommandName": "Get-PnPTermGroup", - "Rank": 2 + "Command": "Get-PnPTermGroup -Identity \"Departments\"", + "Id": 776 }, { - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", - "Id": 775, + "Rank": 3, "CommandName": "Get-PnPTermGroup", - "Rank": 3 + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", + "Id": 777 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", - "Id": 776, + "Rank": 1, "CommandName": "Get-PnPTermLabel", - "Rank": 1 + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", + "Id": 778 }, { - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", - "Id": 777, + "Rank": 2, "CommandName": "Get-PnPTermLabel", - "Rank": 2 + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", + "Id": 779 }, { - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 778, + "Rank": 3, "CommandName": "Get-PnPTermLabel", - "Rank": 3 + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 780 }, { - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", - "Id": 779, + "Rank": 1, "CommandName": "Get-PnPTermSet", - "Rank": 1 + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", + "Id": 781 }, { - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", - "Id": 780, + "Rank": 2, "CommandName": "Get-PnPTermSet", - "Rank": 2 + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", + "Id": 782 }, { - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", - "Id": 781, + "Rank": 3, "CommandName": "Get-PnPTermSet", - "Rank": 3 + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", + "Id": 783 }, { - "Command": "Get-PnPTheme", - "Id": 782, + "Rank": 1, "CommandName": "Get-PnPTheme", - "Rank": 1 + "Command": "Get-PnPTheme", + "Id": 784 }, { - "Command": "Get-PnPTheme -DetectCurrentComposedLook", - "Id": 783, + "Rank": 2, "CommandName": "Get-PnPTheme", - "Rank": 2 + "Command": "Get-PnPTheme -DetectCurrentComposedLook", + "Id": 785 }, { - "Command": "Get-PnPTimeZoneId", - "Id": 784, + "Rank": 1, "CommandName": "Get-PnPTimeZoneId", - "Rank": 1 + "Command": "Get-PnPTimeZoneId", + "Id": 786 }, { - "Command": "Get-PnPTimeZoneId -Match Stockholm", - "Id": 785, + "Rank": 2, "CommandName": "Get-PnPTimeZoneId", - "Rank": 2 + "Command": "Get-PnPTimeZoneId -Match Stockholm", + "Id": 787 }, { - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", - "Id": 786, + "Rank": 1, "CommandName": "Get-PnPUnfurlLink", - "Rank": 1 + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", + "Id": 788 }, { - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", - "Id": 787, + "Rank": 1, "CommandName": "Get-PnPUnifiedAuditLog", - "Rank": 1 + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", + "Id": 789 }, { - "Command": "Get-PnPUPABulkImportStatus", - "Id": 788, + "Rank": 1, "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 1 + "Command": "Get-PnPUPABulkImportStatus", + "Id": 790 }, { - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", - "Id": 789, + "Rank": 2, "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 2 + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", + "Id": 791 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId ", - "Id": 790, + "Rank": 3, "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 3 + "Command": "Get-PnPUPABulkImportStatus -JobId ", + "Id": 792 }, { - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", - "Id": 791, + "Rank": 4, "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 4 + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", + "Id": 793 }, { - "Command": "Get-PnPUser", - "Id": 792, + "Rank": 1, "CommandName": "Get-PnPUser", - "Rank": 1 + "Command": "Get-PnPUser", + "Id": 794 }, { - "Command": "Get-PnPUser -Identity 23", - "Id": 793, + "Rank": 2, "CommandName": "Get-PnPUser", - "Rank": 2 + "Command": "Get-PnPUser -Identity 23", + "Id": 795 }, { - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", - "Id": 794, + "Rank": 3, "CommandName": "Get-PnPUser", - "Rank": 3 + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", + "Id": 796 }, { - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", - "Id": 795, + "Rank": 4, "CommandName": "Get-PnPUser", - "Rank": 4 + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", + "Id": 797 }, { - "Command": "Get-PnPUser -WithRightsAssigned", - "Id": 796, + "Rank": 5, "CommandName": "Get-PnPUser", - "Rank": 5 + "Command": "Get-PnPUser -WithRightsAssigned", + "Id": 798 }, { - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", - "Id": 797, + "Rank": 6, "CommandName": "Get-PnPUser", - "Rank": 6 + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", + "Id": 799 }, { - "Command": "Get-PnPUser -WithRightsAssignedDetailed", - "Id": 798, + "Rank": 7, "CommandName": "Get-PnPUser", - "Rank": 7 + "Command": "Get-PnPUser -WithRightsAssignedDetailed", + "Id": 800 }, { - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", - "Id": 799, + "Rank": 1, "CommandName": "Get-PnPUserOneDriveQuota", - "Rank": 1 + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", + "Id": 801 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", - "Id": 800, + "Rank": 1, "CommandName": "Get-PnPUserProfileProperty", - "Rank": 1 + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", + "Id": 802 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", - "Id": 801, + "Rank": 2, "CommandName": "Get-PnPUserProfileProperty", - "Rank": 2 + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", + "Id": 803 }, { - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", - "Id": 802, + "Rank": 3, "CommandName": "Get-PnPUserProfileProperty", - "Rank": 3 + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", + "Id": 804 }, { - "Command": "Get-PnPView -List \"Demo List\"", - "Id": 803, + "Rank": 1, "CommandName": "Get-PnPView", - "Rank": 1 + "Command": "Get-PnPView -List \"Demo List\"", + "Id": 805 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", - "Id": 804, + "Rank": 2, "CommandName": "Get-PnPView", - "Rank": 2 + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", + "Id": 806 }, { - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", - "Id": 805, + "Rank": 3, "CommandName": "Get-PnPView", - "Rank": 3 + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", + "Id": 807 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE", - "Id": 806, + "Rank": 1, "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1 + "Command": "Get-PnPVivaConnectionsDashboardACE", + "Id": 808 }, { - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Id": 807, + "Rank": 2, "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 2 + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Id": 809 }, { - "Command": "Get-PnPWeb", - "Id": 808, + "Rank": 1, "CommandName": "Get-PnPWeb", - "Rank": 1 + "Command": "Get-PnPWeb", + "Id": 810 }, { - "Command": "Get-PnPWebHeader", - "Id": 809, + "Rank": 1, "CommandName": "Get-PnPWebHeader", - "Rank": 1 + "Command": "Get-PnPWebHeader", + "Id": 811 }, { - "Command": "Get-PnPWebhookSubscriptions -List MyList", - "Id": 810, + "Rank": 1, "CommandName": "Get-PnPWebhookSubscriptions", - "Rank": 1 + "Command": "Get-PnPWebhookSubscriptions -List MyList", + "Id": 812 }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", - "Id": 811, + "Rank": 1, "CommandName": "Get-PnPWebPart", - "Rank": 1 + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", + "Id": 813 }, { - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 812, + "Rank": 2, "CommandName": "Get-PnPWebPart", - "Rank": 2 + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 814 }, { - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", - "Id": 813, + "Rank": 1, "CommandName": "Get-PnPWebPartProperty", - "Rank": 1 + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", + "Id": 815 }, { - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", - "Id": 814, + "Rank": 2, "CommandName": "Get-PnPWebPartProperty", - "Rank": 2 + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", + "Id": 816 }, { - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 815, + "Rank": 1, "CommandName": "Get-PnPWebPartXml", - "Rank": 1 + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 817 }, { - "Command": "Get-PnPWebTemplates", - "Id": 816, + "Rank": 1, "CommandName": "Get-PnPWebTemplates", - "Rank": 1 + "Command": "Get-PnPWebTemplates", + "Id": 818 }, { - "Command": "Get-PnPWebTemplates -LCID 1033", - "Id": 817, + "Rank": 2, "CommandName": "Get-PnPWebTemplates", - "Rank": 2 + "Command": "Get-PnPWebTemplates -LCID 1033", + "Id": 819 }, { - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", - "Id": 818, + "Rank": 3, "CommandName": "Get-PnPWebTemplates", - "Rank": 3 + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", + "Id": 820 }, { - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", - "Id": 819, + "Rank": 1, "CommandName": "Get-PnPWikiPageContent", - "Rank": 1 + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", + "Id": 821 }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", - "Id": 820, + "Rank": 1, "CommandName": "Grant-PnPAzureADAppSitePermission", - "Rank": 1 + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", + "Id": 822 }, { - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Write -Site https://contoso.sharepoint.com/sites/projects", - "Id": 821, + "Rank": 2, "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": 823 }, { - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 822, + "Rank": 1, "CommandName": "Grant-PnPHubSiteRights", - "Rank": 1 + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 824 }, { - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 823, + "Rank": 1, "CommandName": "Grant-PnPSiteDesignRights", - "Rank": 1 + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 825 }, { - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 824, + "Rank": 1, "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Rank": 1 + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Id": 826 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", - "Id": 825, + "Rank": 1, "CommandName": "Import-PnPTaxonomy", - "Rank": 1 + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", + "Id": 827 }, { - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", - "Id": 826, + "Rank": 2, "CommandName": "Import-PnPTaxonomy", - "Rank": 2 + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", + "Id": 828 }, { - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", - "Id": 827, + "Rank": 3, "CommandName": "Import-PnPTaxonomy", - "Rank": 3 + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", + "Id": 829 }, { - "Command": "Import-PnPTermGroupFromXml -Xml $xml", - "Id": 828, + "Rank": 1, "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 1 + "Command": "Import-PnPTermGroupFromXml -Xml $xml", + "Id": 830 }, { - "Command": "Import-PnPTermGroupFromXml -Path input.xml", - "Id": 829, + "Rank": 2, "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 2 + "Command": "Import-PnPTermGroupFromXml -Path input.xml", + "Id": 831 }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", - "Id": 830, + "Rank": 1, "CommandName": "Import-PnPTermSet", - "Rank": 1 + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", + "Id": 832 }, { - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", - "Id": 831, + "Rank": 2, "CommandName": "Import-PnPTermSet", - "Rank": 2 + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", + "Id": 833 }, { - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", - "Id": 832, + "Rank": 3, "CommandName": "Import-PnPTermSet", - "Rank": 3 + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", + "Id": 834 }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 833, + "Rank": 1, "CommandName": "Install-PnPApp", - "Rank": 1 + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 835 }, { - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 834, + "Rank": 2, "CommandName": "Install-PnPApp", - "Rank": 2 + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 836 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", - "Id": 835, + "Rank": 1, "CommandName": "Invoke-PnPGraphMethod", - "Rank": 1 + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", + "Id": 837 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", - "Id": 836, + "Rank": 2, "CommandName": "Invoke-PnPGraphMethod", - "Rank": 2 + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", + "Id": 838 }, { - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", - "Id": 837, + "Rank": 3, "CommandName": "Invoke-PnPGraphMethod", - "Rank": 3 + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", + "Id": 839 }, { - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", - "Id": 838, + "Rank": 4, "CommandName": "Invoke-PnPGraphMethod", - "Rank": 4 + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", + "Id": 840 }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", - "Id": 839, + "Rank": 5, "CommandName": "Invoke-PnPGraphMethod", - "Rank": 5 + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", + "Id": 841 }, { - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", - "Id": 840, + "Rank": 6, "CommandName": "Invoke-PnPGraphMethod", - "Rank": 6 + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", + "Id": 842 }, { - "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": 841, + "Rank": 7, "CommandName": "Invoke-PnPGraphMethod", - "Rank": 7 + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"", + "Id": 843 }, { - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 842, + "Rank": 1, "CommandName": "Invoke-PnPListDesign", - "Rank": 1 + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 844 }, { - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 843, + "Rank": 2, "CommandName": "Invoke-PnPListDesign", - "Rank": 2 + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Id": 845 }, { - "Command": "Invoke-PnPQuery -RetryCount 5", - "Id": 844, + "Rank": 1, "CommandName": "Invoke-PnPQuery", - "Rank": 1 + "Command": "Invoke-PnPQuery -RetryCount 5", + "Id": 846 }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 845, + "Rank": 1, "CommandName": "Invoke-PnPSiteDesign", - "Rank": 1 + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 847 }, { - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", - "Id": 846, + "Rank": 2, "CommandName": "Invoke-PnPSiteDesign", - "Rank": 2 + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", + "Id": 848 }, { - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", - "Id": 847, + "Rank": 1, "CommandName": "Invoke-PnPSiteScript", - "Rank": 1 + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", + "Id": 849 }, { - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", - "Id": 848, + "Rank": 1, "CommandName": "Invoke-PnPSiteSwap", - "Rank": 1 + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "Id": 850 }, { - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", - "Id": 849, + "Rank": 2, "CommandName": "Invoke-PnPSiteSwap", - "Rank": 2 + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", + "Id": 851 }, { - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", - "Id": 850, + "Rank": 3, "CommandName": "Invoke-PnPSiteSwap", - "Rank": 3 + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", + "Id": 852 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml", - "Id": 851, + "Rank": 1, "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 1 + "Command": "Invoke-PnPSiteTemplate -Path template.xml", + "Id": 853 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", - "Id": 852, + "Rank": 2, "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 2 + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", + "Id": 854 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 853, + "Rank": 3, "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 3 + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Id": 855 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", - "Id": 854, + "Rank": 4, "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 4 + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", + "Id": 856 }, { - "Command": "Invoke-PnPSiteTemplate -Path template.pnp", - "Id": 855, + "Rank": 5, "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 5 + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", + "Id": 857 }, { - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", - "Id": 856, + "Rank": 6, "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 6 + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", + "Id": 858 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", - "Id": 857, + "Rank": 7, "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 7 + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", + "Id": 859 }, { - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", - "Id": 858, + "Rank": 8, "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 8 + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", + "Id": 860 }, { - "Command": "Invoke-PnPSPRestMethod -Url /_api/web", - "Id": 859, + "Rank": 1, "CommandName": "Invoke-PnPSPRestMethod", - "Rank": 1 + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", + "Id": 861 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", - "Id": 860, + "Rank": 1, "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 1 + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", + "Id": 862 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", - "Id": 861, + "Rank": 2, "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 2 + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", + "Id": 863 }, { - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", - "Id": 862, + "Rank": 3, "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 3 + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", + "Id": 864 }, { - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", - "Id": 863, + "Rank": 1, "CommandName": "Invoke-PnPWebAction", - "Rank": 1 + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", + "Id": 865 }, { - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", - "Id": 864, + "Rank": 2, "CommandName": "Invoke-PnPWebAction", - "Rank": 2 + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", + "Id": 866 }, { - "Command": "Measure-PnPList \"Documents\"", - "Id": 865, + "Rank": 1, "CommandName": "Measure-PnPList", - "Rank": 1 + "Command": "Measure-PnPList \"Documents\"", + "Id": 867 }, { - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", - "Id": 866, + "Rank": 2, "CommandName": "Measure-PnPList", - "Rank": 2 + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", + "Id": 868 }, { - "Command": "Measure-PnPWeb", - "Id": 867, + "Rank": 1, "CommandName": "Measure-PnPWeb", - "Rank": 1 + "Command": "Measure-PnPWeb", + "Id": 869 }, { - "Command": "Measure-PnPWeb $web -Recursive", - "Id": 868, + "Rank": 2, "CommandName": "Measure-PnPWeb", - "Rank": 2 + "Command": "Measure-PnPWeb $web -Recursive", + "Id": 870 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", - "Id": 869, + "Rank": 1, "CommandName": "Move-PnPFile", - "Rank": 1 + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", + "Id": 871 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", - "Id": 870, + "Rank": 2, "CommandName": "Move-PnPFile", - "Rank": 2 + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", + "Id": 872 }, { - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 871, + "Rank": 3, "CommandName": "Move-PnPFile", - "Rank": 3 + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Id": 873 }, { - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", - "Id": 872, + "Rank": 4, "CommandName": "Move-PnPFile", - "Rank": 4 + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", + "Id": 874 }, { - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", - "Id": 873, + "Rank": 1, "CommandName": "Move-PnPFolder", - "Rank": 1 + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", + "Id": 875 }, { - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", - "Id": 874, + "Rank": 2, "CommandName": "Move-PnPFolder", - "Rank": 2 + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", + "Id": 876 }, { - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", - "Id": 875, + "Rank": 1, "CommandName": "Move-PnPListItemToRecycleBin", - "Rank": 1 + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", + "Id": 877 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", - "Id": 876, + "Rank": 1, "CommandName": "Move-PnPPageComponent", - "Rank": 1 + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", + "Id": 878 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", - "Id": 877, + "Rank": 2, "CommandName": "Move-PnPPageComponent", - "Rank": 2 + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", + "Id": 879 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", - "Id": 878, + "Rank": 3, "CommandName": "Move-PnPPageComponent", - "Rank": 3 + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", + "Id": 880 }, { - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", - "Id": 879, + "Rank": 4, "CommandName": "Move-PnPPageComponent", - "Rank": 4 + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", + "Id": 881 }, { - "Command": "Move-PnPRecycleBinItem", - "Id": 880, + "Rank": 1, "CommandName": "Move-PnpRecycleBinItem", - "Rank": 1 + "Command": "Move-PnPRecycleBinItem", + "Id": 882 }, { - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", - "Id": 881, + "Rank": 2, "CommandName": "Move-PnpRecycleBinItem", - "Rank": 2 + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", + "Id": 883 }, { - "Command": "Move-PnPRecycleBinItem -Force", - "Id": 882, + "Rank": 3, "CommandName": "Move-PnpRecycleBinItem", - "Rank": 3 + "Command": "Move-PnPRecycleBinItem -Force", + "Id": 884 }, { - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", - "Id": 883, + "Rank": 1, "CommandName": "Move-PnPTerm", - "Rank": 1 + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", + "Id": 885 }, { - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", - "Id": 884, + "Rank": 2, "CommandName": "Move-PnPTerm", - "Rank": 2 + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", + "Id": 886 }, { - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", - "Id": 885, + "Rank": 3, "CommandName": "Move-PnPTerm", - "Rank": 3 + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", + "Id": 887 }, { - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", - "Id": 886, + "Rank": 1, "CommandName": "Move-PnPTermSet", - "Rank": 1 + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", + "Id": 888 }, { - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", - "Id": 887, + "Rank": 2, "CommandName": "Move-PnPTermSet", - "Rank": 2 + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", + "Id": 889 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 888, + "Rank": 1, "CommandName": "New-PnPAzureADGroup", - "Rank": 1 + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", + "Id": 890 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", - "Id": 889, + "Rank": 2, "CommandName": "New-PnPAzureADGroup", - "Rank": 2 + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", + "Id": 891 }, { - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", - "Id": 890, + "Rank": 3, "CommandName": "New-PnPAzureADGroup", - "Rank": 3 + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", + "Id": 892 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", - "Id": 891, + "Rank": 1, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 1 + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", + "Id": 893 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", - "Id": 892, + "Rank": 2, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 2 + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", + "Id": 894 }, { - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", - "Id": 893, + "Rank": 3, "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 3 + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", + "Id": 895 }, { - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", - "Id": 894, + "Rank": 1, "CommandName": "New-PnPAzureCertificate", - "Rank": 1 + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", + "Id": 896 }, { - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", - "Id": 895, + "Rank": 2, "CommandName": "New-PnPAzureCertificate", - "Rank": 2 + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", + "Id": 897 }, { - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", - "Id": 896, + "Rank": 3, "CommandName": "New-PnPAzureCertificate", - "Rank": 3 + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", + "Id": 898 }, { - "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()", - "Id": 897, + "Rank": 1, "CommandName": "New-PnPGraphSubscription", - "Rank": 1 + "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()", + "Id": 899 }, { - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", - "Id": 898, + "Rank": 2, "CommandName": "New-PnPGraphSubscription", - "Rank": 2 + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", + "Id": 900 }, { - "Command": "New-PnPGroup -Title \"My Site Users\"", - "Id": 899, + "Rank": 1, "CommandName": "New-PnPGroup", - "Rank": 1 + "Command": "New-PnPGroup -Title \"My Site Users\"", + "Id": 901 }, { - "Command": "New-PnPList -Title Announcements -Template Announcements", - "Id": 900, + "Rank": 1, "CommandName": "New-PnPList", - "Rank": 1 + "Command": "New-PnPList -Title Announcements -Template Announcements", + "Id": 902 }, { - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", - "Id": 901, + "Rank": 2, "CommandName": "New-PnPList", - "Rank": 2 + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", + "Id": 903 }, { - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", - "Id": 902, + "Rank": 3, "CommandName": "New-PnPList", - "Rank": 3 + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", + "Id": 904 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", - "Id": 903, + "Rank": 1, "CommandName": "New-PnPMicrosoft365Group", - "Rank": 1 + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", + "Id": 905 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", - "Id": 904, + "Rank": 2, "CommandName": "New-PnPMicrosoft365Group", - "Rank": 2 + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", + "Id": 906 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", - "Id": 905, + "Rank": 3, "CommandName": "New-PnPMicrosoft365Group", - "Rank": 3 + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", + "Id": 907 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", - "Id": 906, + "Rank": 4, "CommandName": "New-PnPMicrosoft365Group", - "Rank": 4 + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", + "Id": 908 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 907, + "Rank": 5, "CommandName": "New-PnPMicrosoft365Group", - "Rank": 5 + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Id": 909 }, { - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 908, + "Rank": 6, "CommandName": "New-PnPMicrosoft365Group", - "Rank": 6 + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 910 }, { - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", - "Id": 909, + "Rank": 1, "CommandName": "New-PnPMicrosoft365GroupSettings", - "Rank": 1 + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", + "Id": 911 }, { - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", - "Id": 910, + "Rank": 2, "CommandName": "New-PnPMicrosoft365GroupSettings", - "Rank": 2 + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", + "Id": 912 }, { - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", - "Id": 911, + "Rank": 1, "CommandName": "New-PnPPersonalSite", - "Rank": 1 + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", + "Id": 913 }, { - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", - "Id": 912, + "Rank": 1, "CommandName": "New-PnPPlannerPlan", - "Rank": 1 + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", + "Id": 914 }, { - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", - "Id": 913, + "Rank": 1, "CommandName": "New-PnPSdnProvider", - "Rank": 1 + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", + "Id": 915 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 914, + "Rank": 1, "CommandName": "New-PnPSite", - "Rank": 1 + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Id": 916 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", - "Id": 915, + "Rank": 2, "CommandName": "New-PnPSite", - "Rank": 2 + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", + "Id": 917 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Id": 916, + "Rank": 3, "CommandName": "New-PnPSite", - "Rank": 3 + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "Id": 918 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 917, + "Rank": 4, "CommandName": "New-PnPSite", - "Rank": 4 + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Id": 919 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 918, + "Rank": 5, "CommandName": "New-PnPSite", - "Rank": 5 + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Id": 920 }, { - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 919, + "Rank": 6, "CommandName": "New-PnPSite", - "Rank": 6 + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Id": 921 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", - "Id": 920, + "Rank": 7, "CommandName": "New-PnPSite", - "Rank": 7 + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", + "Id": 922 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", - "Id": 921, + "Rank": 8, "CommandName": "New-PnPSite", - "Rank": 8 + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", + "Id": 923 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", - "Id": 922, + "Rank": 9, "CommandName": "New-PnPSite", - "Rank": 9 + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", + "Id": 924 }, { - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", - "Id": 923, + "Rank": 10, "CommandName": "New-PnPSite", - "Rank": 10 + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", + "Id": 925 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", - "Id": 924, + "Rank": 11, "CommandName": "New-PnPSite", - "Rank": 11 + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", + "Id": 926 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", - "Id": 925, + "Rank": 12, "CommandName": "New-PnPSite", - "Rank": 12 + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", + "Id": 927 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", - "Id": 926, + "Rank": 13, "CommandName": "New-PnPSite", - "Rank": 13 + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", + "Id": 928 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", - "Id": 927, + "Rank": 14, "CommandName": "New-PnPSite", - "Rank": 14 + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", + "Id": 929 }, { - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", - "Id": 928, + "Rank": 15, "CommandName": "New-PnPSite", - "Rank": 15 + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", + "Id": 930 }, { - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", - "Id": 929, + "Rank": 16, "CommandName": "New-PnPSite", - "Rank": 16 + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", + "Id": 931 }, { - "Command": "New-PnPSiteCollectionTermStore", - "Id": 930, + "Rank": 1, "CommandName": "New-PnPSiteCollectionTermStore", - "Rank": 1 + "Command": "New-PnPSiteCollectionTermStore", + "Id": 932 }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", - "Id": 931, + "Rank": 1, "CommandName": "New-PnPSiteGroup", - "Rank": 1 + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", + "Id": 933 }, { - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", - "Id": 932, + "Rank": 2, "CommandName": "New-PnPSiteGroup", - "Rank": 2 + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", + "Id": 934 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", - "Id": 933, + "Rank": 1, "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 1 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", + "Id": 935 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", - "Id": 934, + "Rank": 2, "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 2 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", + "Id": 936 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", - "Id": 935, + "Rank": 3, "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 3 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", + "Id": 937 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", - "Id": 936, + "Rank": 4, "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 4 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", + "Id": 938 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", - "Id": 937, + "Rank": 5, "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 5 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", + "Id": 939 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 938, + "Rank": 6, "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 6 + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 940 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", - "Id": 939, + "Rank": 7, "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 7 + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", + "Id": 941 }, { - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", - "Id": 940, + "Rank": 8, "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 8 + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", + "Id": 942 }, { - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", - "Id": 941, + "Rank": 1, "CommandName": "New-PnPTeamsApp", - "Rank": 1 + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", + "Id": 943 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", - "Id": 942, + "Rank": 1, "CommandName": "New-PnPTeamsTeam", - "Rank": 1 + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", + "Id": 944 }, { - "Command": "New-PnPTeamsTeam -GroupId $groupId", - "Id": 943, + "Rank": 2, "CommandName": "New-PnPTeamsTeam", - "Rank": 2 + "Command": "New-PnPTeamsTeam -GroupId $groupId", + "Id": 945 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", - "Id": 944, + "Rank": 3, "CommandName": "New-PnPTeamsTeam", - "Rank": 3 + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", + "Id": 946 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", - "Id": 945, + "Rank": 4, "CommandName": "New-PnPTeamsTeam", - "Rank": 4 + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", + "Id": 947 }, { - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", - "Id": 946, + "Rank": 5, "CommandName": "New-PnPTeamsTeam", - "Rank": 5 + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", + "Id": 948 }, { - "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": 947, + "Rank": 6, "CommandName": "New-PnPTeamsTeam", - "Rank": 6 + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\" -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 949 }, { - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", - "Id": 948, + "Rank": 1, "CommandName": "New-PnPTenantSite", - "Rank": 1 + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", + "Id": 950 }, { - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", - "Id": 949, + "Rank": 2, "CommandName": "New-PnPTenantSite", - "Rank": 2 + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", + "Id": 951 }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", - "Id": 950, + "Rank": 1, "CommandName": "New-PnPTerm", - "Rank": 1 + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", + "Id": 952 }, { - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 951, + "Rank": 2, "CommandName": "New-PnPTerm", - "Rank": 2 + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 953 }, { - "Command": "New-PnPTermGroup -GroupName \"Countries\"", - "Id": 952, + "Rank": 1, "CommandName": "New-PnPTermGroup", - "Rank": 1 + "Command": "New-PnPTermGroup -GroupName \"Countries\"", + "Id": 954 }, { - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", - "Id": 953, + "Rank": 1, "CommandName": "New-PnPTermLabel", - "Rank": 1 + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", + "Id": 955 }, { - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", - "Id": 954, + "Rank": 1, "CommandName": "New-PnPTermSet", - "Rank": 1 + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", + "Id": 956 }, { - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", - "Id": 955, + "Rank": 1, "CommandName": "New-PnPUPABulkImportJob", - "Rank": 1 + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", + "Id": 957 }, { - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", - "Id": 956, + "Rank": 2, "CommandName": "New-PnPUPABulkImportJob", - "Rank": 2 + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", + "Id": 958 }, { - "Command": "New-PnPUser -LoginName user@company.com", - "Id": 957, + "Rank": 1, "CommandName": "New-PnPUser", - "Rank": 1 + "Command": "New-PnPUser -LoginName user@company.com", + "Id": 959 }, { - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", - "Id": 958, + "Rank": 1, "CommandName": "New-PnPWeb", - "Rank": 1 + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", + "Id": 960 }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", - "Id": 959, + "Rank": 1, "CommandName": "Publish-PnPApp", - "Rank": 1 + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", + "Id": 961 }, { - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", - "Id": 960, + "Rank": 2, "CommandName": "Publish-PnPApp", - "Rank": 2 + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", + "Id": 962 }, { - "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": 961, + "Rank": 1, "CommandName": "Publish-PnPCompanyApp", - "Rank": 1 + "Command": "Publish-PnPCompanyApp -PortalUrl https://contoso.sharepoint.com/sites/portal -AppName \"Contoso Portal\" -CompanyName \"Contoso\" -CompanyWebSite \"https://www.contoso.com\" -ColoredIconPath ./coloricon.png -OutlineIconPath ./outlinedicon", + "Id": 963 }, { - "Command": "Publish-PnPContentType -ContentType 0x0101", - "Id": 962, + "Rank": 1, "CommandName": "Publish-PnPContentType", - "Rank": 1 + "Command": "Publish-PnPContentType -ContentType 0x0101", + "Id": 964 }, { - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 963, + "Rank": 1, "CommandName": "Publish-PnPSyntexModel", - "Rank": 1 + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Id": 965 }, { - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", - "Id": 964, + "Rank": 2, "CommandName": "Publish-PnPSyntexModel", - "Rank": 2 + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", + "Id": 966 }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp", - "Id": 965, + "Rank": 1, "CommandName": "Read-PnPSiteTemplate", - "Rank": 1 + "Command": "Read-PnPSiteTemplate -Path template.pnp", + "Id": 967 }, { - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", - "Id": 966, + "Rank": 2, "CommandName": "Read-PnPSiteTemplate", - "Rank": 2 + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", + "Id": 968 }, { - "Command": "Read-PnPSiteTemplate -Xml $xml", - "Id": 967, + "Rank": 3, "CommandName": "Read-PnPSiteTemplate", - "Rank": 3 + "Command": "Read-PnPSiteTemplate -Xml $xml", + "Id": 969 }, { - "Command": "Read-PnPTenantTemplate -Path template.pnp", - "Id": 968, + "Rank": 1, "CommandName": "Read-PnPTenantTemplate", - "Rank": 1 + "Command": "Read-PnPTenantTemplate -Path template.pnp", + "Id": 970 }, { - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", - "Id": 969, + "Rank": 1, "CommandName": "Register-PnPAppCatalogSite", - "Rank": 1 + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", + "Id": 971 }, { - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", - "Id": 970, + "Rank": 1, "CommandName": "Register-PnPAzureADApp", - "Rank": 1 + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", + "Id": 972 }, { - "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": 971, + "Rank": 2, "CommandName": "Register-PnPAzureADApp", - "Rank": 2 + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\")", + "Id": 973 }, { - "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": 972, + "Rank": 3, "CommandName": "Register-PnPAzureADApp", - "Rank": 3 + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -GraphApplicationPermissions \"User.Read.All\" -SharePointApplicationPermissions \"Sites.Read.All\" -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", + "Id": 974 }, { - "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": 973, + "Rank": 4, "CommandName": "Register-PnPAzureADApp", - "Rank": 4 + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -OutPath c:\\ -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", + "Id": 975 }, { - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "Id": 974, + "Rank": 5, "CommandName": "Register-PnPAzureADApp", - "Rank": 5 + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "Id": 976 }, { - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", - "Id": 975, + "Rank": 6, "CommandName": "Register-PnPAzureADApp", - "Rank": 6 + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", + "Id": 977 }, { - "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": 976, + "Rank": 7, "CommandName": "Register-PnPAzureADApp", - "Rank": 7 + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png", + "Id": 978 }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 977, + "Rank": 1, "CommandName": "Register-PnPHubSite", - "Rank": 1 + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Id": 979 }, { - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", - "Id": 978, + "Rank": 2, "CommandName": "Register-PnPHubSite", - "Rank": 2 + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", + "Id": 980 }, { - "Command": "Register-PnPManagementShellAccess", - "Id": 979, + "Rank": 1, "CommandName": "Register-PnPManagementShellAccess", - "Rank": 1 + "Command": "Register-PnPManagementShellAccess", + "Id": 981 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", - "Id": 980, + "Rank": 2, "CommandName": "Register-PnPManagementShellAccess", - "Rank": 2 + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", + "Id": 982 }, { - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", - "Id": 981, + "Rank": 3, "CommandName": "Register-PnPManagementShellAccess", - "Rank": 3 + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", + "Id": 983 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", - "Id": 982, + "Rank": 1, "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 1 + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", + "Id": 984 }, { - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", - "Id": 983, + "Rank": 2, "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 2 + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", + "Id": 985 }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", - "Id": 984, + "Rank": 1, "CommandName": "Remove-PnPAlert", - "Rank": 1 + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", + "Id": 986 }, { - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", - "Id": 985, + "Rank": 2, "CommandName": "Remove-PnPAlert", - "Rank": 2 + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", + "Id": 987 }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 986, + "Rank": 1, "CommandName": "Remove-PnPApp", - "Rank": 1 + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 988 }, { - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 987, + "Rank": 2, "CommandName": "Remove-PnPApp", - "Rank": 2 + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 989 }, { - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 988, + "Rank": 1, "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 1 + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 990 }, { - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 989, + "Rank": 2, "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 2 + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Id": 991 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", - "Id": 990, + "Rank": 1, "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 1 + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", + "Id": 992 }, { - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 991, + "Rank": 2, "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 2 + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Id": 993 }, { - "Command": "Remove-PnPAzureADApp -Identity MyApp", - "Id": 992, + "Rank": 1, "CommandName": "Remove-PnPAzureADApp", - "Rank": 1 + "Command": "Remove-PnPAzureADApp -Identity MyApp", + "Id": 994 }, { - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", - "Id": 993, + "Rank": 2, "CommandName": "Remove-PnPAzureADApp", - "Rank": 2 + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", + "Id": 995 }, { - "Command": "Remove-PnPAzureADGroup -Identity $groupId", - "Id": 994, + "Rank": 1, "CommandName": "Remove-PnPAzureADGroup", - "Rank": 1 + "Command": "Remove-PnPAzureADGroup -Identity $groupId", + "Id": 996 }, { - "Command": "Remove-PnPAzureADGroup -Identity $group", - "Id": 995, + "Rank": 2, "CommandName": "Remove-PnPAzureADGroup", - "Rank": 2 + "Command": "Remove-PnPAzureADGroup -Identity $group", + "Id": 997 }, { - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 996, + "Rank": 1, "CommandName": "Remove-PnPAzureADGroupMember", - "Rank": 1 + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 998 }, { - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 997, + "Rank": 1, "CommandName": "Remove-PnPAzureADGroupOwner", - "Rank": 1 + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 999 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", - "Id": 998, + "Rank": 1, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1 + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", + "Id": 1000 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", - "Id": 999, + "Rank": 2, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2 + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", + "Id": 1001 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", - "Id": 1000, + "Rank": 3, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 3 + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", + "Id": 1002 }, { - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", - "Id": 1001, + "Rank": 4, "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 4 + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", + "Id": 1003 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\"", - "Id": 1002, + "Rank": 1, "CommandName": "Remove-PnPContentType", - "Rank": 1 + "Command": "Remove-PnPContentType -Identity \"Project Document\"", + "Id": 1004 }, { - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", - "Id": 1003, + "Rank": 2, "CommandName": "Remove-PnPContentType", - "Rank": 2 + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", + "Id": 1005 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", - "Id": 1004, + "Rank": 1, "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 1 + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", + "Id": 1006 }, { - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", - "Id": 1005, + "Rank": 2, "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 2 + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", + "Id": 1007 }, { - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", - "Id": 1006, + "Rank": 1, "CommandName": "Remove-PnPContentTypeFromList", - "Rank": 1 + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", + "Id": 1008 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1007, + "Rank": 1, "CommandName": "Remove-PnPCustomAction", - "Rank": 1 + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1009 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", - "Id": 1008, + "Rank": 2, "CommandName": "Remove-PnPCustomAction", - "Rank": 2 + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", + "Id": 1010 }, { - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", - "Id": 1009, + "Rank": 3, "CommandName": "Remove-PnPCustomAction", - "Rank": 3 + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", + "Id": 1011 }, { - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1010, + "Rank": 1, "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Rank": 1 + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 1012 }, { - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1011, + "Rank": 1, "CommandName": "Remove-PnPEventReceiver", - "Rank": 1 + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 1013 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", - "Id": 1012, + "Rank": 2, "CommandName": "Remove-PnPEventReceiver", - "Rank": 2 + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", + "Id": 1014 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", - "Id": 1013, + "Rank": 3, "CommandName": "Remove-PnPEventReceiver", - "Rank": 3 + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", + "Id": 1015 }, { - "Command": "Remove-PnPEventReceiver -List ProjectList", - "Id": 1014, + "Rank": 4, "CommandName": "Remove-PnPEventReceiver", - "Rank": 4 + "Command": "Remove-PnPEventReceiver -List ProjectList", + "Id": 1016 }, { - "Command": "Remove-PnPEventReceiver", - "Id": 1015, + "Rank": 5, "CommandName": "Remove-PnPEventReceiver", - "Rank": 5 + "Command": "Remove-PnPEventReceiver", + "Id": 1017 }, { - "Command": "Remove-PnPEventReceiver -Scope Site", - "Id": 1016, + "Rank": 6, "CommandName": "Remove-PnPEventReceiver", - "Rank": 6 + "Command": "Remove-PnPEventReceiver -Scope Site", + "Id": 1018 }, { - "Command": "Remove-PnPEventReceiver -Scope Web", - "Id": 1017, + "Rank": 7, "CommandName": "Remove-PnPEventReceiver", - "Rank": 7 + "Command": "Remove-PnPEventReceiver -Scope Web", + "Id": 1019 }, { - "Command": "Remove-PnPEventReceiver -Scope All", - "Id": 1018, + "Rank": 8, "CommandName": "Remove-PnPEventReceiver", - "Rank": 8 + "Command": "Remove-PnPEventReceiver -Scope All", + "Id": 1020 }, { - "Command": "Remove-PnPField -Identity \"Speakers\"", - "Id": 1019, + "Rank": 1, "CommandName": "Remove-PnPField", - "Rank": 1 + "Command": "Remove-PnPField -Identity \"Speakers\"", + "Id": 1021 }, { - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", - "Id": 1020, + "Rank": 2, "CommandName": "Remove-PnPField", - "Rank": 2 + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", + "Id": 1022 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", - "Id": 1021, + "Rank": 1, "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 1 + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", + "Id": 1023 }, { - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", - "Id": 1022, + "Rank": 2, "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 2 + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", + "Id": 1024 }, { - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", - "Id": 1023, + "Rank": 1, "CommandName": "Remove-PnPFile", - "Rank": 1 + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", + "Id": 1025 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", - "Id": 1024, + "Rank": 2, "CommandName": "Remove-PnPFile", - "Rank": 2 + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", + "Id": 1026 }, { - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", - "Id": 1025, + "Rank": 3, "CommandName": "Remove-PnPFile", - "Rank": 3 + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", + "Id": 1027 }, { - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", - "Id": 1026, + "Rank": 1, "CommandName": "Remove-PnPFileFromSiteTemplate", - "Rank": 1 + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", + "Id": 1028 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", - "Id": 1027, + "Rank": 1, "CommandName": "Remove-PnPFileSharingLink", - "Rank": 1 + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", + "Id": 1029 }, { - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", - "Id": 1028, + "Rank": 2, "CommandName": "Remove-PnPFileSharingLink", - "Rank": 2 + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", + "Id": 1030 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1029, + "Rank": 1, "CommandName": "Remove-PnPFileVersion", - "Rank": 1 + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Id": 1031 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1030, + "Rank": 2, "CommandName": "Remove-PnPFileVersion", - "Rank": 2 + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Id": 1032 }, { - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", - "Id": 1031, + "Rank": 3, "CommandName": "Remove-PnPFileVersion", - "Rank": 3 + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", + "Id": 1033 }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", - "Id": 1032, + "Rank": 1, "CommandName": "Remove-PnPFolder", - "Rank": 1 + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", + "Id": 1034 }, { - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", - "Id": 1033, + "Rank": 2, "CommandName": "Remove-PnPFolder", - "Rank": 2 + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", + "Id": 1035 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", - "Id": 1034, + "Rank": 1, "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 1 + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", + "Id": 1036 }, { - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", - "Id": 1035, + "Rank": 2, "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 2 + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", + "Id": 1037 }, { - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", - "Id": 1036, + "Rank": 1, "CommandName": "Remove-PnPGraphSubscription", - "Rank": 1 + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", + "Id": 1038 }, { - "Command": "Remove-PnPGroup -Identity \"My Users\"", - "Id": 1037, + "Rank": 1, "CommandName": "Remove-PnPGroup", - "Rank": 1 + "Command": "Remove-PnPGroup -Identity \"My Users\"", + "Id": 1039 }, { - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", - "Id": 1038, + "Rank": 1, "CommandName": "Remove-PnPGroupMember", - "Rank": 1 + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", + "Id": 1040 }, { - "Command": "Remove-PnPHomeSite", - "Id": 1039, + "Rank": 1, "CommandName": "Remove-PnPHomeSite", - "Rank": 1 + "Command": "Remove-PnPHomeSite", + "Id": 1041 }, { - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1040, + "Rank": 1, "CommandName": "Remove-PnPHubSiteAssociation", - "Rank": 1 + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", + "Id": 1042 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", - "Id": 1041, + "Rank": 1, "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 1 + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", + "Id": 1043 }, { - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", - "Id": 1042, + "Rank": 2, "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 2 + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", + "Id": 1044 }, { - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", - "Id": 1043, + "Rank": 1, "CommandName": "Remove-PnPIndexedProperty", - "Rank": 1 + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", + "Id": 1045 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery", - "Id": 1044, + "Rank": 1, "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 1 + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", + "Id": 1046 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", - "Id": 1045, + "Rank": 2, "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 2 + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", + "Id": 1047 }, { - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", - "Id": 1046, + "Rank": 3, "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 3 + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", + "Id": 1048 }, { - "Command": "Remove-PnPJavaScriptLink -Scope Site", - "Id": 1047, + "Rank": 4, "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 4 + "Command": "Remove-PnPJavaScriptLink -Scope Site", + "Id": 1049 }, { - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", - "Id": 1048, + "Rank": 5, "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 5 + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", + "Id": 1050 }, { - "Command": "Remove-PnPKnowledgeHubSite", - "Id": 1049, + "Rank": 1, "CommandName": "Remove-PnPKnowledgeHubSite", - "Rank": 1 + "Command": "Remove-PnPKnowledgeHubSite", + "Id": 1051 }, { - "Command": "Remove-PnPList -Identity Announcements", - "Id": 1050, + "Rank": 1, "CommandName": "Remove-PnPList", - "Rank": 1 + "Command": "Remove-PnPList -Identity Announcements", + "Id": 1052 }, { - "Command": "Remove-PnPList -Identity Announcements -Force", - "Id": 1051, + "Rank": 2, "CommandName": "Remove-PnPList", - "Rank": 2 + "Command": "Remove-PnPList -Identity Announcements -Force", + "Id": 1053 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle", - "Id": 1052, + "Rank": 3, "CommandName": "Remove-PnPList", - "Rank": 3 + "Command": "Remove-PnPList -Identity Announcements -Recycle", + "Id": 1054 }, { - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", - "Id": 1053, + "Rank": 4, "CommandName": "Remove-PnPList", - "Rank": 4 + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", + "Id": 1055 }, { - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1054, + "Rank": 1, "CommandName": "Remove-PnPListDesign", - "Rank": 1 + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1056 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", - "Id": 1055, + "Rank": 1, "CommandName": "Remove-PnPListItem", - "Rank": 1 + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", + "Id": 1057 }, { - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", - "Id": 1056, + "Rank": 2, "CommandName": "Remove-PnPListItem", - "Rank": 2 + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", + "Id": 1058 }, { - "Command": "Remove-PnPListItem -List \"Demo List\"", - "Id": 1057, + "Rank": 3, "CommandName": "Remove-PnPListItem", - "Rank": 3 + "Command": "Remove-PnPListItem -List \"Demo List\"", + "Id": 1059 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", - "Id": 1058, + "Rank": 1, "CommandName": "Remove-PnPListItemAttachment", - "Rank": 1 + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", + "Id": 1060 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", - "Id": 1059, + "Rank": 2, "CommandName": "Remove-PnPListItemAttachment", - "Rank": 2 + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", + "Id": 1061 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", - "Id": 1060, + "Rank": 3, "CommandName": "Remove-PnPListItemAttachment", - "Rank": 3 + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", + "Id": 1062 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", - "Id": 1061, + "Rank": 4, "CommandName": "Remove-PnPListItemAttachment", - "Rank": 4 + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", + "Id": 1063 }, { - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", - "Id": 1062, + "Rank": 5, "CommandName": "Remove-PnPListItemAttachment", - "Rank": 5 + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", + "Id": 1064 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1063, + "Rank": 1, "CommandName": "Remove-PnPListItemVersion", - "Rank": 1 + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Id": 1065 }, { - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1064, + "Rank": 2, "CommandName": "Remove-PnPListItemVersion", - "Rank": 2 + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Id": 1066 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", - "Id": 1065, + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 1 + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", + "Id": 1067 }, { - "Command": "Remove-PnPMicrosoft365Group -Identity $group", - "Id": 1066, + "Rank": 2, "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 2 + "Command": "Remove-PnPMicrosoft365Group -Identity $group", + "Id": 1068 }, { - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1067, + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Rank": 1 + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1069 }, { - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", - "Id": 1068, + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Rank": 1 + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", + "Id": 1070 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", - "Id": 1069, + "Rank": 1, "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 1 + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", + "Id": 1071 }, { - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", - "Id": 1070, + "Rank": 2, "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 2 + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", + "Id": 1072 }, { - "Command": "Remove-PnPNavigationNode -Identity 1032", - "Id": 1071, + "Rank": 1, "CommandName": "Remove-PnPNavigationNode", - "Rank": 1 + "Command": "Remove-PnPNavigationNode -Identity 1032", + "Id": 1073 }, { - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", - "Id": 1072, + "Rank": 2, "CommandName": "Remove-PnPNavigationNode", - "Rank": 2 + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", + "Id": 1074 }, { - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", - "Id": 1073, + "Rank": 3, "CommandName": "Remove-PnPNavigationNode", - "Rank": 3 + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", + "Id": 1075 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", - "Id": 1074, + "Rank": 1, "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 1 + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", + "Id": 1076 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", - "Id": 1075, + "Rank": 2, "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 2 + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", + "Id": 1077 }, { - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", - "Id": 1076, + "Rank": 3, "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 3 + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", + "Id": 1078 }, { - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", - "Id": 1077, + "Rank": 1, "CommandName": "Remove-PnPOrgNewsSite", - "Rank": 1 + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", + "Id": 1079 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\"", - "Id": 1078, + "Rank": 1, "CommandName": "Remove-PnPPage", - "Rank": 1 + "Command": "Remove-PnPPage -Identity \"MyPage\"", + "Id": 1080 }, { - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", - "Id": 1079, + "Rank": 2, "CommandName": "Remove-PnPPage", - "Rank": 2 + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", + "Id": 1081 }, { - "Command": "Remove-PnPPage $page", - "Id": 1080, + "Rank": 3, "CommandName": "Remove-PnPPage", - "Rank": 3 + "Command": "Remove-PnPPage $page", + "Id": 1082 }, { - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", - "Id": 1081, + "Rank": 4, "CommandName": "Remove-PnPPage", - "Rank": 4 + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", + "Id": 1083 }, { - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1082, + "Rank": 1, "CommandName": "Remove-PnPPageComponent", - "Rank": 1 + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 1084 }, { - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", - "Id": 1083, + "Rank": 1, "CommandName": "Remove-PnPPlannerBucket", - "Rank": 1 + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", + "Id": 1085 }, { - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", - "Id": 1084, + "Rank": 1, "CommandName": "Remove-PnPPlannerPlan", - "Rank": 1 + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", + "Id": 1086 }, { - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", - "Id": 1085, + "Rank": 1, "CommandName": "Remove-PnPPlannerRoster", - "Rank": 1 + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", + "Id": 1087 }, { - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1086, + "Rank": 1, "CommandName": "Remove-PnPPlannerRosterMember", - "Rank": 1 + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", + "Id": 1088 }, { - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", - "Id": 1087, + "Rank": 1, "CommandName": "Remove-PnPPlannerTask", - "Rank": 1 + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", + "Id": 1089 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey", - "Id": 1088, + "Rank": 1, "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 1 + "Command": "Remove-PnPPropertyBagValue -Key MyKey", + "Id": 1090 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", - "Id": 1089, + "Rank": 2, "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 2 + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", + "Id": 1091 }, { - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", - "Id": 1090, + "Rank": 3, "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 3 + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", + "Id": 1092 }, { - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", - "Id": 1091, + "Rank": 1, "CommandName": "Remove-PnPPublishingImageRendition", - "Rank": 1 + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", + "Id": 1093 }, { - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", - "Id": 1092, + "Rank": 1, "CommandName": "Remove-PnPRoleDefinition", - "Rank": 1 + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", + "Id": 1094 }, { - "Command": "Remove-PnPSdnProvider -Confirm:false", - "Id": 1093, + "Rank": 1, "CommandName": "Remove-PnPSdnProvider", - "Rank": 1 + "Command": "Remove-PnPSdnProvider -Confirm:false", + "Id": 1095 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config", - "Id": 1094, + "Rank": 1, "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 1 + "Command": "Remove-PnPSearchConfiguration -Configuration $config", + "Id": 1096 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1095, + "Rank": 2, "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 2 + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", + "Id": 1097 }, { - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1096, + "Rank": 3, "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 3 + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Id": 1098 }, { - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1097, + "Rank": 4, "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 4 + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 1099 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1098, + "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 1 + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 1100 }, { - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1099, + "Rank": 2, "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 2 + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 1101 }, { - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", - "Id": 1100, + "Rank": 1, "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Rank": 1 + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", + "Id": 1102 }, { - "Command": "Remove-PnPSiteCollectionTermStore", - "Id": 1101, + "Rank": 1, "CommandName": "Remove-PnPSiteCollectionTermStore", - "Rank": 1 + "Command": "Remove-PnPSiteCollectionTermStore", + "Id": 1103 }, { - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1102, + "Rank": 1, "CommandName": "Remove-PnPSiteDesign", - "Rank": 1 + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1104 }, { - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1103, + "Rank": 1, "CommandName": "Remove-PnPSiteDesignTask", - "Rank": 1 + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1105 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1104, + "Rank": 1, "CommandName": "Remove-PnPSiteGroup", - "Rank": 1 + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1106 }, { - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", - "Id": 1105, + "Rank": 2, "CommandName": "Remove-PnPSiteGroup", - "Rank": 2 + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", + "Id": 1107 }, { - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", - "Id": 1106, + "Rank": 1, "CommandName": "Remove-PnPSiteScript", - "Rank": 1 + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", + "Id": 1108 }, { - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", - "Id": 1107, + "Rank": 1, "CommandName": "Remove-PnPSiteUserInvitations", - "Rank": 1 + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", + "Id": 1109 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey", - "Id": 1108, + "Rank": 1, "CommandName": "Remove-PnPStorageEntity", - "Rank": 1 + "Command": "Remove-PnPStorageEntity -Key MyKey", + "Id": 1110 }, { - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", - "Id": 1109, + "Rank": 2, "CommandName": "Remove-PnPStorageEntity", - "Rank": 2 + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", + "Id": 1111 }, { - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", - "Id": 1110, + "Rank": 1, "CommandName": "Remove-PnPStoredCredential", - "Rank": 1 + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", + "Id": 1112 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", - "Id": 1111, + "Rank": 1, "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 1 + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", + "Id": 1113 }, { - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", - "Id": 1112, + "Rank": 2, "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 2 + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", + "Id": 1114 }, { - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", - "Id": 1113, + "Rank": 1, "CommandName": "Remove-PnPTeamsApp", - "Rank": 1 + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", + "Id": 1115 }, { - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", - "Id": 1114, + "Rank": 2, "CommandName": "Remove-PnPTeamsApp", - "Rank": 2 + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", + "Id": 1116 }, { - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", - "Id": 1115, + "Rank": 1, "CommandName": "Remove-PnPTeamsChannel", - "Rank": 1 + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", + "Id": 1117 }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", - "Id": 1116, + "Rank": 1, "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 1 + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", + "Id": 1118 }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", - "Id": 1117, + "Rank": 2, "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 2 + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", + "Id": 1119 }, { - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", - "Id": 1118, + "Rank": 3, "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 3 + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", + "Id": 1120 }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", - "Id": 1119, + "Rank": 1, "CommandName": "Remove-PnPTeamsTab", - "Rank": 1 + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", + "Id": 1121 }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", - "Id": 1120, + "Rank": 2, "CommandName": "Remove-PnPTeamsTab", - "Rank": 2 + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", + "Id": 1122 }, { - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", - "Id": 1121, + "Rank": 3, "CommandName": "Remove-PnPTeamsTab", - "Rank": 3 + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", + "Id": 1123 }, { - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", - "Id": 1122, + "Rank": 1, "CommandName": "Remove-PnPTeamsTag", - "Rank": 1 + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", + "Id": 1124 }, { - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", - "Id": 1123, + "Rank": 1, "CommandName": "Remove-PnPTeamsTeam", - "Rank": 1 + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", + "Id": 1125 }, { - "Command": "Remove-PnPTeamsTeam -Identity testteam", - "Id": 1124, + "Rank": 2, "CommandName": "Remove-PnPTeamsTeam", - "Rank": 2 + "Command": "Remove-PnPTeamsTeam -Identity testteam", + "Id": 1126 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", - "Id": 1125, + "Rank": 1, "CommandName": "Remove-PnPTeamsUser", - "Rank": 1 + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", + "Id": 1127 }, { - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1126, + "Rank": 2, "CommandName": "Remove-PnPTeamsUser", - "Rank": 2 + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 1128 }, { - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", - "Id": 1127, + "Rank": 1, "CommandName": "Remove-PnPTenantCdnOrigin", - "Rank": 1 + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", + "Id": 1129 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1128, + "Rank": 1, "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 1 + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1130 }, { - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1129, + "Rank": 2, "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 2 + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Id": 1131 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1130, + "Rank": 1, "CommandName": "Remove-PnPTenantSite", - "Rank": 1 + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1132 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", - "Id": 1131, + "Rank": 2, "CommandName": "Remove-PnPTenantSite", - "Rank": 2 + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", + "Id": 1133 }, { - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", - "Id": 1132, + "Rank": 3, "CommandName": "Remove-PnPTenantSite", - "Rank": 3 + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", + "Id": 1134 }, { - "Command": "Remove-PnPTenantSyncClientRestriction", - "Id": 1133, + "Rank": 1, "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1 + "Command": "Remove-PnPTenantSyncClientRestriction", + "Id": 1135 }, { - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", - "Id": 1134, + "Rank": 1, "CommandName": "Remove-PnPTenantTheme", - "Rank": 1 + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", + "Id": 1136 }, { - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1135, + "Rank": 1, "CommandName": "Remove-PnPTerm", - "Rank": 1 + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Id": 1137 }, { - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1136, + "Rank": 2, "CommandName": "Remove-PnPTerm", - "Rank": 2 + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 1138 }, { - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", - "Id": 1137, + "Rank": 1, "CommandName": "Remove-PnPTermGroup", - "Rank": 1 + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", + "Id": 1139 }, { - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", - "Id": 1138, + "Rank": 2, "CommandName": "Remove-PnPTermGroup", - "Rank": 2 + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", + "Id": 1140 }, { - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", - "Id": 1139, + "Rank": 3, "CommandName": "Remove-PnPTermGroup", - "Rank": 3 + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", + "Id": 1141 }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", - "Id": 1140, + "Rank": 1, "CommandName": "Remove-PnPTermLabel", - "Rank": 1 + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", + "Id": 1142 }, { - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", - "Id": 1141, + "Rank": 2, "CommandName": "Remove-PnPTermLabel", - "Rank": 2 + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", + "Id": 1143 }, { - "Command": "Remove-PnPUser -Identity 23", - "Id": 1142, + "Rank": 1, "CommandName": "Remove-PnPUser", - "Rank": 1 + "Command": "Remove-PnPUser -Identity 23", + "Id": 1144 }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", - "Id": 1143, + "Rank": 2, "CommandName": "Remove-PnPUser", - "Rank": 2 + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", + "Id": 1145 }, { - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", - "Id": 1144, + "Rank": 3, "CommandName": "Remove-PnPUser", - "Rank": 3 + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", + "Id": 1146 }, { - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", - "Id": 1145, + "Rank": 1, "CommandName": "Remove-PnPUserInfo", - "Rank": 1 + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", + "Id": 1147 }, { - "Command": "Remove-PnPUserProfile -LoginName user@domain.com", - "Id": 1146, + "Rank": 1, "CommandName": "Remove-PnPUserProfile", - "Rank": 1 + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", + "Id": 1148 }, { - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", - "Id": 1147, + "Rank": 1, "CommandName": "Remove-PnPView", - "Rank": 1 + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", + "Id": 1149 }, { - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", - "Id": 1148, + "Rank": 1, "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Rank": 1 + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", + "Id": 1150 }, { - "Command": "Remove-PnPWeb -Identity projectA", - "Id": 1149, + "Rank": 1, "CommandName": "Remove-PnPWeb", - "Rank": 1 + "Command": "Remove-PnPWeb -Identity projectA", + "Id": 1151 }, { - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", - "Id": 1150, + "Rank": 2, "CommandName": "Remove-PnPWeb", - "Rank": 2 + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", + "Id": 1152 }, { - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", - "Id": 1151, + "Rank": 1, "CommandName": "Remove-PnPWebhookSubscription", - "Rank": 1 + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", + "Id": 1153 }, { - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", - "Id": 1152, + "Rank": 1, "CommandName": "Remove-PnPWebPart", - "Rank": 1 + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", + "Id": 1154 }, { - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", - "Id": 1153, + "Rank": 2, "CommandName": "Remove-PnPWebPart", - "Rank": 2 + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", + "Id": 1155 }, { - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", - "Id": 1154, + "Rank": 1, "CommandName": "Remove-PnPWikiPage", - "Rank": 1 + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", + "Id": 1156 }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", - "Id": 1155, + "Rank": 1, "CommandName": "Rename-PnPFile", - "Rank": 1 + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", + "Id": 1157 }, { - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", - "Id": 1156, + "Rank": 2, "CommandName": "Rename-PnPFile", - "Rank": 2 + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", + "Id": 1158 }, { - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", - "Id": 1157, + "Rank": 3, "CommandName": "Rename-PnPFile", - "Rank": 3 + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", + "Id": 1159 }, { - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", - "Id": 1158, + "Rank": 1, "CommandName": "Rename-PnPFolder", - "Rank": 1 + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", + "Id": 1160 }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1159, + "Rank": 1, "CommandName": "Repair-PnPSite", - "Rank": 1 + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1161 }, { - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1160, + "Rank": 2, "CommandName": "Repair-PnPSite", - "Rank": 2 + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Id": 1162 }, { - "Command": "Request-PnPAccessToken", - "Id": 1161, + "Rank": 1, "CommandName": "Request-PnPAccessToken", - "Rank": 1 + "Command": "Request-PnPAccessToken", + "Id": 1163 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", - "Id": 1162, + "Rank": 2, "CommandName": "Request-PnPAccessToken", - "Rank": 2 + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", + "Id": 1164 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", - "Id": 1163, + "Rank": 3, "CommandName": "Request-PnPAccessToken", - "Rank": 3 + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", + "Id": 1165 }, { - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", - "Id": 1164, + "Rank": 4, "CommandName": "Request-PnPAccessToken", - "Rank": 4 + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", + "Id": 1166 }, { - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", - "Id": 1165, + "Rank": 1, "CommandName": "Request-PnPPersonalSite", - "Rank": 1 + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", + "Id": 1167 }, { - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", - "Id": 1166, + "Rank": 2, "CommandName": "Request-PnPPersonalSite", - "Rank": 2 + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", + "Id": 1168 }, { - "Command": "Request-PnPReIndexList -Identity \"Demo List\"", - "Id": 1167, + "Rank": 1, "CommandName": "Request-PnPReIndexList", - "Rank": 1 + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", + "Id": 1169 }, { - "Command": "Request-PnPReIndexWeb", - "Id": 1168, + "Rank": 1, "CommandName": "Request-PnPReIndexWeb", - "Rank": 1 + "Command": "Request-PnPReIndexWeb", + "Id": 1170 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", - "Id": 1169, + "Rank": 1, "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 1 + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", + "Id": 1171 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", - "Id": 1170, + "Rank": 2, "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 2 + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", + "Id": 1172 }, { - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", - "Id": 1171, + "Rank": 3, "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 3 + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", + "Id": 1173 }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", - "Id": 1172, + "Rank": 1, "CommandName": "Reset-PnPFileVersion", - "Rank": 1 + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", + "Id": 1174 }, { - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", - "Id": 1173, + "Rank": 2, "CommandName": "Reset-PnPFileVersion", - "Rank": 2 + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", + "Id": 1175 }, { - "Command": "Reset-PnPLabel -List \"Demo List\"", - "Id": 1174, + "Rank": 1, "CommandName": "Reset-PnPLabel", - "Rank": 1 + "Command": "Reset-PnPLabel -List \"Demo List\"", + "Id": 1176 }, { - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", - "Id": 1175, + "Rank": 2, "CommandName": "Reset-PnPLabel", - "Rank": 2 + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", + "Id": 1177 }, { - "Command": "Reset-PnPMicrosoft365GroupExpiration", - "Id": 1176, + "Rank": 1, "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1 + "Command": "Reset-PnPMicrosoft365GroupExpiration", + "Id": 1178 }, { - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", - "Id": 1177, + "Rank": 1, "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Rank": 1 + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", + "Id": 1179 }, { - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", - "Id": 1178, + "Rank": 1, "CommandName": "Resolve-PnPFolder", - "Rank": 1 + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", + "Id": 1180 }, { - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", - "Id": 1179, + "Rank": 1, "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Rank": 1 + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", + "Id": 1181 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", - "Id": 1180, + "Rank": 1, "CommandName": "Restore-PnPFileVersion", - "Rank": 1 + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", + "Id": 1182 }, { - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", - "Id": 1181, + "Rank": 2, "CommandName": "Restore-PnPFileVersion", - "Rank": 2 + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", + "Id": 1183 }, { - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", - "Id": 1182, + "Rank": 3, "CommandName": "Restore-PnPFileVersion", - "Rank": 3 + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", + "Id": 1184 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", - "Id": 1183, + "Rank": 1, "CommandName": "Restore-PnPListItemVersion", - "Rank": 1 + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", + "Id": 1185 }, { - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", - "Id": 1184, + "Rank": 2, "CommandName": "Restore-PnPListItemVersion", - "Rank": 2 + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", + "Id": 1186 }, { - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", - "Id": 1185, + "Rank": 1, "CommandName": "Restore-PnPRecycleBinItem", - "Rank": 1 + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", + "Id": 1187 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1186, + "Rank": 1, "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 1 + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1188 }, { - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", - "Id": 1187, + "Rank": 2, "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 2 + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", + "Id": 1189 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", - "Id": 1188, + "Rank": 1, "CommandName": "Restore-PnPTenantSite", - "Rank": 1 + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", + "Id": 1190 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", - "Id": 1189, + "Rank": 2, "CommandName": "Restore-PnPTenantSite", - "Rank": 2 + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", + "Id": 1191 }, { - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", - "Id": 1190, + "Rank": 3, "CommandName": "Restore-PnPTenantSite", - "Rank": 3 + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", + "Id": 1192 }, { - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", - "Id": 1191, + "Rank": 1, "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Rank": 1 + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", + "Id": 1193 }, { - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1192, + "Rank": 1, "CommandName": "Revoke-PnPHubSiteRights", - "Rank": 1 + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 1194 }, { - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", - "Id": 1193, + "Rank": 1, "CommandName": "Revoke-PnPSiteDesignRights", - "Rank": 1 + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", + "Id": 1195 }, { - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", - "Id": 1194, + "Rank": 1, "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Rank": 1 + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", + "Id": 1196 }, { - "Command": "Revoke-PnPUserSession -User user1@contoso.com", - "Id": 1195, + "Rank": 1, "CommandName": "Revoke-PnPUserSession", - "Rank": 1 + "Command": "Revoke-PnPUserSession -User user1@contoso.com", + "Id": 1197 }, { - "Command": "Save-PnPPageConversionLog", - "Id": 1196, + "Rank": 1, "CommandName": "Save-PnPPageConversionLog", - "Rank": 1 + "Command": "Save-PnPPageConversionLog", + "Id": 1198 }, { - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", - "Id": 1197, + "Rank": 1, "CommandName": "Save-PnPSiteTemplate", - "Rank": 1 + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", + "Id": 1199 }, { - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", - "Id": 1198, + "Rank": 1, "CommandName": "Save-PnPTenantTemplate", - "Rank": 1 + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", + "Id": 1200 }, { - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Id": 1199, + "Rank": 1, "CommandName": "Send-PnPMail", - "Rank": 1 + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "Id": 1201 }, { - "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": 1200, + "Rank": 2, "CommandName": "Send-PnPMail", - "Rank": 2 + "Command": "Send-PnPMail -From \"sharedmailbox@contoso.onmicrosoft.com\" -To \"recipient1@contoso.com\",\"recipient2@contoso.com\",\"recipient3@contoso.com\" -Cc \"recipient4@contoso.com\" -Bcc \"recipient5@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Importance Low", + "Id": 1202 }, { - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", - "Id": 1201, + "Rank": 3, "CommandName": "Send-PnPMail", - "Rank": 3 + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", + "Id": 1203 }, { - "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": 1202, + "Rank": 4, "CommandName": "Send-PnPMail", - "Rank": 4 + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.onmicrosoft.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server contoso.mail.protection.outlook.com", + "Id": 1204 }, { - "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": 1203, + "Rank": 5, "CommandName": "Send-PnPMail", - "Rank": 5 + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com", + "Id": 1205 }, { - "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": 1204, + "Rank": 6, "CommandName": "Send-PnPMail", - "Rank": 6 + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com -Port 587 -EnableSsl:$true -Username \"userxyz\" -Password \"password123\"", + "Id": 1206 }, { - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", - "Id": 1205, + "Rank": 1, "CommandName": "Set-PnPAdaptiveScopeProperty", - "Rank": 1 + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", + "Id": 1207 }, { - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", - "Id": 1206, + "Rank": 1, "CommandName": "Set-PnPApplicationCustomizer", - "Rank": 1 + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", + "Id": 1208 }, { - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", - "Id": 1207, + "Rank": 2, "CommandName": "Set-PnPApplicationCustomizer", - "Rank": 2 + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", + "Id": 1209 }, { - "Command": "Set-PnPAppSideLoading -On", - "Id": 1208, + "Rank": 1, "CommandName": "Set-PnPAppSideLoading", - "Rank": 1 + "Command": "Set-PnPAppSideLoading -On", + "Id": 1210 }, { - "Command": "Set-PnPAppSideLoading -Off", - "Id": 1209, + "Rank": 2, "CommandName": "Set-PnPAppSideLoading", - "Rank": 2 + "Command": "Set-PnPAppSideLoading -Off", + "Id": 1211 }, { - "Command": "Set-PnPAuditing -EnableAll", - "Id": 1210, + "Rank": 1, "CommandName": "Set-PnPAuditing", - "Rank": 1 + "Command": "Set-PnPAuditing -EnableAll", + "Id": 1212 }, { - "Command": "Set-PnPAuditing -DisableAll", - "Id": 1211, + "Rank": 2, "CommandName": "Set-PnPAuditing", - "Rank": 2 + "Command": "Set-PnPAuditing -DisableAll", + "Id": 1213 }, { - "Command": "Set-PnPAuditing -RetentionTime 7", - "Id": 1212, + "Rank": 3, "CommandName": "Set-PnPAuditing", - "Rank": 3 + "Command": "Set-PnPAuditing -RetentionTime 7", + "Id": 1214 }, { - "Command": "Set-PnPAuditing -TrimAuditLog", - "Id": 1213, + "Rank": 4, "CommandName": "Set-PnPAuditing", - "Rank": 4 + "Command": "Set-PnPAuditing -TrimAuditLog", + "Id": 1215 }, { - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", - "Id": 1214, + "Rank": 5, "CommandName": "Set-PnPAuditing", - "Rank": 5 + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", + "Id": 1216 }, { - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", - "Id": 1215, + "Rank": 1, "CommandName": "Set-PnPAvailablePageLayouts", - "Rank": 1 + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", + "Id": 1217 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", - "Id": 1216, + "Rank": 1, "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 1 + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", + "Id": 1218 }, { - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", - "Id": 1217, + "Rank": 2, "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 2 + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", + "Id": 1219 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1218, + "Rank": 1, "CommandName": "Set-PnPAzureADGroup", - "Rank": 1 + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", + "Id": 1220 }, { - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1219, + "Rank": 2, "CommandName": "Set-PnPAzureADGroup", - "Rank": 2 + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Id": 1221 }, { - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", - "Id": 1220, + "Rank": 3, "CommandName": "Set-PnPAzureADGroup", - "Rank": 3 + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", + "Id": 1222 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", - "Id": 1221, + "Rank": 1, "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 1 + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", + "Id": 1223 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", - "Id": 1222, + "Rank": 2, "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 2 + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", + "Id": 1224 }, { - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", - "Id": 1223, + "Rank": 3, "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 3 + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", + "Id": 1225 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", - "Id": 1224, + "Rank": 1, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 1 + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", + "Id": 1226 }, { - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", - "Id": 1225, + "Rank": 2, "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 2 + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", + "Id": 1227 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", - "Id": 1226, + "Rank": 1, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 1 + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", + "Id": 1228 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", - "Id": 1227, + "Rank": 2, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 2 + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", + "Id": 1229 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", - "Id": 1228, + "Rank": 3, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 3 + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", + "Id": 1230 }, { - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", - "Id": 1229, + "Rank": 4, "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 4 + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", + "Id": 1231 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1230, + "Rank": 1, "CommandName": "Set-PnPContentType", - "Rank": 1 + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Id": 1232 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", - "Id": 1231, + "Rank": 2, "CommandName": "Set-PnPContentType", - "Rank": 2 + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", + "Id": 1233 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", - "Id": 1232, + "Rank": 3, "CommandName": "Set-PnPContentType", - "Rank": 3 + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", + "Id": 1234 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1233, + "Rank": 4, "CommandName": "Set-PnPContentType", - "Rank": 4 + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Id": 1235 }, { - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", - "Id": 1234, + "Rank": 5, "CommandName": "Set-PnPContentType", - "Rank": 5 + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", + "Id": 1236 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", - "Id": 1235, + "Rank": 1, "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 1 + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", + "Id": 1237 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", - "Id": 1236, + "Rank": 2, "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 2 + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", + "Id": 1238 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", - "Id": 1237, + "Rank": 3, "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 3 + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", + "Id": 1239 }, { - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", - "Id": 1238, + "Rank": 4, "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 4 + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", + "Id": 1240 }, { - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", - "Id": 1239, + "Rank": 1, "CommandName": "Set-PnPDefaultContentTypeToList", - "Rank": 1 + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", + "Id": 1241 }, { - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", - "Id": 1240, + "Rank": 1, "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 1 + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", + "Id": 1242 }, { - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", - "Id": 1241, + "Rank": 2, "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 2 + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", + "Id": 1243 }, { - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", - "Id": 1242, + "Rank": 3, "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 3 + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", + "Id": 1244 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", - "Id": 1243, + "Rank": 1, "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 1 + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", + "Id": 1245 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1244, + "Rank": 2, "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 2 + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Id": 1246 }, { - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", - "Id": 1245, + "Rank": 3, "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 3 + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", + "Id": 1247 }, { - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", - "Id": 1246, + "Rank": 1, "CommandName": "Set-PnPDocumentSetField", - "Rank": 1 + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", + "Id": 1248 }, { - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", - "Id": 1247, + "Rank": 2, "CommandName": "Set-PnPDocumentSetField", - "Rank": 2 + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", + "Id": 1249 }, { - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", - "Id": 1248, + "Rank": 1, "CommandName": "Set-PnPField", - "Rank": 1 + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", + "Id": 1250 }, { - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", - "Id": 1249, + "Rank": 2, "CommandName": "Set-PnPField", - "Rank": 2 + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", + "Id": 1251 }, { - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", - "Id": 1250, + "Rank": 3, "CommandName": "Set-PnPField", - "Rank": 3 + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", + "Id": 1252 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", - "Id": 1251, + "Rank": 1, "CommandName": "Set-PnPFileCheckedIn", - "Rank": 1 + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", + "Id": 1253 }, { - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", - "Id": 1252, + "Rank": 2, "CommandName": "Set-PnPFileCheckedIn", - "Rank": 2 + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", + "Id": 1254 }, { - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", - "Id": 1253, + "Rank": 1, "CommandName": "Set-PnPFileCheckedOut", - "Rank": 1 + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", + "Id": 1255 }, { - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1254, + "Rank": 1, "CommandName": "Set-PnPFolderPermission", - "Rank": 1 + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1256 }, { - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1255, + "Rank": 2, "CommandName": "Set-PnPFolderPermission", - "Rank": 2 + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1257 }, { - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1256, + "Rank": 3, "CommandName": "Set-PnPFolderPermission", - "Rank": 3 + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Id": 1258 }, { - "Command": "Set-PnPFooter -Enabled:$true", - "Id": 1257, + "Rank": 1, "CommandName": "Set-PnPFooter", - "Rank": 1 + "Command": "Set-PnPFooter -Enabled:$true", + "Id": 1259 }, { - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", - "Id": 1258, + "Rank": 2, "CommandName": "Set-PnPFooter", - "Rank": 2 + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", + "Id": 1260 }, { - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", - "Id": 1259, + "Rank": 3, "CommandName": "Set-PnPFooter", - "Rank": 3 + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", + "Id": 1261 }, { - "Command": "Set-PnPFooter -LogoUrl \"\"", - "Id": 1260, + "Rank": 4, "CommandName": "Set-PnPFooter", - "Rank": 4 + "Command": "Set-PnPFooter -LogoUrl \"\"", + "Id": 1262 }, { - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", - "Id": 1261, + "Rank": 1, "CommandName": "Set-PnPGraphSubscription", - "Rank": 1 + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", + "Id": 1263 }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", - "Id": 1262, + "Rank": 1, "CommandName": "Set-PnPGroup", - "Rank": 1 + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", + "Id": 1264 }, { - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", - "Id": 1263, + "Rank": 2, "CommandName": "Set-PnPGroup", - "Rank": 2 + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", + "Id": 1265 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", - "Id": 1264, + "Rank": 1, "CommandName": "Set-PnPGroupPermissions", - "Rank": 1 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", + "Id": 1266 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", - "Id": 1265, + "Rank": 2, "CommandName": "Set-PnPGroupPermissions", - "Rank": 2 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", + "Id": 1267 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", - "Id": 1266, + "Rank": 3, "CommandName": "Set-PnPGroupPermissions", - "Rank": 3 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", + "Id": 1268 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", - "Id": 1267, + "Rank": 4, "CommandName": "Set-PnPGroupPermissions", - "Rank": 4 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", + "Id": 1269 }, { - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", - "Id": 1268, + "Rank": 5, "CommandName": "Set-PnPGroupPermissions", - "Rank": 5 + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", + "Id": 1270 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", - "Id": 1269, + "Rank": 1, "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 1 + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", + "Id": 1271 }, { - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", - "Id": 1270, + "Rank": 2, "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 2 + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", + "Id": 1272 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", - "Id": 1271, + "Rank": 1, "CommandName": "Set-PnPHomePage", - "Rank": 1 + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", + "Id": 1273 }, { - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", - "Id": 1272, + "Rank": 2, "CommandName": "Set-PnPHomePage", - "Rank": 2 + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", + "Id": 1274 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", - "Id": 1273, + "Rank": 1, "CommandName": "Set-PnPHomeSite", - "Rank": 1 + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", + "Id": 1275 }, { - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", - "Id": 1274, + "Rank": 2, "CommandName": "Set-PnPHomeSite", - "Rank": 2 + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", + "Id": 1276 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", - "Id": 1275, + "Rank": 1, "CommandName": "Set-PnPHubSite", - "Rank": 1 + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", + "Id": 1277 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", - "Id": 1276, + "Rank": 2, "CommandName": "Set-PnPHubSite", - "Rank": 2 + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", + "Id": 1278 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", - "Id": 1277, + "Rank": 3, "CommandName": "Set-PnPHubSite", - "Rank": 3 + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", + "Id": 1279 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", - "Id": 1278, + "Rank": 4, "CommandName": "Set-PnPHubSite", - "Rank": 4 + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", + "Id": 1280 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", - "Id": 1279, + "Rank": 5, "CommandName": "Set-PnPHubSite", - "Rank": 5 + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", + "Id": 1281 }, { - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", - "Id": 1280, + "Rank": 6, "CommandName": "Set-PnPHubSite", - "Rank": 6 + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", + "Id": 1282 }, { - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", - "Id": 1281, + "Rank": 1, "CommandName": "Set-PnPImageListItemColumn", - "Rank": 1 + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", + "Id": 1283 }, { - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", - "Id": 1282, + "Rank": 2, "CommandName": "Set-PnPImageListItemColumn", - "Rank": 2 + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", + "Id": 1284 }, { - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", - "Id": 1283, + "Rank": 1, "CommandName": "Set-PnPIndexedProperties", - "Rank": 1 + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", + "Id": 1285 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", - "Id": 1284, + "Rank": 1, "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 1 + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", + "Id": 1286 }, { - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", - "Id": 1285, + "Rank": 2, "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 2 + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", + "Id": 1287 }, { - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", - "Id": 1286, + "Rank": 1, "CommandName": "Set-PnPKnowledgeHubSite", - "Rank": 1 + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", + "Id": 1288 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", - "Id": 1287, + "Rank": 1, "CommandName": "Set-PnPLabel", - "Rank": 1 + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", + "Id": 1289 }, { - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", - "Id": 1288, + "Rank": 2, "CommandName": "Set-PnPLabel", - "Rank": 2 + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", + "Id": 1290 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", - "Id": 1289, + "Rank": 1, "CommandName": "Set-PnPList", - "Rank": 1 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", + "Id": 1291 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", - "Id": 1290, + "Rank": 2, "CommandName": "Set-PnPList", - "Rank": 2 + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", + "Id": 1292 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", - "Id": 1291, + "Rank": 3, "CommandName": "Set-PnPList", - "Rank": 3 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", + "Id": 1293 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", - "Id": 1292, + "Rank": 4, "CommandName": "Set-PnPList", - "Rank": 4 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", + "Id": 1294 }, { - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", - "Id": 1293, + "Rank": 5, "CommandName": "Set-PnPList", - "Rank": 5 + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", + "Id": 1295 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", - "Id": 1294, + "Rank": 6, "CommandName": "Set-PnPList", - "Rank": 6 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", + "Id": 1296 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", - "Id": 1295, + "Rank": 7, "CommandName": "Set-PnPList", - "Rank": 7 + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", + "Id": 1297 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", - "Id": 1296, + "Rank": 8, "CommandName": "Set-PnPList", - "Rank": 8 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Id": 1298 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", - "Id": 1297, + "Rank": 9, "CommandName": "Set-PnPList", - "Rank": 9 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "Id": 1299 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", - "Id": 1298, + "Rank": 10, "CommandName": "Set-PnPList", - "Rank": 10 + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Id": 1300 }, { - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", - "Id": 1299, + "Rank": 11, "CommandName": "Set-PnPList", - "Rank": 11 + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Id": 1301 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", - "Id": 1300, + "Rank": 1, "CommandName": "Set-PnPListInformationRightsManagement", - "Rank": 1 + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Id": 1302 }, { - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", - "Id": 1301, + "Rank": 2, "CommandName": "Set-PnPListInformationRightsManagement", - "Rank": 2 + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "Id": 1303 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1302, + "Rank": 1, "CommandName": "Set-PnPListItem", - "Rank": 1 + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1304 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1303, + "Rank": 2, "CommandName": "Set-PnPListItem", - "Rank": 2 + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1305 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", - "Id": 1304, + "Rank": 3, "CommandName": "Set-PnPListItem", - "Rank": 3 + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1306 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", - "Id": 1305, + "Rank": 4, "CommandName": "Set-PnPListItem", - "Rank": 4 + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "Id": 1307 }, { - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", - "Id": 1306, + "Rank": 5, "CommandName": "Set-PnPListItem", - "Rank": 5 + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Id": 1308 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", - "Id": 1307, + "Rank": 1, "CommandName": "Set-PnPListItemAsRecord", - "Rank": 1 + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Id": 1309 }, { - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", - "Id": 1308, + "Rank": 2, "CommandName": "Set-PnPListItemAsRecord", - "Rank": 2 + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Id": 1310 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1309, + "Rank": 1, "CommandName": "Set-PnPListItemPermission", - "Rank": 1 + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1311 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1310, + "Rank": 2, "CommandName": "Set-PnPListItemPermission", - "Rank": 2 + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1312 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", - "Id": 1311, + "Rank": 3, "CommandName": "Set-PnPListItemPermission", - "Rank": 3 + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Id": 1313 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", - "Id": 1312, + "Rank": 4, "CommandName": "Set-PnPListItemPermission", - "Rank": 4 + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "Id": 1314 }, { - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", - "Id": 1313, + "Rank": 5, "CommandName": "Set-PnPListItemPermission", - "Rank": 5 + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "Id": 1315 }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", - "Id": 1314, + "Rank": 1, "CommandName": "Set-PnPListPermission", - "Rank": 1 + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1316 }, { - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", - "Id": 1315, + "Rank": 2, "CommandName": "Set-PnPListPermission", - "Rank": 2 + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1317 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", - "Id": 1316, + "Rank": 1, "CommandName": "Set-PnPListRecordDeclaration", - "Rank": 1 + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Id": 1318 }, { - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", - "Id": 1317, + "Rank": 2, "CommandName": "Set-PnPListRecordDeclaration", - "Rank": 2 + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Id": 1319 }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1318, + "Rank": 1, "CommandName": "Set-PnPMasterPage", - "Rank": 1 + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1320 }, { - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", - "Id": 1319, + "Rank": 2, "CommandName": "Set-PnPMasterPage", - "Rank": 2 + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1321 }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1320, + "Rank": 3, "CommandName": "Set-PnPMasterPage", - "Rank": 3 + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1322 }, { - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", - "Id": 1321, + "Rank": 4, "CommandName": "Set-PnPMasterPage", - "Rank": 4 + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1323 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", - "Id": 1322, + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 1 + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Id": 1324 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1323, + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 2 + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1325 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsArchived", - "Id": 1324, + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", - "Rank": 3 + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1326 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", - "Id": 1325, + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 1 + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Id": 1327 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1326, + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 2 + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1328 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Id": 1327, + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", - "Rank": 3 + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1329 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", - "Id": 1328, + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 1 + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Id": 1330 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", - "Id": 1329, + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 2 + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1331 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Id": 1330, + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", - "Rank": 3 + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1332 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", - "Id": 1331, + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 1 + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Id": 1333 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", - "Id": 1332, + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 2 + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1334 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Id": 1333, + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", - "Rank": 3 + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1335 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", - "Id": 1334, + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 1 + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Id": 1336 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", - "Id": 1335, + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 2 + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Id": 1337 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsRead", - "Id": 1336, + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", - "Rank": 3 + "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1338 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", - "Id": 1337, + "Rank": 1, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 1 + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Id": 1339 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", - "Id": 1338, + "Rank": 2, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 2 + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Id": 1340 }, { - "Command": "Set-PnPMessageCenterAnnouncementAsUnread", - "Id": 1339, + "Rank": 3, "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", - "Rank": 3 + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1341 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", - "Id": 1340, + "Rank": 1, "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 1 + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Id": 1342 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", - "Id": 1341, + "Rank": 2, "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 2 + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Id": 1343 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", - "Id": 1342, + "Rank": 3, "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 3 + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Id": 1344 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", - "Id": 1343, + "Rank": 4, "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 4 + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Id": 1345 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", - "Id": 1344, + "Rank": 5, "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 5 + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Id": 1346 }, { - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", - "Id": 1345, + "Rank": 6, "CommandName": "Set-PnPMicrosoft365Group", - "Rank": 6 + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 1347 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", - "Id": 1346, + "Rank": 1, "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Rank": 1 + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Id": 1348 }, { - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", - "Id": 1347, + "Rank": 2, "CommandName": "Set-PnPMicrosoft365GroupSettings", - "Rank": 2 + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Id": 1349 }, { - "Command": "Set-PnPMinimalDownloadStrategy -Off", - "Id": 1348, + "Rank": 1, "CommandName": "Set-PnPMinimalDownloadStrategy", - "Rank": 1 + "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Id": 1350 }, { - "Command": "Set-PnPMinimalDownloadStrategy -On", - "Id": 1349, + "Rank": 2, "CommandName": "Set-PnPMinimalDownloadStrategy", - "Rank": 2 + "Command": "Set-PnPMinimalDownloadStrategy -On", + "Id": 1351 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", - "Id": 1350, + "Rank": 1, "CommandName": "Set-PnPPage", - "Rank": 1 + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Id": 1352 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", - "Id": 1351, + "Rank": 2, "CommandName": "Set-PnPPage", - "Rank": 2 + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Id": 1353 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", - "Id": 1352, + "Rank": 3, "CommandName": "Set-PnPPage", - "Rank": 3 + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Id": 1354 }, { - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", - "Id": 1353, + "Rank": 4, "CommandName": "Set-PnPPage", - "Rank": 4 + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Id": 1355 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", - "Id": 1354, + "Rank": 5, "CommandName": "Set-PnPPage", - "Rank": 5 + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "Id": 1356 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", - "Id": 1355, + "Rank": 6, "CommandName": "Set-PnPPage", - "Rank": 6 + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", + "Id": 1357 }, { - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", - "Id": 1356, + "Rank": 7, "CommandName": "Set-PnPPage", - "Rank": 7 + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Id": 1358 }, { - "Command": "Set-PnPPage -Name \"NewPage\" -Translate", - "Id": 1357, + "Rank": 8, "CommandName": "Set-PnPPage", - "Rank": 8 + "Command": "Set-PnPPage -Name \"NewPage\" -Translate", + "Id": 1359 }, { - "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", - "Id": 1358, + "Rank": 9, "CommandName": "Set-PnPPage", - "Rank": 9 + "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", + "Id": 1360 }, { - "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", - "Id": 1359, + "Rank": 10, "CommandName": "Set-PnPPage", - "Rank": 10 + "Command": "Set-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Id": 1361 }, { - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", - "Id": 1360, + "Rank": 1, "CommandName": "Set-PnPPageTextPart", - "Rank": 1 + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "Id": 1362 }, { - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", - "Id": 1361, + "Rank": 1, "CommandName": "Set-PnPPageWebPart", - "Rank": 1 + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "Id": 1363 }, { - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", - "Id": 1362, + "Rank": 2, "CommandName": "Set-PnPPageWebPart", - "Rank": 2 + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "Id": 1364 }, { - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", - "Id": 1363, + "Rank": 1, "CommandName": "Set-PnPPlannerBucket", - "Rank": 1 + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Id": 1365 }, { - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", - "Id": 1364, + "Rank": 1, "CommandName": "Set-PnPPlannerConfiguration", - "Rank": 1 + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Id": 1366 }, { - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", - "Id": 1365, + "Rank": 2, "CommandName": "Set-PnPPlannerConfiguration", - "Rank": 2 + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Id": 1367 }, { - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", - "Id": 1366, + "Rank": 1, "CommandName": "Set-PnPPlannerPlan", - "Rank": 1 + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "Id": 1368 }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", - "Id": 1367, + "Rank": 1, "CommandName": "Set-PnPPlannerTask", - "Rank": 1 + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "Id": 1369 }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", - "Id": 1368, + "Rank": 2, "CommandName": "Set-PnPPlannerTask", - "Rank": 2 + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "Id": 1370 }, { - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", - "Id": 1369, + "Rank": 3, "CommandName": "Set-PnPPlannerTask", - "Rank": 3 + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Id": 1371 }, { - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", - "Id": 1370, + "Rank": 1, "CommandName": "Set-PnPPlannerUserPolicy", - "Rank": 1 + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Id": 1372 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", - "Id": 1371, + "Rank": 1, "CommandName": "Set-PnPPropertyBagValue", - "Rank": 1 + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Id": 1373 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", - "Id": 1372, + "Rank": 2, "CommandName": "Set-PnPPropertyBagValue", - "Rank": 2 + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Id": 1374 }, { - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", - "Id": 1373, + "Rank": 3, "CommandName": "Set-PnPPropertyBagValue", - "Rank": 3 + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Id": 1375 }, { - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", - "Id": 1374, + "Rank": 1, "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 1 + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Id": 1376 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled", - "Id": 1375, + "Rank": 2, "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 2 + "Command": "Set-PnPRequestAccessEmails -Disabled", + "Id": 1377 }, { - "Command": "Set-PnPRequestAccessEmails -Disabled:$false", - "Id": 1376, + "Rank": 3, "CommandName": "Set-PnPRequestAccessEmails", - "Rank": 3 + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Id": 1378 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", - "Id": 1377, + "Rank": 1, "CommandName": "Set-PnPRoleDefinition", - "Rank": 1 + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Id": 1379 }, { - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", - "Id": 1378, + "Rank": 2, "CommandName": "Set-PnPRoleDefinition", - "Rank": 2 + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Id": 1380 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", - "Id": 1379, + "Rank": 3, "CommandName": "Set-PnPRoleDefinition", - "Rank": 3 + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Id": 1381 }, { - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", - "Id": 1380, + "Rank": 4, "CommandName": "Set-PnPRoleDefinition", - "Rank": 4 + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Id": 1382 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config", - "Id": 1381, + "Rank": 1, "CommandName": "Set-PnPSearchConfiguration", - "Rank": 1 + "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Id": 1383 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", - "Id": 1382, + "Rank": 2, "CommandName": "Set-PnPSearchConfiguration", - "Rank": 2 + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Id": 1384 }, { - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", - "Id": 1383, + "Rank": 3, "CommandName": "Set-PnPSearchConfiguration", - "Rank": 3 + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Id": 1385 }, { - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", - "Id": 1384, + "Rank": 4, "CommandName": "Set-PnPSearchConfiguration", - "Rank": 4 + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 1386 }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", - "Id": 1385, + "Rank": 1, "CommandName": "Set-PnPSearchSettings", - "Rank": 1 + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Id": 1387 }, { - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", - "Id": 1386, + "Rank": 2, "CommandName": "Set-PnPSearchSettings", - "Rank": 2 + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Id": 1388 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", - "Id": 1387, + "Rank": 3, "CommandName": "Set-PnPSearchSettings", - "Rank": 3 + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Id": 1389 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", - "Id": 1388, + "Rank": 4, "CommandName": "Set-PnPSearchSettings", - "Rank": 4 + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Id": 1390 }, { - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", - "Id": 1389, + "Rank": 5, "CommandName": "Set-PnPSearchSettings", - "Rank": 5 + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Id": 1391 }, { - "Command": "Set-PnPSearchSettings -SearchScope Tenant", - "Id": 1390, + "Rank": 6, "CommandName": "Set-PnPSearchSettings", - "Rank": 6 + "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Id": 1392 }, { - "Command": "Set-PnPSearchSettings -SearchScope Hub", - "Id": 1391, + "Rank": 7, "CommandName": "Set-PnPSearchSettings", - "Rank": 7 + "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Id": 1393 }, { - "Command": "Set-PnPSite -Classification \"HBI\"", - "Id": 1392, + "Rank": 1, "CommandName": "Set-PnPSite", - "Rank": 1 + "Command": "Set-PnPSite -Classification \"HBI\"", + "Id": 1394 }, { - "Command": "Set-PnPSite -Classification $null", - "Id": 1393, + "Rank": 2, "CommandName": "Set-PnPSite", - "Rank": 2 + "Command": "Set-PnPSite -Classification $null", + "Id": 1395 }, { - "Command": "Set-PnPSite -DisableFlows", - "Id": 1394, + "Rank": 3, "CommandName": "Set-PnPSite", - "Rank": 3 + "Command": "Set-PnPSite -DisableFlows", + "Id": 1396 }, { - "Command": "Set-PnPSite -DisableFlows:$false", - "Id": 1395, + "Rank": 4, "CommandName": "Set-PnPSite", - "Rank": 4 + "Command": "Set-PnPSite -DisableFlows:$false", + "Id": 1397 }, { - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", - "Id": 1396, + "Rank": 5, "CommandName": "Set-PnPSite", - "Rank": 5 + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Id": 1398 }, { - "Command": "Set-PnPSite -NoScriptSite $false", - "Id": 1397, + "Rank": 6, "CommandName": "Set-PnPSite", - "Rank": 6 + "Command": "Set-PnPSite -NoScriptSite $false", + "Id": 1399 }, { - "Command": "Set-PnPSiteClassification -Identity \"LBI\"", - "Id": 1398, + "Rank": 1, "CommandName": "Set-PnPSiteClassification", - "Rank": 1 + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Id": 1400 }, { - "Command": "Set-PnPSiteClosure -State Open", - "Id": 1399, + "Rank": 1, "CommandName": "Set-PnPSiteClosure", - "Rank": 1 + "Command": "Set-PnPSiteClosure -State Open", + "Id": 1401 }, { - "Command": "Set-PnPSiteClosure -State Closed", - "Id": 1400, + "Rank": 2, "CommandName": "Set-PnPSiteClosure", - "Rank": 2 + "Command": "Set-PnPSiteClosure -State Closed", + "Id": 1402 }, { - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", - "Id": 1401, + "Rank": 1, "CommandName": "Set-PnPSiteDesign", - "Rank": 1 + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "Id": 1403 }, { - "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": 1402, + "Rank": 2, "CommandName": "Set-PnPSiteDesign", - "Rank": 2 + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Company Design\" -Description \"My description\" -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"", + "Id": 1404 }, { - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", - "Id": 1403, + "Rank": 1, "CommandName": "Set-PnPSiteGroup", - "Rank": 1 + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "Id": 1405 }, { - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", - "Id": 1404, + "Rank": 2, "CommandName": "Set-PnPSiteGroup", - "Rank": 2 + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Id": 1406 }, { - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", - "Id": 1405, + "Rank": 1, "CommandName": "Set-PnPSitePolicy", - "Rank": 1 + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Id": 1407 }, { - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1406, + "Rank": 1, "CommandName": "Set-PnPSiteScript", - "Rank": 1 + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1408 }, { - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", - "Id": 1407, + "Rank": 1, "CommandName": "Set-PnPSiteScriptPackage", - "Rank": 1 + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1409 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", - "Id": 1408, + "Rank": 1, "CommandName": "Set-PnPSiteSensitivityLabel", - "Rank": 1 + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Id": 1410 }, { - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", - "Id": 1409, + "Rank": 2, "CommandName": "Set-PnPSiteSensitivityLabel", - "Rank": 2 + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Id": 1411 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1410, + "Rank": 1, "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 1 + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1412 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", - "Id": 1411, + "Rank": 2, "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 2 + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1413 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1412, + "Rank": 3, "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 3 + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1414 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", - "Id": 1413, + "Rank": 4, "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 4 + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1415 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1414, + "Rank": 5, "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 5 + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1416 }, { - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", - "Id": 1415, + "Rank": 6, "CommandName": "Set-PnPSiteTemplateMetadata", - "Rank": 6 + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1417 }, { - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1416, + "Rank": 1, "CommandName": "Set-PnPStorageEntity", - "Rank": 1 + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1418 }, { - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", - "Id": 1417, + "Rank": 2, "CommandName": "Set-PnPStorageEntity", - "Rank": 2 + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1419 }, { - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1418, + "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Rank": 1 + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1420 }, { - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", - "Id": 1419, + "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheSiteState", - "Rank": 2 + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1421 }, { - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1420, + "Rank": 1, "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Rank": 1 + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1422 }, { - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", - "Id": 1421, + "Rank": 2, "CommandName": "Set-PnPStructuralNavigationCacheWebState", - "Rank": 2 + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1423 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", - "Id": 1422, + "Rank": 1, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Rank": 1 + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Id": 1424 }, { - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", - "Id": 1423, + "Rank": 2, "CommandName": "Set-PnPSubscribeSharePointNewsDigest", - "Rank": 2 + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Id": 1425 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", - "Id": 1424, + "Rank": 1, "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 1 + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "Id": 1426 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", - "Id": 1425, + "Rank": 2, "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 2 + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "Id": 1427 }, { - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", - "Id": 1426, + "Rank": 3, "CommandName": "Set-PnPTaxonomyFieldValue", - "Rank": 3 + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Id": 1428 }, { - "Command": "Set-PnPTeamifyPromptHidden", - "Id": 1427, + "Rank": 1, "CommandName": "Set-PnPTeamifyPromptHidden", - "Rank": 1 + "Command": "Set-PnPTeamifyPromptHidden", + "Id": 1429 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", - "Id": 1428, + "Rank": 1, "CommandName": "Set-PnPTeamsChannel", - "Rank": 1 + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Id": 1430 }, { - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", - "Id": 1429, + "Rank": 2, "CommandName": "Set-PnPTeamsChannel", - "Rank": 2 + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "Id": 1431 }, { - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", - "Id": 1430, + "Rank": 1, "CommandName": "Set-PnpTeamsChannelUser", - "Rank": 1 + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "Id": 1432 }, { - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", - "Id": 1431, + "Rank": 2, "CommandName": "Set-PnpTeamsChannelUser", - "Rank": 2 + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "Id": 1433 }, { - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", - "Id": 1432, + "Rank": 1, "CommandName": "Set-PnPTeamsTab", - "Rank": 1 + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "Id": 1434 }, { - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", - "Id": 1433, + "Rank": 1, "CommandName": "Set-PnPTeamsTag", - "Rank": 1 + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Id": 1435 }, { - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", - "Id": 1434, + "Rank": 1, "CommandName": "Set-PnPTeamsTeam", - "Rank": 1 + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Id": 1436 }, { - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", - "Id": 1435, + "Rank": 2, "CommandName": "Set-PnPTeamsTeam", - "Rank": 2 + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "Id": 1437 }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", - "Id": 1436, + "Rank": 3, "CommandName": "Set-PnPTeamsTeam", - "Rank": 3 + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Id": 1438 }, { - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", - "Id": 1437, + "Rank": 4, "CommandName": "Set-PnPTeamsTeam", - "Rank": 4 + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Id": 1439 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", - "Id": 1438, + "Rank": 1, "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 1 + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Id": 1440 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", - "Id": 1439, + "Rank": 2, "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 2 + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Id": 1441 }, { - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", - "Id": 1440, + "Rank": 3, "CommandName": "Set-PnPTeamsTeamArchivedState", - "Rank": 3 + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Id": 1442 }, { - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", - "Id": 1441, + "Rank": 1, "CommandName": "Set-PnPTeamsTeamPicture", - "Rank": 1 + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Id": 1443 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $true", - "Id": 1442, + "Rank": 1, "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Rank": 1 + "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Id": 1444 }, { - "Command": "Set-PnPTemporarilyDisableAppBar $false", - "Id": 1443, + "Rank": 2, "CommandName": "Set-PnPTemporarilyDisableAppBar", - "Rank": 2 + "Command": "Set-PnPTemporarilyDisableAppBar $false", + "Id": 1445 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", - "Id": 1444, + "Rank": 1, "CommandName": "Set-PnPTenant", - "Rank": 1 + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", + "Id": 1446 }, { - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", - "Id": 1445, + "Rank": 2, "CommandName": "Set-PnPTenant", - "Rank": 2 + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Id": 1447 }, { - "Command": "Set-PnPTenant -ShowAllUsersClaim $false", - "Id": 1446, + "Rank": 3, "CommandName": "Set-PnPTenant", - "Rank": 3 + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Id": 1448 }, { - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", - "Id": 1447, + "Rank": 4, "CommandName": "Set-PnPTenant", - "Rank": 4 + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Id": 1449 }, { - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", - "Id": 1448, + "Rank": 1, "CommandName": "Set-PnPTenantAppCatalogUrl", - "Rank": 1 + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Id": 1450 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", - "Id": 1449, + "Rank": 1, "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 1 + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Id": 1451 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", - "Id": 1450, + "Rank": 2, "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 2 + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Id": 1452 }, { - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", - "Id": 1451, + "Rank": 3, "CommandName": "Set-PnPTenantCdnEnabled", - "Rank": 3 + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "Id": 1453 }, { - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", - "Id": 1452, + "Rank": 1, "CommandName": "Set-PnPTenantCdnPolicy", - "Rank": 1 + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", + "Id": 1454 }, { - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", - "Id": 1453, + "Rank": 2, "CommandName": "Set-PnPTenantCdnPolicy", - "Rank": 2 + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "Id": 1455 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", - "Id": 1454, + "Rank": 1, "CommandName": "Set-PnPTenantSite", - "Rank": 1 + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "Id": 1456 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", - "Id": 1455, + "Rank": 2, "CommandName": "Set-PnPTenantSite", - "Rank": 2 + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "Id": 1457 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", - "Id": 1456, + "Rank": 3, "CommandName": "Set-PnPTenantSite", - "Rank": 3 + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 1458 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", - "Id": 1457, + "Rank": 4, "CommandName": "Set-PnPTenantSite", - "Rank": 4 + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 1459 }, { - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", - "Id": 1458, + "Rank": 5, "CommandName": "Set-PnPTenantSite", - "Rank": 5 + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Id": 1460 }, { - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", - "Id": 1459, + "Rank": 1, "CommandName": "Set-PnPTenantSyncClientRestriction", - "Rank": 1 + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Id": 1461 }, { - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", - "Id": 1460, + "Rank": 2, "CommandName": "Set-PnPTenantSyncClientRestriction", - "Rank": 2 + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Id": 1462 }, { - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", - "Id": 1461, + "Rank": 1, "CommandName": "Set-PnPTerm", - "Rank": 1 + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "Id": 1463 }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1462, + "Rank": 2, "CommandName": "Set-PnPTerm", - "Rank": 2 + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1464 }, { - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", - "Id": 1463, + "Rank": 3, "CommandName": "Set-PnPTerm", - "Rank": 3 + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1465 }, { - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", - "Id": 1464, + "Rank": 1, "CommandName": "Set-PnPTermGroup", - "Rank": 1 + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Id": 1466 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", - "Id": 1465, + "Rank": 1, "CommandName": "Set-PnPTermSet", - "Rank": 1 + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Id": 1467 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", - "Id": 1466, + "Rank": 2, "CommandName": "Set-PnPTermSet", - "Rank": 2 + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Id": 1468 }, { - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", - "Id": 1467, + "Rank": 3, "CommandName": "Set-PnPTermSet", - "Rank": 3 + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Id": 1469 }, { - "Command": "Set-PnPTheme", - "Id": 1468, + "Rank": 1, "CommandName": "Set-PnPTheme", - "Rank": 1 + "Command": "Set-PnPTheme", + "Id": 1470 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", - "Id": 1469, + "Rank": 2, "CommandName": "Set-PnPTheme", - "Rank": 2 + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "Id": 1471 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", - "Id": 1470, + "Rank": 3, "CommandName": "Set-PnPTheme", - "Rank": 3 + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "Id": 1472 }, { - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", - "Id": 1471, + "Rank": 4, "CommandName": "Set-PnPTheme", - "Rank": 4 + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Id": 1473 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", - "Id": 1472, + "Rank": 1, "CommandName": "Set-PnPTraceLog", - "Rank": 1 + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Id": 1474 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", - "Id": 1473, + "Rank": 2, "CommandName": "Set-PnPTraceLog", - "Rank": 2 + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Id": 1475 }, { - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", - "Id": 1474, + "Rank": 3, "CommandName": "Set-PnPTraceLog", - "Rank": 3 + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Id": 1476 }, { - "Command": "Set-PnPTraceLog -Off", - "Id": 1475, + "Rank": 4, "CommandName": "Set-PnPTraceLog", - "Rank": 4 + "Command": "Set-PnPTraceLog -Off", + "Id": 1477 }, { - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", - "Id": 1476, + "Rank": 1, "CommandName": "Set-PnPUserOneDriveQuota", - "Rank": 1 + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "Id": 1478 }, { - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", - "Id": 1477, + "Rank": 1, "CommandName": "Set-PnPUserProfileProperty", - "Rank": 1 + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "Id": 1479 }, { - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", - "Id": 1478, + "Rank": 2, "CommandName": "Set-PnPUserProfileProperty", - "Rank": 2 + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "Id": 1480 }, { - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", - "Id": 1479, + "Rank": 1, "CommandName": "Set-PnPView", - "Rank": 1 + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "Id": 1481 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", - "Id": 1480, + "Rank": 2, "CommandName": "Set-PnPView", - "Rank": 2 + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "Id": 1482 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", - "Id": 1481, + "Rank": 3, "CommandName": "Set-PnPView", - "Rank": 3 + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "Id": 1483 }, { - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", - "Id": 1482, + "Rank": 4, "CommandName": "Set-PnPView", - "Rank": 4 + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "Id": 1484 }, { - "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": 1483, + "Rank": 1, "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 1 + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4 -CardSize Large -PropertiesJSON $myProperties", + "Id": 1485 }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", - "Id": 1484, + "Rank": 2, "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 2 + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "Id": 1486 }, { - "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": 1485, + "Rank": 3, "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 3 + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4", + "Id": 1487 }, { - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", - "Id": 1486, + "Rank": 4, "CommandName": "Set-PnPVivaConnectionsDashboardACE", - "Rank": 4 + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Id": 1488 }, { - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", - "Id": 1487, + "Rank": 1, "CommandName": "Set-PnPWeb", - "Rank": 1 + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Id": 1489 }, { - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", - "Id": 1488, + "Rank": 2, "CommandName": "Set-PnPWeb", - "Rank": 2 + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Id": 1490 }, { - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", - "Id": 1489, + "Rank": 3, "CommandName": "Set-PnPWeb", - "Rank": 3 + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Id": 1491 }, { - "Command": "Set-PnPWeb -NoCrawl:$true", - "Id": 1490, + "Rank": 4, "CommandName": "Set-PnPWeb", - "Rank": 4 + "Command": "Set-PnPWeb -NoCrawl:$true", + "Id": 1492 }, { - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", - "Id": 1491, + "Rank": 1, "CommandName": "Set-PnPWebHeader", - "Rank": 1 + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Id": 1493 }, { - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", - "Id": 1492, + "Rank": 2, "CommandName": "Set-PnPWebHeader", - "Rank": 2 + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Id": 1494 }, { - "Command": "Set-PnPWebHeader -LogoAlignment Middle", - "Id": 1493, + "Rank": 3, "CommandName": "Set-PnPWebHeader", - "Rank": 3 + "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "Id": 1495 }, { - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", - "Id": 1494, + "Rank": 1, "CommandName": "Set-PnPWebhookSubscription", - "Rank": 1 + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Id": 1496 }, { - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", - "Id": 1495, + "Rank": 2, "CommandName": "Set-PnPWebhookSubscription", - "Rank": 2 + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "Id": 1497 }, { - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", - "Id": 1496, + "Rank": 1, "CommandName": "Set-PnPWebPartProperty", - "Rank": 1 + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", + "Id": 1498 }, { - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1497, + "Rank": 1, "CommandName": "Set-PnPWebPermission", - "Rank": 1 + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1499 }, { - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", - "Id": 1498, + "Rank": 2, "CommandName": "Set-PnPWebPermission", - "Rank": 2 + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Id": 1500 }, { - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", - "Id": 1499, + "Rank": 3, "CommandName": "Set-PnPWebPermission", - "Rank": 3 + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1501 }, { - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", - "Id": 1500, + "Rank": 4, "CommandName": "Set-PnPWebPermission", - "Rank": 4 + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Id": 1502 }, { - "Command": "Set-PnPWebTheme -Theme MyTheme", - "Id": 1501, + "Rank": 1, "CommandName": "Set-PnPWebTheme", - "Rank": 1 + "Command": "Set-PnPWebTheme -Theme MyTheme", + "Id": 1503 }, { - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", - "Id": 1502, + "Rank": 2, "CommandName": "Set-PnPWebTheme", - "Rank": 2 + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "Id": 1504 }, { - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", - "Id": 1503, + "Rank": 1, "CommandName": "Set-PnPWikiPageContent", - "Rank": 1 + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Id": 1505 }, { - "Command": "Submit-PnPSearchQuery -Query \"finance\"", - "Id": 1504, + "Rank": 1, "CommandName": "Submit-PnPSearchQuery", - "Rank": 1 + "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Id": 1506 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", - "Id": 1505, + "Rank": 2, "CommandName": "Submit-PnPSearchQuery", - "Rank": 2 + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Id": 1507 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", - "Id": 1506, + "Rank": 3, "CommandName": "Submit-PnPSearchQuery", - "Rank": 3 + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Id": 1508 }, { - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", - "Id": 1507, + "Rank": 4, "CommandName": "Submit-PnPSearchQuery", - "Rank": 4 + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "Id": 1509 }, { - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", - "Id": 1508, + "Rank": 5, "CommandName": "Submit-PnPSearchQuery", - "Rank": 5 + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "Id": 1510 }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", - "Id": 1509, + "Rank": 1, "CommandName": "Submit-PnPTeamsChannelMessage", - "Rank": 1 + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Id": 1511 }, { - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", - "Id": 1510, + "Rank": 2, "CommandName": "Submit-PnPTeamsChannelMessage", - "Rank": 2 + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "Id": 1512 }, { - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1511, + "Rank": 1, "CommandName": "Sync-PnPAppToTeams", - "Rank": 1 + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1513 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", - "Id": 1512, + "Rank": 1, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 1 + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Id": 1514 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", - "Id": 1513, + "Rank": 2, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 2 + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "Id": 1515 }, { - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", - "Id": 1514, + "Rank": 3, "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", - "Rank": 3 + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Id": 1516 }, { - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", - "Id": 1515, + "Rank": 1, "CommandName": "Test-PnPListItemIsRecord", - "Rank": 1 + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Id": 1517 }, { - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", - "Id": 1516, + "Rank": 1, "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", - "Rank": 1 + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Id": 1518 }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", - "Id": 1517, + "Rank": 1, "CommandName": "Test-PnPSite", - "Rank": 1 + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1519 }, { - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", - "Id": 1518, + "Rank": 2, "CommandName": "Test-PnPSite", - "Rank": 2 + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Id": 1520 }, { - "Command": "Test-PnPTenantTemplate -Template $myTemplate", - "Id": 1519, + "Rank": 1, "CommandName": "Test-PnPTenantTemplate", - "Rank": 1 + "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Id": 1521 }, { - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", - "Id": 1520, + "Rank": 1, "CommandName": "Undo-PnPFileCheckedOut", - "Rank": 1 + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Id": 1522 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1521, + "Rank": 1, "CommandName": "Uninstall-PnPApp", - "Rank": 1 + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1523 }, { - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1522, + "Rank": 2, "CommandName": "Uninstall-PnPApp", - "Rank": 2 + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1524 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1523, + "Rank": 1, "CommandName": "Unpublish-PnPApp", - "Rank": 1 + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1525 }, { - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1524, + "Rank": 2, "CommandName": "Unpublish-PnPApp", - "Rank": 2 + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1526 }, { - "Command": "Unpublish-PnPContentType -ContentType 0x0101", - "Id": 1525, + "Rank": 1, "CommandName": "Unpublish-PnPContentType", - "Rank": 1 + "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Id": 1527 }, { - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", - "Id": 1526, + "Rank": 1, "CommandName": "Unpublish-PnPSyntexModel", - "Rank": 1 + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Id": 1528 }, { - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", - "Id": 1527, + "Rank": 2, "CommandName": "Unpublish-PnPSyntexModel", - "Rank": 2 + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", + "Id": 1529 }, { - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", - "Id": 1528, + "Rank": 1, "CommandName": "Unregister-PnPHubSite", - "Rank": 1 + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Id": 1530 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", - "Id": 1529, + "Rank": 1, "CommandName": "Update-PnPApp", - "Rank": 1 + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1531 }, { - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", - "Id": 1530, + "Rank": 2, "CommandName": "Update-PnPApp", - "Rank": 2 + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1532 }, { - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", - "Id": 1531, + "Rank": 1, "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 1 + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Id": 1533 }, { - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", - "Id": 1532, + "Rank": 2, "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 2 + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Id": 1534 }, { - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", - "Id": 1533, + "Rank": 3, "CommandName": "Update-PnPAvailableSiteClassification", - "Rank": 3 + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Id": 1535 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", - "Id": 1534, + "Rank": 1, "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 1 + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Id": 1536 }, { - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", - "Id": 1535, + "Rank": 2, "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 2 + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Id": 1537 }, { - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", - "Id": 1536, + "Rank": 3, "CommandName": "Update-PnPSiteDesignFromWeb", - "Rank": 3 + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "Id": 1538 }, { - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", - "Id": 1537, + "Rank": 1, "CommandName": "Update-PnPTeamsApp", - "Rank": 1 + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "Id": 1539 }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", - "Id": 1538, + "Rank": 1, "CommandName": "Update-PnPTeamsUser", - "Rank": 1 + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 1540 }, { - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", - "Id": 1539, + "Rank": 2, "CommandName": "Update-PnPTeamsUser", - "Rank": 2 + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Id": 1541 }, { - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", - "Id": 1540, + "Rank": 3, "CommandName": "Update-PnPTeamsUser", - "Rank": 3 + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "Id": 1542 }, { - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", - "Id": 1541, + "Rank": 1, "CommandName": "Update-PnPUserType", - "Rank": 1 + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Id": 1543 } ] diff --git a/src/Commands/AzureAD/NewAzureADGroup.cs b/src/Commands/AzureAD/NewAzureADGroup.cs index 29a43a71e..8fb4bb5b7 100644 --- a/src/Commands/AzureAD/NewAzureADGroup.cs +++ b/src/Commands/AzureAD/NewAzureADGroup.cs @@ -62,8 +62,8 @@ protected override void ExecuteCmdlet() if (forceCreation) { - var ownerData = Microsoft365GroupsUtility.GetUsersDataBindValueAsync(Connection, AccessToken, Owners).GetAwaiter().GetResult(); - var memberData = Microsoft365GroupsUtility.GetUsersDataBindValueAsync(Connection, AccessToken, Members).GetAwaiter().GetResult(); + string[] ownerData = null; + string[] memberData = null; var postData = new Dictionary() { { "description" , string.IsNullOrEmpty(Description) ? null : Description }, @@ -71,11 +71,20 @@ protected override void ExecuteCmdlet() { "groupTypes", new List(){} }, { "mailEnabled", IsMailEnabled.ToBool() }, { "mailNickname" , MailNickname }, - { "securityEnabled", IsSecurityEnabled.ToBool() }, - { "owners@odata.bind", ownerData }, - { "members@odata.bind", memberData }, + { "securityEnabled", IsSecurityEnabled.ToBool() } }; + if (Owners?.Length > 0) + { + ownerData = Microsoft365GroupsUtility.GetUsersDataBindValueAsync(Connection, AccessToken, Owners).GetAwaiter().GetResult(); + postData.Add("owners@odata.bind", ownerData); + } + if (Members?.Length > 0) + { + memberData = Microsoft365GroupsUtility.GetUsersDataBindValueAsync(Connection, AccessToken, Members).GetAwaiter().GetResult(); + postData.Add("members@odata.bind", memberData); + } + var data = JsonSerializer.Serialize(postData); var stringContent = new StringContent(data); stringContent.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue("application/json"); diff --git a/src/Commands/Base/ConnectOnline.cs b/src/Commands/Base/ConnectOnline.cs index 85055f362..6be0e07ae 100644 --- a/src/Commands/Base/ConnectOnline.cs +++ b/src/Commands/Base/ConnectOnline.cs @@ -733,20 +733,8 @@ private static bool PingHost(string nameOrAddress) try { - var httpClient = Framework.Http.PnPHttpClient.Instance.GetHttpClient(); - var httpRequest = new HttpRequestMessage(); - httpRequest.Method = HttpMethod.Head; - httpRequest.Version = new Version(2,0); - httpRequest.RequestUri = new Uri("https://" + nameOrAddress); - var cancellationToken = new CancellationTokenSource(); - cancellationToken.CancelAfter(TimeSpan.FromSeconds(10)); - var response = httpClient.SendAsync(httpRequest, cancellationToken.Token).Result; - var statusCode = (int) response.StatusCode; - if (statusCode > 100 && statusCode < 500) - { - return true; - } - return false; + var conn = System.Net.Dns.GetHostEntry(nameOrAddress); + return true; } catch { diff --git a/src/Commands/Base/PnPPowerShellModuleInitializer.cs b/src/Commands/Base/PnPPowerShellModuleInitializer.cs index 24a56c0ea..63eac5125 100644 --- a/src/Commands/Base/PnPPowerShellModuleInitializer.cs +++ b/src/Commands/Base/PnPPowerShellModuleInitializer.cs @@ -10,22 +10,24 @@ 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_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; + private static readonly AssemblyLoadContext s_proxy; static PnPPowerShellModuleInitializer() { - s_binBasePath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location))); + s_binBasePath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location))); s_binCommonPath = Path.Combine(Path.GetDirectoryName(s_binBasePath), "Common"); + if (Environment.GetEnvironmentVariable("PNP_PS_DEBUG_IN_VISUAL_STUDIO") == "True") + { + s_binCommonPath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "..", "..", "..", "..", "..", "src", "ALC", "bin", "Debug", "net6.0")); + } + s_dependencies = new HashSet(StringComparer.Ordinal); s_psEditionDependencies = new HashSet(StringComparer.Ordinal); - s_proxy = AssemblyLoadContextProxy.CreateLoadContext("pnp-powershell-load-context"); + s_proxy = new AssemblyLoadContext("pnp-powershell-load-context"); // Add shared dependencies. foreach (string filePath in Directory.EnumerateFiles(s_binBasePath, "*.dll")) @@ -86,15 +88,6 @@ private static Assembly ResolveAssembly_NetCore( } } 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); } /// @@ -136,7 +129,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; @@ -144,38 +137,4 @@ private static string GetRequiredAssemblyPath(AssemblyName assemblyName) 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)) - { - throw new ArgumentNullException(nameof(name)); - } - - var alc = typeof(object).Assembly.GetType("System.Runtime.Loader.AssemblyLoadContext"); - return alc != null - ? new AssemblyLoadContextProxy(alc, name) - : null; - } - } } diff --git a/src/Commands/Enums/FlowSharingStatus.cs b/src/Commands/Enums/FlowSharingStatus.cs new file mode 100644 index 000000000..38fc0b4ec --- /dev/null +++ b/src/Commands/Enums/FlowSharingStatus.cs @@ -0,0 +1,23 @@ +namespace PnP.PowerShell.Commands.Enums +{ + /// + /// Scopes to which flow sharing status is defined + /// + public enum FlowSharingStatus + { + /// + /// returns flows that are shared with you, or created by you and shared with someone + /// + SharedWithMe, + + /// + /// returns all flows created by you which are not shared. + /// + Personal, + + /// + /// Combines personal and sharedwith me + /// + All + } +} diff --git a/src/Commands/Lists/GetListItem.cs b/src/Commands/Lists/GetListItem.cs index 0ef020f5f..b17da8df8 100644 --- a/src/Commands/Lists/GetListItem.cs +++ b/src/Commands/Lists/GetListItem.cs @@ -11,7 +11,7 @@ namespace PnP.PowerShell.Commands.Lists { [Cmdlet(VerbsCommon.Get, "PnPListItem", DefaultParameterSetName = ParameterSet_ALLITEMS)] [OutputType(typeof(ListItem))] - public class GetListItem : PnPWebCmdlet + public class GetListItem : PnPWebRetrievalsCmdlet { private const string ParameterSet_BYID = "By Id"; private const string ParameterSet_BYUNIQUEID = "By Unique Id"; @@ -76,6 +76,8 @@ protected override void ExecuteCmdlet() { ClientContext.Load(listItem, l => l.ContentType, l => l.ContentType.Name, l => l.ContentType.Id, l => l.ContentType.StringId, l => l.ContentType.Description); } + if (RetrievalExpressions.Length > 0) + ClientContext.Load(listItem, RetrievalExpressions); ClientContext.ExecuteQueryRetry(); WriteObject(listItem); } @@ -95,7 +97,9 @@ protected override void ExecuteCmdlet() query.ViewXml = $"{UniqueId}{UniqueId}{viewFieldsStringBuilder}"; var listItem = list.GetItems(query); + // Call ClientContext.Load() with and without retrievalExpressions to load FieldValues, otherwise no fields will be loaded (CSOM behavior) ClientContext.Load(listItem); + ClientContext.Load(listItem, l => l.Include(RetrievalExpressions)); if (IncludeContentType) { ClientContext.Load(listItem, l => l.Include(a => a.ContentType, a => a.ContentType.Id, a => a.ContentType.Name, a => a.ContentType.Description, a => a.ContentType.StringId)); @@ -156,7 +160,9 @@ protected override void ExecuteCmdlet() do { var listItems = list.GetItems(query); + // Call ClientContext.Load() with and without retrievalExpressions to load FieldValues, otherwise no fields will be loaded (CSOM behavior) ClientContext.Load(listItems); + ClientContext.Load(listItems, l => l.Include(RetrievalExpressions)); if (IncludeContentType) { ClientContext.Load(listItems, l => l.Include(a => a.ContentType, a => a.ContentType.Id, a => a.ContentType.Name, a => a.ContentType.Description, a => a.ContentType.StringId)); diff --git a/src/Commands/Lists/SetListItem.cs b/src/Commands/Lists/SetListItem.cs index 4dadd41af..6de068e2f 100644 --- a/src/Commands/Lists/SetListItem.cs +++ b/src/Commands/Lists/SetListItem.cs @@ -5,7 +5,7 @@ using System.Management.Automation; using Microsoft.SharePoint.Client; - +using Microsoft.SharePoint.Client.CompliancePolicy; using PnP.PowerShell.Commands.Base.PipeBinds; using PnP.PowerShell.Commands.Enums; using PnP.PowerShell.Commands.Model; @@ -154,14 +154,27 @@ private void SetListItemSingle() if (ClearLabel) { - item.SetComplianceTag(string.Empty, false, false, false, false, false); + ClientContext.Web.EnsureProperties(w => w.Url, w => w.ServerRelativeUrl); + list.EnsureProperties(l => l.RootFolder, l => l.RootFolder.ServerRelativeUrl); + + string listUrl = string.Empty; + if (ClientContext.Web.ServerRelativeUrl.Equals("/")) + { + listUrl = ClientContext.Web.Url + list.RootFolder.ServerRelativeUrl; + } + else + { + listUrl = ClientContext.Web.Url.Replace(ClientContext.Web.ServerRelativeUrl, "") + list.RootFolder.ServerRelativeUrl; + } + + SPPolicyStoreProxy.SetComplianceTagOnBulkItems(ClientContext, new[] { item.Id }, listUrl, string.Empty); ClientContext.ExecuteQueryRetry(); itemUpdated = true; } if (!string.IsNullOrEmpty(Label)) { - var tags = Microsoft.SharePoint.Client.CompliancePolicy.SPPolicyStoreProxy.GetAvailableTagsForSite(ClientContext, ClientContext.Url); + var tags = SPPolicyStoreProxy.GetAvailableTagsForSite(ClientContext, ClientContext.Url); ClientContext.ExecuteQueryRetry(); var tag = tags.Where(t => t.TagName == Label).FirstOrDefault(); @@ -174,8 +187,21 @@ private void SetListItemSingle() { try { - item.SetComplianceTag(tag.TagName, tag.BlockDelete, tag.BlockEdit, tag.IsEventTag, tag.SuperLock, tag.UnlockedAsDefault); - ClientContext.ExecuteQueryRetry(); + ClientContext.Web.EnsureProperties(w => w.Url, w => w.ServerRelativeUrl); + list.EnsureProperties(l => l.RootFolder, l => l.RootFolder.ServerRelativeUrl); + + string listUrl = string.Empty; + if (ClientContext.Web.ServerRelativeUrl.Equals("/")) + { + listUrl = ClientContext.Web.Url + list.RootFolder.ServerRelativeUrl; + } + else + { + listUrl = ClientContext.Web.Url.Replace(ClientContext.Web.ServerRelativeUrl, "") + list.RootFolder.ServerRelativeUrl; + } + + SPPolicyStoreProxy.SetComplianceTagOnBulkItems(ClientContext, new[] { item.Id }, listUrl, tag.TagName); + ClientContext.ExecuteQueryRetry(); } catch (System.Exception error) { diff --git a/src/Commands/PowerPlatform/PowerAutomate/GetFlow.cs b/src/Commands/PowerPlatform/PowerAutomate/GetFlow.cs index 6145a06af..82a8b2d9e 100644 --- a/src/Commands/PowerPlatform/PowerAutomate/GetFlow.cs +++ b/src/Commands/PowerPlatform/PowerAutomate/GetFlow.cs @@ -4,21 +4,30 @@ using System; using System.Linq; using System.Management.Automation; +using PnP.PowerShell.Commands.Enums; namespace PnP.PowerShell.Commands.PowerPlatform.PowerAutomate { - [Cmdlet(VerbsCommon.Get, "PnPFlow")] + [Cmdlet(VerbsCommon.Get, "PnPFlow", DefaultParameterSetName = ParameterSet_ALL)] public class GetFlow : PnPAzureManagementApiCmdlet { - [Parameter(Mandatory = false, ValueFromPipeline = true)] + private const string ParameterSet_BYIDENTITY = "By Identity"; + private const string ParameterSet_ALL = "All"; + + [Parameter(Mandatory = false, ValueFromPipeline = true, ParameterSetName = ParameterSet_BYIDENTITY)] + [Parameter(Mandatory = false, ValueFromPipeline = true, ParameterSetName = ParameterSet_ALL)] public PowerPlatformEnvironmentPipeBind Environment; - [Parameter(Mandatory = false)] + [Parameter(Mandatory = false, ParameterSetName = ParameterSet_BYIDENTITY)] + [Parameter(Mandatory = false, ParameterSetName = ParameterSet_ALL)] public SwitchParameter AsAdmin; - [Parameter(Mandatory = false)] + [Parameter(Mandatory = false, ParameterSetName = ParameterSet_BYIDENTITY)] public PowerAutomateFlowPipeBind Identity; + [Parameter(Mandatory = false, ParameterSetName = ParameterSet_ALL)] + public FlowSharingStatus SharingStatus = FlowSharingStatus.All; + protected override void ExecuteCmdlet() { string environmentName = null; @@ -52,10 +61,27 @@ protected override void ExecuteCmdlet() } else { - WriteVerbose($"Retrieving all Power Automate Flows within environment '{environmentName}'"); + string filter = null; + switch (SharingStatus) + { + case FlowSharingStatus.SharedWithMe: + filter = "search('team')"; + break; + + case FlowSharingStatus.Personal: + filter = "search('personal')"; + break; - var flows = GraphHelper.GetResultCollectionAsync(Connection, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows?api-version=2016-11-01", AccessToken).GetAwaiter().GetResult(); + case FlowSharingStatus.All: + filter = "search('team AND personal')"; + break; + } + + WriteVerbose($"Retrieving all Power Automate Flows within environment '{environmentName}'{(filter != null ? $" with filter '{filter}'" : "")}"); + + var flows = GraphHelper.GetResultCollectionAsync(Connection, $"https://management.azure.com/providers/Microsoft.ProcessSimple{(AsAdmin ? "/scopes/admin" : "")}/environments/{environmentName}/flows?api-version=2016-11-01{(filter != null ? $"&$filter={filter}" : "")}", AccessToken).GetAwaiter().GetResult(); WriteObject(flows, true); + } } } diff --git a/src/Commands/Taxonomy/SetTerm.cs b/src/Commands/Taxonomy/SetTerm.cs index b1aec9c33..4a1691153 100644 --- a/src/Commands/Taxonomy/SetTerm.cs +++ b/src/Commands/Taxonomy/SetTerm.cs @@ -1,6 +1,7 @@ using System; using System.Collections; using System.Globalization; +using System.Linq.Expressions; using System.Management.Automation; using Microsoft.SharePoint.Client; using Microsoft.SharePoint.Client.Taxonomy; @@ -10,9 +11,8 @@ namespace PnP.PowerShell.Commands.Taxonomy { [Cmdlet(VerbsCommon.Set, "PnPTerm")] - public class SetTerm : PnPSharePointCmdlet + public class SetTerm : PnPRetrievalsCmdlet { - private const string ParameterSet_BYID = "By Term Id"; private const string ParameterSet_BYNAME = "By Term Name"; @@ -55,6 +55,8 @@ public class SetTerm : PnPSharePointCmdlet protected override void ExecuteCmdlet() { + DefaultRetrievalExpressions = new Expression>[] { g => g.Name, g => g.TermsCount, g => g.Id }; + Term term; var taxonomySession = TaxonomySession.GetTaxonomySession(ClientContext); // Get Term Store TermStore termStore = null; @@ -68,9 +70,25 @@ protected override void ExecuteCmdlet() } termStore.EnsureProperty(ts => ts.DefaultLanguage); - var termGroup = TermGroup.GetGroup(termStore); - var termSet = TermSet.GetTermSet(termGroup); - var term = Identity.GetTerm(ClientContext, termStore, termSet, false, null); + if (ParameterSetName == ParameterSet_BYID) + { + if (Identity.Id != Guid.Empty) + { + term = termStore.GetTerm(Identity.Id); + ClientContext.Load(term, RetrievalExpressions); + ClientContext.ExecuteQueryRetry(); + } + else + { + throw new PSArgumentException("Insufficient Parameters specified to determine the term to retrieve"); + } + } + else + { + var termGroup = TermGroup.GetGroup(termStore); + var termSet = TermSet.GetTermSet(termGroup); + term = Identity.GetTerm(ClientContext, termStore, termSet, false, null); + } if (ParameterSpecified(nameof(Name))) { diff --git a/src/Commands/Utilities/TeamsUtility.cs b/src/Commands/Utilities/TeamsUtility.cs index 0aef08361..e3b0128eb 100644 --- a/src/Commands/Utilities/TeamsUtility.cs +++ b/src/Commands/Utilities/TeamsUtility.cs @@ -195,33 +195,6 @@ public static async Task NewTeamAsync(string accessToken, PnPConnection co } if (group != null) { - Team team = teamCI.ToTeam(group.Visibility.Value); - var retry = true; - var iteration = 0; - while (retry) - { - try - { - var teamSettings = await GraphHelper.PutAsync(connection, $"v1.0/groups/{group.Id}/team", team, accessToken); - if (teamSettings != null) - { - returnTeam = await GetTeamAsync(accessToken, connection, group.Id); - } - retry = false; - } - - catch (Exception) - { - await Task.Delay(5000); - iteration++; - } - - if (iteration > 10) // don't try more than 10 times - { - retry = false; - } - } - // Construct a list of all owners and members to add var teamOwnersAndMembers = new List(); if (owners != null && owners.Length > 0) @@ -248,7 +221,37 @@ public static async Task NewTeamAsync(string accessToken, PnPConnection co await GraphHelper.PostAsync(connection, $"v1.0/teams/{group.Id}/members/add", new { values = chunk.ToList() }, accessToken); } } + + Team team = teamCI.ToTeam(group.Visibility.Value); + var retry = true; + var iteration = 0; + while (retry) + { + try + { + var teamSettings = await GraphHelper.PutAsync(connection, $"v1.0/groups/{group.Id}/team", team, accessToken); + if (teamSettings != null) + { + returnTeam = await GetTeamAsync(accessToken, connection, group.Id); + } + retry = false; + } + catch (Exception) + { + await Task.Delay(5000); + iteration++; + if (iteration > 10) + { + throw; + } + } + + if (iteration > 10) // don't try more than 10 times + { + retry = false; + } + } } return returnTeam; } @@ -908,7 +911,7 @@ public static async Task AddTabAsync(PnPConnection connection, string a case TeamTabType.Planner: { tab.TeamsAppId = "com.microsoft.teamspace.tab.planner"; - tab.Configuration = new TeamTabConfiguration(); + tab.Configuration = new TeamTabConfiguration(); tab.Configuration.ContentUrl = contentUrl; break; } diff --git a/src/Commands/_debug/debug.ps1 b/src/Commands/_debug/debug.ps1 index b46697452..3e1037c2d 100644 --- a/src/Commands/_debug/debug.ps1 +++ b/src/Commands/_debug/debug.ps1 @@ -1,4 +1,6 @@ -$ProjectPath = $PSScriptRoot | Split-Path -Parent +$env:PNP_PS_DEBUG_IN_VISUAL_STUDIO = $true +$env:PNPPOWERSHELL_UPDATECHECK = "Off" +$ProjectPath = $PSScriptRoot | Split-Path -Parent $BinPath = "$ProjectPath\bin\Debug" $dlls = @("PnP.PowerShell.ALC.dll", "PnP.PowerShell.dll") diff --git a/version.txt b/version.txt index 808490d3e..7a033c079 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.27 \ No newline at end of file +2.2.40 \ No newline at end of file