diff --git a/CHANGELOG.md b/CHANGELOG.md index d6904cb44..571906794 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added `Restore-PnPDeletedContainer` cmdlet which recovers a deleted Container from the Recycle Bin. [#3661](https://github.com/pnp/powershell/pull/3661) - Added the ModerationSettings to be returned with `Get-PnPTeamsChannel` when passing in `-IncludeModerationSettings` and using `-Identity ` [#3580](https://github.com/pnp/powershell/pull/3580) - Added `AllowNewMessageFromBots`, `AllowNewMessageFromConnectors`, `ReplyRestriction` and `UserNewMessageRestriction` to `Set-PnPTeamsChannel` which allows setting the moderation settings on a Teams channel [#3580](https://github.com/pnp/powershell/pull/3580) +- Added `Get-PnPWebPermission` cmdlet which retrieves permission given by user for specific web. [#3685](https://github.com/pnp/powershell/pull/3685) +- Added `-HorizontalQuickLaunch` parameter to `Set-PnPWeb` cmdlet to allow navigation orientation to be horizontal. [#3722](https://github.com/pnp/powershell/pull/3722) +- Added `Set-PnPRetentionLabel` and `Reset-PnPRetentionLabel` cmdlets to support setting a retention label on one or more items [#3599](https://github.com/pnp/powershell/pull/3599) ### Fixed @@ -35,9 +38,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `Get-PnPFlow` cmdlet to use the newer Flow URLs instead of the old ARM URLs. [#3677](https://github.com/pnp/powershell/pull/3677) - Fixed `Get-PnPPowerPlatformConnector`, `Get-PnPPowerPlatformEnvironment`, `Get-PnPPowerApp`, `Add-PnPFlowOwner`, `Disable-PnPFlow`, `Enable-PnPFlow`, `Export-PnPFlow`, `Get-PnPFlowOwner`, `Get-PnPFlowRun`, `Remove-PnPFlow`, `Remove-PnPFlowOwner` , `Restart-PnPFlow` and `Stop-PnPFlowRun` cmdlets to use the new HTTP endpoints. [#3687](https://github.com/pnp/powershell/pull/3687) - Fixed `Add-PnPHubSiteAssociation` cmdlet to allow support for multi-geo scenario. [#3568](https://github.com/pnp/powershell/pull/3568) +- Fixed `Enable/Disable-PnPPageScheduling` cmdlet to also work with Viva connections enabled site. [#3713](https://github.com/pnp/powershell/pull/3713) + +### Changed + +- `-IsFavoriteByDefault` parameter is now obsolete in `Add-PnPTeamsChannel` cmdlet due to deprecation by Microsoft Graph API. [#3712](https://github.com/pnp/powershell/pull/3712) ### Contributors +- Konrad K. [wilecoyotegenius] +- Leon Armston [LeonArmston] +- Daniel Cecil [danielcecil] - Rohit Devmore [rohit404404] - Konrad K. [wilecoyotegenius] - Kunj Balkrishna Sangani [kunj-sangani] @@ -92,10 +103,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Added support for executing the 'Invoke-PnPSPRestMethod' cmdlet in a batch [#3565](https://github.com/pnp/powershell/pull/3565) - Added `Get-PnPSiteSetVersionPolicyProgress` cmdlet which allows for getting the progress of setting a version policy for existing document libraries on a site [#3564](https://github.com/pnp/powershell/pull/3564) - Added `EnableSensitivityLabelForPDF` to `Set-PnPTenant` and `Get-PnPTenant` [#3581](https://github.com/pnp/powershell/pull/3581) +- Changed `Restore-PnPRecycleBinItem` , made `-Identity` parameter as non-mandatory. [#2499](https://github.com/pnp/powershell/pull/2499) - Added the ability to set Manage and FullControl permissions directly when using Sites.Selected with `Grant-PnPAzureADAppSitePermission` [#3617](https://github.com/pnp/powershell/pull/3617) - Added `Remove-PnPMicrosoft365GroupPhoto` cmdlet which allows removal of profile picture of M365 Group. [#3607](https://github.com/pnp/powershell/pull/3607) - ### Fixed - Fixed `Add-PnPContentTypeToList` cmdlet to better handle piped lists. [#3244](https://github.com/pnp/powershell/pull/3244) @@ -448,7 +459,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Improved `Remove-PnPFieldFromContentType` cmdlet to ensure proper null check for non-existing fields. It will now throw proper `Field not found` error. [#2407](https://github.com/pnp/powershell/pull/2407) - Changed the Microsoft 365 Groups cmdlets to use the `v1.0` endpoint instead of the `beta` [#2426](https://github.com/pnp/powershell/pull/2426) - Changed `Add-PnPMicrosoft365GroupToSite` to longer require the `-Url` parameter to be specified. If its not provided, the currently connected to site will be groupified. [#2496](https://github.com/pnp/powershell/pull/2496) -- Changed `Restore-PnPRecycleBinItem` , made `-Identity` parameter as non-mandatory. [#2499](https://github.com/pnp/powershell/pull/2499) ### Removed diff --git a/MIGRATE-2.0-to-3.0.md b/MIGRATE-2.0-to-3.0.md new file mode 100644 index 000000000..b606bd8ac --- /dev/null +++ b/MIGRATE-2.0-to-3.0.md @@ -0,0 +1,55 @@ +# Updating from PnP PowerShell 2.x to 3.x + +_This is a draft document, version 3 is not yet available_ + +The 3.x version of PnP PowerShell is based exclusively on .NET 8.0, which means that it will not work on older PowerShell editions like PowerShell 5.1, ISE or PowerShell 7.3 or older. PowerShell 7.4 or later is required. + +- The 3.x version of PnP PowerShell will work only on PowerShell 7.4 or later versions. + +## Steps to update from 2.x to 3.x + +- Download and install the latest PowerShell version from [this GitHub releases link](https://aka.ms/powershell-release?tag=lts) + +Or + +- For Windows environments, please use [this link](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-windows) + +- For Linux based environments, please use [this link](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-linux) + +- For Mac OS envoronments, please use [this link](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-macos) + +Once the PowerShell 7.4 or later is downloaded and installed in the environment, you can install the PnP PowerShell module like you normally do. + +```powershell +Install-Module -Name "PnP.PowerShell" +``` + +If you want to install or update to the latest nightly built prerelease of PnP PowerShell, run: + +```powershell +Install-Module -Name "PnP.PowerShell" -AllowPrerelease +``` + +## Changes needed in Azure DevOps/GitHub Actions/Pipelines + +If you are using PnP PowerShell in Azure Devops, GitHub Actions or other pipeline infrastructure, you will have to update your PowerShell version from v5 to v7.4 or later. + +Recommend referring to these 2 links: + +- [DevOps Snack: Change PowerShell version in YAML](https://microsoft-bitools.blogspot.com/2021/02/devops-snack-change-powershell-version.html) +- [How to enable PowerShell core in Azure Pipeline?](https://theautomationcode.com/how-to-enable-powershell-core-in-azure-pipeline/) + +## Breaking changes + +| **Cmdlet** | **Comment** | +| ----------- | ---------------------- | +| Get-PnPRetentionLabel | The `Get-PnPRetentionLabel` cmdlet has been renamed to `Get-PnPTenantRetentionLabel` | +| Get-PnPLabel | The `Get-PnPLabel` cmdlet has been renamed to `Get-PnRetentionLabel` | + +## Other notable changes + +- ... + +## Changes to output type + +- ... diff --git a/documentation/Add-PnPTeamsChannel.md b/documentation/Add-PnPTeamsChannel.md index 7eb7d995a..46db3026c 100644 --- a/documentation/Add-PnPTeamsChannel.md +++ b/documentation/Add-PnPTeamsChannel.md @@ -99,7 +99,8 @@ Accept wildcard characters: False ``` ### -IsFavoriteByDefault -Allows you to specify if the channel is by default visible for members +Allows you to specify if the channel is by default visible for members. +**This parameter is obsolete. [Microsoft Graph API docs](https://learn.microsoft.com/en-us/graph/api/resources/channel?view=graph-rest-1.0#properties) mention that it only works when you create a channel in Teams creation request. It will be removed in a future version.** ```yaml Type: Boolean @@ -156,4 +157,4 @@ Accept wildcard characters: False ## RELATED LINKS -[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) \ No newline at end of file +[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) diff --git a/documentation/Export-PnPPage.md b/documentation/Export-PnPPage.md index 40566c65d..37ff5cab1 100644 --- a/documentation/Export-PnPPage.md +++ b/documentation/Export-PnPPage.md @@ -33,6 +33,13 @@ Export-PnPPage -Identity Home.aspx Exports the page 'Home.aspx' to a new PnP Provisioning Template +### EXAMPLE 2 +```powershell +Export-PnPPage -Identity HR/Home.aspx -Out template.pnp +``` + +Exports the page 'Home.aspx' to a new PnP Provisioning Template + ## PARAMETERS ### -Configuration @@ -93,7 +100,7 @@ Accept wildcard characters: False ``` ### -Identity -The name of the page +The name/identity of the page. This can be a page instance or the filename of the page. I.e. if the page is called MyPage.aspx and is located in the root of the Site Pages library, provide "MyPage" or "MyPage.aspx". If the page is called MyOtherPage.aspx and is located inside a subfolder called HR located in the root of the Site Pages library, provide "HR/MyOtherPage" or "HR/MyOtherPage.aspx ```yaml Type: ClientSidePagePipeBind diff --git a/documentation/Get-PnPSiteSetVersionPolicyProgress.md b/documentation/Get-PnPSiteVersionPolicyProgress.md similarity index 85% rename from documentation/Get-PnPSiteSetVersionPolicyProgress.md rename to documentation/Get-PnPSiteVersionPolicyProgress.md index ae8903a0f..2fc54d287 100644 --- a/documentation/Get-PnPSiteSetVersionPolicyProgress.md +++ b/documentation/Get-PnPSiteVersionPolicyProgress.md @@ -2,12 +2,12 @@ Module Name: PnP.PowerShell schema: 2.0.0 applicable: SharePoint Online -online version: https://pnp.github.io/powershell/cmdlets/Get-PnPSiteSetVersionPolicyProgress.html +online version: https://pnp.github.io/powershell/cmdlets/Get-PnPSiteVersionPolicyProgress.html external help file: PnP.PowerShell.dll-Help.xml -title: Get-PnPSiteSetVersionPolicyProgress +title: Get-PnPSiteVersionPolicyProgress --- -# Get-PnPSiteSetVersionPolicyProgress +# Get-PnPSiteVersionPolicyProgress ## SYNOPSIS Get the progress of setting version policy for existing document libraries on the site. @@ -15,7 +15,7 @@ Get the progress of setting version policy for existing document libraries on th ## SYNTAX ```powershell -Get-PnPSiteSetVersionPolicyProgress [-Connection ] +Get-PnPSiteVersionPolicyProgress [-Connection ] ``` ## DESCRIPTION @@ -25,7 +25,7 @@ This cmdlet allows retrieval of the progress of setting version policy for exist ### EXAMPLE 1 ```powershell -Get-PnPSiteSetVersionPolicyProgress +Get-PnPSiteVersionPolicyProgress ``` Returns the progress of setting version policy for existing document libraries on the site. diff --git a/documentation/Get-PnPRetentionLabel.md b/documentation/Get-PnPTenantRetentionLabel.md similarity index 95% rename from documentation/Get-PnPRetentionLabel.md rename to documentation/Get-PnPTenantRetentionLabel.md index eaff541bc..af97c9ac8 100644 --- a/documentation/Get-PnPRetentionLabel.md +++ b/documentation/Get-PnPTenantRetentionLabel.md @@ -10,7 +10,7 @@ title: Get-PnPRetentionLabel # Get-PnPRetentionLabel ## SYNOPSIS -Gets the Microsoft Purview retention labels that are within the tenant +Gets the Microsoft Purview retention labels that are available within the tenant ## SYNTAX diff --git a/documentation/Get-PnPWebPermission.md b/documentation/Get-PnPWebPermission.md new file mode 100644 index 000000000..380f219f5 --- /dev/null +++ b/documentation/Get-PnPWebPermission.md @@ -0,0 +1,76 @@ +--- +Module Name: PnP.PowerShell +schema: 2.0.0 +applicable: SharePoint Online +online version: https://pnp.github.io/powershell/cmdlets/Get-PnPWebPermission.html +external help file: PnP.PowerShell.dll-Help.xml +title: Get-PnPWebPermission +--- + +# Get-PnPWebPermission + +## SYNOPSIS +Returns the explicit permissions for a specific SharePoint Web given a user or group by id. + +## SYNTAX + +```powershell +Get-PnPWebPermission [-Identity] -PrincipalId +``` + +## DESCRIPTION + +This cmdlet retrieves the web permissions (role definitions) for a specific user or group in a provided web. + +## EXAMPLES + +### EXAMPLE 1 +```powershell +Get-PnPWebPermission -Identity (Get-PnPWeb) -PrincipalId 60 +``` + +Returns the permissions for the SharePoint group with id for the current Web. + +### EXAMPLE 2 +```powershell +Get-PnPWebPermission -Identity "subsite" -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id +``` + +Returns the permissions for the SharePoint group called DemoGroup for a given subsite path. + +## PARAMETERS + + +### -Identity +The id, name or server relative url of the Web to retrieve the permissions for. + +```yaml +Type: WebPipeBand +Parameter Sets: (All) +Aliases: Name + +Required: False +Position: 0 +Default value: (CurrentWeb) +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PrincipalId +The id of a user or a SharePoint group. See Get-PnPUser and Get-PnPGroup. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: Name + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +## RELATED LINKS + +[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) diff --git a/documentation/Reset-PnPLabel.md b/documentation/Reset-PnPLabel.md deleted file mode 100644 index 93c0c86f3..000000000 --- a/documentation/Reset-PnPLabel.md +++ /dev/null @@ -1,90 +0,0 @@ ---- -Module Name: PnP.PowerShell -title: Reset-PnPLabel -schema: 2.0.0 -applicable: SharePoint Online -external help file: PnP.PowerShell.dll-Help.xml -online version: https://pnp.github.io/powershell/cmdlets/Reset-PnPLabel.html ---- - -# Reset-PnPLabel - -## SYNOPSIS -Resets a retention label on the specified list or library to None - -## SYNTAX - -```powershell -Reset-PnPLabel [-List] [-SyncToItems ] - [-Connection ] -``` - -## DESCRIPTION -Removes the retention label on a list or library and its items. Does not work for sensitivity labels. - -## EXAMPLES - -### EXAMPLE 1 -```powershell -Reset-PnPLabel -List "Demo List" -``` - -This resets an O365 label on the specified list or library to None - -### EXAMPLE 2 -```powershell -Reset-PnPLabel -List "Demo List" -SyncToItems $true -``` - -This resets an O365 label on the specified list or library to None and resets the label on all the items in the list and library except Folders and where the label has been manually or previously automatically assigned - -## PARAMETERS - -### -Connection -Optional connection to be used by the cmdlet. Retrieve the value for this parameter by either specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection. - -```yaml -Type: PnPConnection -Parameter Sets: (All) - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -List -The ID or Url of the list - -```yaml -Type: ListPipeBind -Parameter Sets: (All) - -Required: True -Position: 0 -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -SyncToItems -Reset label on existing items in the library - -```yaml -Type: Boolean -Parameter Sets: (All) - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - - - -## RELATED LINKS - -[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) - diff --git a/documentation/Reset-PnPRetentionLabel.md b/documentation/Reset-PnPRetentionLabel.md new file mode 100644 index 000000000..4cb98491a --- /dev/null +++ b/documentation/Reset-PnPRetentionLabel.md @@ -0,0 +1,147 @@ +--- +Module Name: PnP.PowerShell +title: Reset-PnPRetentionLabel +schema: 2.0.0 +applicable: SharePoint Online +external help file: PnP.PowerShell.dll-Help.xml +online version: https://pnp.github.io/powershell/cmdlets/Reset-PnPRetentionLabel.html +--- + +# Reset-PnPRetentionLabel + +## SYNOPSIS +Resets a retention label on the specified list or library to None, or resets a retention label on specified list items in a list or a library + +## SYNTAX + +### Reset on a list +```powershell +Reset-PnPRetentionLabel [-List] [-SyncToItems ] + [-Connection ] +``` + +### Reset on items in bulk +```powershell +Reset-PnPRetentionLabel [-List] -ItemIds > [-BatchSize ] + [-Connection ] [-Verbose] +``` + +## DESCRIPTION +Removes the retention label on a list or library and its items, or removes the retention label from specified items in a list or a library. Does not work for sensitivity labels. +When resetting retention label on specified items, cmdlet allows passing of unlimited number of items - items will be split and processed in batches (CSOM method SetComplianceTagOnBulkItems has a hard count limit on number of processed items in one go). If needed, batch size may be adjusted with BatchSize parameter. + +## EXAMPLES + +### EXAMPLE 1 +```powershell +Reset-PnPRetentionLabel -List "Demo List" +``` + +This resets an O365 label on the specified list or library to None + +### EXAMPLE 2 +```powershell +Reset-PnPRetentionLabel -List "Demo List" -SyncToItems $true +``` + +This resets an O365 label on the specified list or library to None and resets the label on all the items in the list and library except Folders and where the label has been manually or previously automatically assigned + +### EXAMPLE 3 +```powershell +Set-PnPRetentionLabel -List "Demo List" -ItemIds @(1,2,3) +``` + +This clears a retention label from items with ids 1, 2 and 3 on a list "Demo List" + +## PARAMETERS + +### -BatchSize +Optional batch size when resetting a label on specified items. + +```yaml +Type: Int32 +Parameter Sets: (BulkItems) + +Required: True +Position: Named +Default value: 25 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Connection +Optional connection to be used by the cmdlet. Retrieve the value for this parameter by either specifying -ReturnConnection on Connect-PnPOnline or by executing Get-PnPConnection. + +```yaml +Type: PnPConnection +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ItemIds +List of iist item IDs to reset label. + +```yaml +Type: List +Parameter Sets: (BulkItems) + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -List +The ID or Url of the list + +```yaml +Type: ListPipeBind +Parameter Sets: (All) + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -SyncToItems +Reset label on existing items in the library + +```yaml +Type: Boolean +Parameter Sets: (List) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Verbose +When provided, additional debug statements will be shown while executing the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False + + +## RELATED LINKS + +[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) +[Microsoft Learn article on applying retention labels](https://learn.microsoft.com/en-us/sharepoint/dev/apis/csom-methods-for-applying-retention-labels) + + diff --git a/documentation/Set-PnPListItem.md b/documentation/Set-PnPListItem.md index 4177bbfff..288ab9907 100644 --- a/documentation/Set-PnPListItem.md +++ b/documentation/Set-PnPListItem.md @@ -187,9 +187,9 @@ Accept wildcard characters: False Specifies the update type to use when updating the listitem. Possible values are "Update", "SystemUpdate", "UpdateOverwriteVersion". -* Update: Sets field values and creates a new version if versioning is enabled for the list -* SystemUpdate: Sets field values and does not create a new version. Any events on the list will trigger. -* UpdateOverwriteVersion: Sets field values and does not create a new version. No events on the list will trigger. +* **Update**: Sets field values and creates a new version if versioning is enabled for the list. The "Modified By" and "Modified" fields will be updated to reflect the time of the update and the user who made the change. +* **SystemUpdate**: Sets field values and does not create a new version. Any events on the list will trigger. The "Modified By" and "Modified" fields not updated and can not be set. +* **UpdateOverwriteVersion**: Sets field values and does not create a new version. No events on the list will trigger. The "Modified By" and "Modified" fields are not updated but can be set by passing the field values in the update. HINT: use 'Editor' to set the "Modified By" field. ```yaml Type: SwitchParameter diff --git a/documentation/Set-PnPLabel.md b/documentation/Set-PnPRetentionLabel.md similarity index 52% rename from documentation/Set-PnPLabel.md rename to documentation/Set-PnPRetentionLabel.md index 044e38e1c..164bba260 100644 --- a/documentation/Set-PnPLabel.md +++ b/documentation/Set-PnPRetentionLabel.md @@ -1,51 +1,80 @@ --- Module Name: PnP.PowerShell -title: Set-PnPLabel +title: Set-PnPRetentionLabel schema: 2.0.0 applicable: SharePoint Online external help file: PnP.PowerShell.dll-Help.xml -online version: https://pnp.github.io/powershell/cmdlets/Set-PnPLabel.html +online version: https://pnp.github.io/powershell/cmdlets/Set-PnPRetentionLabel.html --- -# Set-PnPLabel +# Set-PnPRetentionLabel ## SYNOPSIS -Sets a retention label on the specified list or library. Use Reset-PnPLabel to remove the label again. +Sets a retention label on the specified list or library, or on specified items within a list or library. Use ReSet-PnPRetentionLabel to remove the label again. ## SYNTAX +### Set on a list ```powershell -Set-PnPLabel [-List] -Label [-SyncToItems ] [-BlockDeletion ] +Set-PnPRetentionLabel [-List] -Label [-SyncToItems ] [-BlockDeletion ] [-BlockEdit ] [-Connection ] ``` +### Set on items in bulk +```powershell +Set-PnPRetentionLabel [-List] -Label -ItemIds > [-BatchSize ] + [-Connection ] [-Verbose] +``` + ## DESCRIPTION -Allows setting a retention label on a list or library and its items. Does not work for sensitivity labels. +Allows setting a retention label on a list or library and its items, or sets the retention label for specified items in a list or a library. Does not work for sensitivity labels. +When setting retention label to specified items, cmdlet allows passing of unlimited number of items - items will be split and processed in batches (CSOM method SetComplianceTagOnBulkItems has a hard count limit on number of processed items in one go). If needed, batch size may be adjusted with BatchSize parameter. ## EXAMPLES ### EXAMPLE 1 ```powershell -Set-PnPLabel -List "Demo List" -Label "Project Documentation" +Set-PnPRetentionLabel -List "Demo List" -Label "Project Documentation" ``` This sets an O365 label on the specified list or library. ### EXAMPLE 2 ```powershell -Set-PnPLabel -List "Demo List" -Label "Project Documentation" -SyncToItems $true +Set-PnPRetentionLabel -List "Demo List" -Label "Project Documentation" -SyncToItems $true ``` This sets an O365 label on the specified list or library and sets the label to all the items in the list and library as well. +### EXAMPLE 3 +```powershell +Set-PnPRetentionLabel -List "Demo List" -ItemIds @(1,2,3) -Label "My demo label" +``` + +Sets "My demo label" retention label for items with ids 1, 2 and 3 on a list "Demo List" + ## PARAMETERS +### -BatchSize +Optional batch size when setting a label on specified items. + +```yaml +Type: Int32 +Parameter Sets: (BulkItems) + +Required: True +Position: Named +Default value: 25 +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -BlockDeletion Block deletion of items in the library. This parameter has been deprecated because overriding Purview retention label settings has been deprecated in SharePoint Online. This parameter will be removed in the next major release. ```yaml Type: Boolean -Parameter Sets: (All) +Parameter Sets: (List) Required: False Position: Named @@ -59,7 +88,7 @@ Block editing of items in the library. This parameter has been deprecated becaus ```yaml Type: Boolean -Parameter Sets: (All) +Parameter Sets: (List) Required: False Position: Named @@ -81,6 +110,19 @@ Default value: None Accept pipeline input: False Accept wildcard characters: False ``` +### -ItemIds +List of iist item IDs to set label. + +```yaml +Type: List +Parameter Sets: (BulkItems) + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` ### -Label The name of the retention label @@ -115,7 +157,7 @@ Apply label to existing items in the library ```yaml Type: Boolean -Parameter Sets: (All) +Parameter Sets: (List) Required: False Position: Named @@ -124,9 +166,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Verbose +When provided, additional debug statements will be shown while executing the cmdlet. +```yaml +Type: SwitchParameter +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False ## RELATED LINKS [Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) +[Microsoft Learn article on applying retention labels](https://learn.microsoft.com/en-us/sharepoint/dev/apis/csom-methods-for-applying-retention-labels) diff --git a/documentation/Set-PnPSite.md b/documentation/Set-PnPSite.md index f646f79fe..6ac4b9a3d 100644 --- a/documentation/Set-PnPSite.md +++ b/documentation/Set-PnPSite.md @@ -47,14 +47,6 @@ Set-PnPSite [-Identity ] [-BlockDownloadPolicy ] [-ExcludeBlockDownloadPolicySiteOwners ] [-ExcludedBlockDownloadGroupIds ] [-ListsShowHeaderAndNavigation ] - [-EnableAutoExpirationVersionTrim ] - [-ExpireVersionsAfterDays ] - [-MajorVersions ] - [-MinorVersions ] - [-InheritTenantVPForNewDocLibs] - [-ApplyForNewLibs] - [-ApplyForExistingLibs] - [-CancelVPForExistingLibs] [-Connection ] ``` @@ -111,83 +103,6 @@ Set-PnPSite -NoScriptSite $false Allows custom script on a specific site. See [Allow or prevent custom script](https://learn.microsoft.com/sharepoint/allow-or-prevent-custom-script) for more information. -### EXAMPLE 7 -```powershell -Set-PnPSite -EnableAutoExpirationVersionTrim $true -``` - -Set AutoExpiration file version trim mode for a site. The new document libraries will use this version setting. Also create a request to set the file version trim mode as AutoExpiration for existing document libraries that enabled versioning. - -### EXAMPLE 8 -```powershell -Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200 -``` - -Set ExpireAfter file version trim mode for a site. The new document libraries will use this version setting. Also create a request to set the file version trim mode as ExpireAfter for existing document libraries that enabled versioning. - -### EXAMPLE 9 -```powershell -Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0 -``` - -Set NoExpiration file version trim mode for a site. The new document libraries will use this version setting. Also create a request to set the file version trim mode as NoExpiration for existing document libraries that enabled versioning. - -### EXAMPLE 10 -```powershell -Set-PnPSite -InheritTenantVPForNewDocLibs -``` - -Clear the file version setting on a site. The new document libraries will use the tenant level setting. - -### EXAMPLE 11 -```powershell -Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs -``` - -Set AutoExpiration file version trim mode for a site. The new document libraries will use this version setting. - -### EXAMPLE 12 -```powershell -Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs -``` - -Set ExpireAfter file version trim mode for a site. The new document libraries will use this version setting. - -### EXAMPLE 13 -```powershell -Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs -``` - -Set NoExpiration file version trim mode for a site. The new document libraries will use this version setting. - -### EXAMPLE 14 -```powershell -Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs -``` - -Create a request to set the file version trim mode as AutoExpiration for existing document libraries that enabled versioning. - -### EXAMPLE 15 -```powershell -Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs -``` - -Create a request to set the file version trim mode as ExpireAfter for existing document libraries that enabled versioning. - -### EXAMPLE 16 -```powershell -Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs -``` - -Create a request to set the file version trim mode as NoExpiration for existing document libraries that enabled versioning. - -### EXAMPLE 17 -```powershell -Set-PnPSite -CancelVPForExistingLibs -``` - -Cancel the existing request which sets the file version trim mode for existing document libraries on a site. - ## PARAMETERS ### -AllowSelfServiceUpgrade @@ -698,124 +613,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -EnableAutoExpirationVersionTrim -Enable or disable AutoExpiration version trim for the document libraries on the site. Set to $true to enable, $false to disable. - -Parameter ExpireVersionsAfterDays is required when EnableAutoExpirationVersionTrim is false. Set it to 0 for NoExpiration, set it to greater or equal to 30 for ExpireAfter. - -Parameter MajorVersions is required when EnableAutoExpirationVersionTrim is false. - -Parameter MinorVersions is required when EnableAutoExpirationVersionTrim is false and the setting is for document libraries that including existing ones. It is used when minor version is enabled on the document libraries. - -```yaml -Type: Boolean -Parameter Sets: Set Properties - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ExpireVersionsAfterDays -Work with parameter EnableAutoExpirationVersionTrim. Please see description in EnableAutoExpirationVersionTrim. - -```yaml -Type: UInt32 -Parameter Sets: Set Properties - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -MajorVersions -Work with parameter EnableAutoExpirationVersionTrim. Please see description in EnableAutoExpirationVersionTrim. - -```yaml -Type: UInt32 -Parameter Sets: Set Properties - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -MinorVersions -Work with parameter EnableAutoExpirationVersionTrim. Please see description in EnableAutoExpirationVersionTrim. - -```yaml -Type: UInt32 -Parameter Sets: Set Properties - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -InheritTenantVPForNewDocLibs -Clear the file version setting on a site. The new document libraries will use the tenant level setting. - -```yaml -Type: SwitchParameter -Parameter Sets: Set Properties - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ApplyForNewLibs -Set site version policy for new document libraries. Work with parameters EnableAutoExpirationVersionTrim, ExpireVersionsAfterDays, MajorVersions and MinorVersions. - -```yaml -Type: SwitchParameter -Parameter Sets: Set Properties - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ApplyForExistingLibs -Create a request to set the file version trim mode for existing document libraries that enabled versioning. Work with parameters EnableAutoExpirationVersionTrim, ExpireVersionsAfterDays, MajorVersions and MinorVersions. - -```yaml -Type: SwitchParameter -Parameter Sets: Set Properties - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -CancelVPForExistingLibs -Cancel the existing request which sets the file version trim mode for existing document libraries on a site. - -```yaml -Type: SwitchParameter -Parameter Sets: Set Properties - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ## RELATED LINKS [Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) diff --git a/documentation/Set-PnPSiteVersionPolicy.md b/documentation/Set-PnPSiteVersionPolicy.md new file mode 100644 index 000000000..d98c3b44a --- /dev/null +++ b/documentation/Set-PnPSiteVersionPolicy.md @@ -0,0 +1,232 @@ +--- +Module Name: PnP.PowerShell +title: Set-PnPSiteVersionPolicy +schema: 2.0.0 +applicable: SharePoint Online +external help file: PnP.PowerShell.dll-Help.xml +online version: https://pnp.github.io/powershell/cmdlets/Set-PnPSiteVersionPolicy.html +--- + +# Set-PnPSiteVersionPolicy + +## SYNOPSIS +Set file version policy related properties on the site. + +## SYNTAX + +```powershell +Set-PnPSiteVersionPolicy + [-EnableAutoExpirationVersionTrim ] + [-ExpireVersionsAfterDays ] + [-MajorVersions ] + [-MajorWithMinorVersions ] + [-InheritFromTenant] + [-ApplyToNewDocumentLibraries] + [-ApplyToExistingDocumentLibraries] + [-CancelForExistingDocumentLibraries] + [-Connection ] +``` + +## EXAMPLES + +### EXAMPLE 1 +```powershell +Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $true +``` + +Set AutoExpiration file version trim mode for a site. The new document libraries will use this version setting. Also create a request to set the file version trim mode as AutoExpiration for existing document libraries that enabled versioning. + +### EXAMPLE 2 +```powershell +Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MajorWithMinorVersions 10 -ExpireVersionsAfterDays 200 +``` + +Set ExpireAfter file version trim mode for a site. The new document libraries will use this version setting. Also create a request to set the file version trim mode as ExpireAfter for existing document libraries that enabled versioning. + +### EXAMPLE 3 +```powershell +Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MajorWithMinorVersions 20 -ExpireVersionsAfterDays 0 +``` + +Set NoExpiration file version trim mode for a site. The new document libraries will use this version setting. Also create a request to set the file version trim mode as NoExpiration for existing document libraries that enabled versioning. + +### EXAMPLE 4 +```powershell +Set-PnPSiteVersionPolicy -InheritFromTenant +``` + +Clear the file version setting on a site. The new document libraries will use the tenant level setting. + +### EXAMPLE 5 +```powershell +Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $true -ApplyToNewDocumentLibraries +``` + +Set AutoExpiration file version trim mode for a site. The new document libraries will use this version setting. + +### EXAMPLE 6 +```powershell +Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyToNewDocumentLibraries +``` + +Set ExpireAfter file version trim mode for a site. The new document libraries will use this version setting. + +### EXAMPLE 7 +```powershell +Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyToNewDocumentLibraries +``` + +Set NoExpiration file version trim mode for a site. The new document libraries will use this version setting. + +### EXAMPLE 8 +```powershell +Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $true -ApplyToExistingDocumentLibraries +``` + +Create a request to set the file version trim mode as AutoExpiration for existing document libraries that enabled versioning. + +### EXAMPLE 9 +```powershell +Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MajorWithMinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyToExistingDocumentLibraries +``` + +Create a request to set the file version trim mode as ExpireAfter for existing document libraries that enabled versioning. + +### EXAMPLE 10 +```powershell +Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MajorWithMinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyToExistingDocumentLibraries +``` + +Create a request to set the file version trim mode as NoExpiration for existing document libraries that enabled versioning. + +### EXAMPLE 11 +```powershell +Set-PnPSiteVersionPolicy -CancelForExistingDocumentLibraries +``` + +Cancel the existing request which sets the file version trim mode for existing document libraries on a site. + +## PARAMETERS + +### -EnableAutoExpirationVersionTrim +Enable or disable AutoExpiration version trim for the document libraries on the site. Set to $true to enable, $false to disable. + +Parameter ExpireVersionsAfterDays is required when EnableAutoExpirationVersionTrim is false. Set it to 0 for NoExpiration, set it to greater or equal to 30 for ExpireAfter. + +Parameter MajorVersions is required when EnableAutoExpirationVersionTrim is false. + +Parameter MajorWithMinorVersions is required when EnableAutoExpirationVersionTrim is false and the setting is for document libraries that including existing ones. It is used when minor version is enabled on the document libraries. + +```yaml +Type: Boolean +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExpireVersionsAfterDays +Expire the version after the days. Work with parameter EnableAutoExpirationVersionTrim. Please see description in EnableAutoExpirationVersionTrim. + +```yaml +Type: UInt32 +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MajorVersions +Maximum major versions to keep. Work with parameter EnableAutoExpirationVersionTrim. Please see description in EnableAutoExpirationVersionTrim. + +```yaml +Type: UInt32 +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MajorWithMinorVersions +Maximum major versions for which to keep minor versions. Work with parameter EnableAutoExpirationVersionTrim. Please see description in EnableAutoExpirationVersionTrim. + +```yaml +Type: UInt32 +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InheritFromTenant +Clear the file version setting on a site. The new document libraries will use the tenant level setting. + +```yaml +Type: SwitchParameter +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ApplyToNewDocumentLibraries +Set site version policy for new document libraries. Work with parameters EnableAutoExpirationVersionTrim, ExpireVersionsAfterDays, MajorVersions and MajorWithMinorVersions. + +```yaml +Type: SwitchParameter +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ApplyToExistingDocumentLibraries +Create a request to set the file version trim mode for existing document libraries that enabled versioning. Work with parameters EnableAutoExpirationVersionTrim, ExpireVersionsAfterDays, MajorVersions and MajorWithMinorVersions. + +```yaml +Type: SwitchParameter +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CancelForExistingDocumentLibraries +Cancel the existing request which sets the file version trim mode for existing document libraries on a site. + +```yaml +Type: SwitchParameter +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +## RELATED LINKS + +[Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) + diff --git a/documentation/Set-PnPWeb.md b/documentation/Set-PnPWeb.md index 0237eb75b..dbf6341ec 100644 --- a/documentation/Set-PnPWeb.md +++ b/documentation/Set-PnPWeb.md @@ -18,7 +18,7 @@ Sets properties on a web Set-PnPWeb [-SiteLogoUrl ] [-AlternateCssUrl ] [-Title ] [-Description ] [-MasterUrl ] [-CustomMasterUrl ] [-QuickLaunchEnabled] [-MembersCanShare] [-NoCrawl] [-HeaderLayout ] [-HeaderEmphasis ] [-NavAudienceTargetingEnabled] - [-MegaMenuEnabled] [-DisablePowerAutomate] [-CommentsOnSitePagesDisabled] [-HideTitleInHeader] + [-MegaMenuEnabled] [-DisablePowerAutomate] [-CommentsOnSitePagesDisabled] [-HideTitleInHeader] [-HorizontalQuickLaunch] [-Connection ] ``` @@ -299,6 +299,24 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -HorizontalQuickLaunch + +Change navigation orientation to horizontal + +Set -HorizontalQuickLaunch :$false to change navigation to vertical + +```yaml +Type: SwitchParameter +Parameter Sets: (All) + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + ## RELATED LINKS [Microsoft 365 Patterns and Practices](https://aka.ms/m365pnp) diff --git a/pnpframework_hash.txt b/pnpframework_hash.txt index c4bcbdfe9..c9eedd5fc 100644 --- a/pnpframework_hash.txt +++ b/pnpframework_hash.txt @@ -1 +1 @@ -d20f305ecfa29a3c0cc0468cd27176748168e6e3 \ No newline at end of file +2e6db5756a8e3b62b3b89a764ce0f81ffe2ee0ec \ No newline at end of file diff --git a/pnppowershell_hash.txt b/pnppowershell_hash.txt index 38eb1c95f..5cddcf4e8 100644 --- a/pnppowershell_hash.txt +++ b/pnppowershell_hash.txt @@ -1 +1 @@ -65c7879482b4b5de204d6c6ecdd77be2bb37cd77 \ No newline at end of file +254eeb4f01358051c6a3bff52bd852ceff38d777 \ No newline at end of file diff --git a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json index b022b4974..276fa37cf 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,9740 +1,9764 @@ [ { - "CommandName": "Add-PnPAlert", - "Rank": 1, + "Command": "Add-PnPAlert -List \"Demo List\"", "Id": 1, - "Command": "Add-PnPAlert -List \"Demo List\"" + "Rank": 1, + "CommandName": "Add-PnPAlert" }, { - "CommandName": "Add-PnPAlert", - "Rank": 2, + "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)", "Id": 2, - "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)" + "Rank": 2, + "CommandName": "Add-PnPAlert" }, { - "CommandName": "Add-PnPAlert", - "Rank": 3, + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 3, - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Rank": 3, + "CommandName": "Add-PnPAlert" }, { - "CommandName": "Add-PnPAlert", - "Rank": 4, + "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\" -Frequency Daily -Time ((Get-Date).AddDays(1))", "Id": 4, - "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\" -Frequency Daily -Time ((Get-Date).AddDays(1))" + "Rank": 4, + "CommandName": "Add-PnPAlert" }, { - "CommandName": "Add-PnPApp", - "Rank": 1, + "Command": "Add-PnPApp -Path ./myapp.sppkg", "Id": 5, - "Command": "Add-PnPApp -Path ./myapp.sppkg" + "Rank": 1, + "CommandName": "Add-PnPApp" }, { - "CommandName": "Add-PnPApp", - "Rank": 2, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish", "Id": 6, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" + "Rank": 2, + "CommandName": "Add-PnPApp" }, { - "CommandName": "Add-PnPApp", - "Rank": 3, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish", "Id": 7, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" + "Rank": 3, + "CommandName": "Add-PnPApp" }, { - "CommandName": "Add-PnPApp", - "Rank": 4, + "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment", "Id": 8, - "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" + "Rank": 4, + "CommandName": "Add-PnPApp" }, { - "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-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}" + "Rank": 1, + "CommandName": "Add-PnPApplicationCustomizer" }, { - "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 1, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"", "Id": 10, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" + "Rank": 1, + "CommandName": "Add-PnPAvailableSiteClassification" }, { - "CommandName": "Add-PnPAvailableSiteClassification", - "Rank": 2, + "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"", "Id": 11, - "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" + "Rank": 2, + "CommandName": "Add-PnPAvailableSiteClassification" }, { - "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\"" + "Rank": 1, + "CommandName": "Add-PnPAzureADGroupMember" }, { - "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 2, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 13, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Rank": 2, + "CommandName": "Add-PnPAzureADGroupMember" }, { - "CommandName": "Add-PnPAzureADGroupMember", - "Rank": 3, + "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 14, - "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "Rank": 3, + "CommandName": "Add-PnPAzureADGroupMember" }, { - "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\"" + "Rank": 1, + "CommandName": "Add-PnPAzureADGroupOwner" }, { - "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 2, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 16, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Rank": 2, + "CommandName": "Add-PnPAzureADGroupOwner" }, { - "CommandName": "Add-PnPAzureADGroupOwner", - "Rank": 3, + "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"", "Id": 17, - "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" + "Rank": 3, + "CommandName": "Add-PnPAzureADGroupOwner" }, { - "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 \"Directory.Read.All\" -BuiltInType MicrosoftGraph" + "Rank": 1, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", - "Rank": 2, + "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"", "Id": 19, - "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"" + "Rank": 2, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole" }, { - "CommandName": "Add-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 $ct" + "Rank": 1, + "CommandName": "Add-PnPContentType" }, { - "CommandName": "Add-PnPContentType", - "Rank": 2, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType (Get-PnPContentType -Identity 0x0101) -DocumentTemplate \"/_cts/Project Document/template.docx\"", "Id": 21, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType (Get-PnPContentType -Identity 0x0101) -DocumentTemplate \"/_cts/Project Document/template.docx\"" + "Rank": 2, + "CommandName": "Add-PnPContentType" }, { - "CommandName": "Add-PnPContentType", - "Rank": 3, + "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"", "Id": 22, - "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" + "Rank": 3, + "CommandName": "Add-PnPContentType" }, { - "CommandName": "Add-PnPContentType", - "Rank": 4, + "Command": "Add-PnPContentType -Name \"Project Item\"", "Id": 23, - "Command": "Add-PnPContentType -Name \"Project Item\"" + "Rank": 4, + "CommandName": "Add-PnPContentType" }, { - "CommandName": "Add-PnPContentType", - "Rank": 5, + "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB", "Id": 24, - "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" + "Rank": 5, + "CommandName": "Add-PnPContentType" }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 1, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"", "Id": 25, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" + "Rank": 1, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "CommandName": "Add-PnPContentTypesFromContentTypeHub", - "Rank": 2, + "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR", "Id": 26, - "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" + "Rank": 2, + "CommandName": "Add-PnPContentTypesFromContentTypeHub" }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 1, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Id": 27, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Rank": 1, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "CommandName": "Add-PnPContentTypeToDocumentSet", - "Rank": 2, + "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Id": 28, - "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Rank": 2, + "CommandName": "Add-PnPContentTypeToDocumentSet" }, { - "CommandName": "Add-PnPContentTypeToList", - "Rank": 1, + "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType", "Id": 29, - "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" + "Rank": 1, + "CommandName": "Add-PnPContentTypeToList" }, { - "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-PnPCustomAction -Title \"CollabFooter\" -Name \"CollabFooter\" -Location \"ClientSideExtension.ApplicationCustomizer\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" + "Rank": 1, + "CommandName": "Add-PnPCustomAction" }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 1, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'", "Id": 31, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" + "Rank": 1, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "CommandName": "Add-PnPDataRowsToSiteTemplate", - "Rank": 2, + "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity", "Id": 32, - "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" + "Rank": 2, + "CommandName": "Add-PnPDataRowsToSiteTemplate" }, { - "CommandName": "Add-PnPDocumentSet", - "Rank": 1, + "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"", "Id": 33, - "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" + "Rank": 1, + "CommandName": "Add-PnPDocumentSet" }, { - "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 -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous" + "Rank": 1, + "CommandName": "Add-PnPEventReceiver" }, { - "CommandName": "Add-PnPEventReceiver", - "Rank": 2, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous", "Id": 35, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" + "Rank": 2, + "CommandName": "Add-PnPEventReceiver" }, { - "CommandName": "Add-PnPEventReceiver", - "Rank": 3, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site", "Id": 36, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site" + "Rank": 3, + "CommandName": "Add-PnPEventReceiver" }, { - "CommandName": "Add-PnPEventReceiver", - "Rank": 4, + "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web", "Id": 37, - "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web" + "Rank": 4, + "CommandName": "Add-PnPEventReceiver" }, { - "CommandName": "Add-PnPField", - "Rank": 1, + "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"", "Id": 38, - "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" + "Rank": 1, + "CommandName": "Add-PnPField" }, { - "CommandName": "Add-PnPField", - "Rank": 2, + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"", "Id": 39, - "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"" + "Rank": 2, + "CommandName": "Add-PnPField" }, { - "CommandName": "Add-PnPField", - "Rank": 3, + "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"", "Id": 40, - "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"" + "Rank": 3, + "CommandName": "Add-PnPField" }, { - "CommandName": "Add-PnPField", - "Rank": 4, + "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"", "Id": 41, - "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" + "Rank": 4, + "CommandName": "Add-PnPField" }, { - "CommandName": "Add-PnPField", - "Rank": 5, + "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"", "Id": 42, - "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" + "Rank": 5, + "CommandName": "Add-PnPField" }, { - "CommandName": "Add-PnPField", - "Rank": 6, + "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"", "Id": 43, - "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" + "Rank": 6, + "CommandName": "Add-PnPField" }, { - "CommandName": "Add-PnPFieldToContentType", - "Rank": 1, + "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Id": 44, - "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Rank": 1, + "CommandName": "Add-PnPFieldToContentType" }, { - "CommandName": "Add-PnPFile", - "Rank": 1, + "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"", "Id": 45, - "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" + "Rank": 1, + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 2, + "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"", "Id": 46, - "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" + "Rank": 2, + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 3, + "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}", "Id": 47, - "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}" + "Rank": 3, + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 4, + "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}", "Id": 48, - "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}" + "Rank": 4, + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 5, + "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}", "Id": 49, - "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}" + "Rank": 5, + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 6, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}", "Id": 50, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}" + "Rank": 6, + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 7, + "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"", "Id": 51, - "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" + "Rank": 7, + "CommandName": "Add-PnPFile" }, { - "CommandName": "Add-PnPFile", - "Rank": 8, + "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'", "Id": 52, - "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" + "Rank": 8, + "CommandName": "Add-PnPFile" }, { - "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\"" + "Rank": 1, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 2, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"", "Id": 54, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" + "Rank": 2, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "CommandName": "Add-PnPFileAnonymousSharingLink", - "Rank": 3, + "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)", "Id": 55, - "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" + "Rank": 3, + "CommandName": "Add-PnPFileAnonymousSharingLink" }, { - "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\"" + "Rank": 1, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "CommandName": "Add-PnPFileOrganizationalSharingLink", - "Rank": 2, + "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit", "Id": 57, - "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" + "Rank": 2, + "CommandName": "Add-PnPFileOrganizationalSharingLink" }, { - "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" + "Rank": 1, + "CommandName": "Add-PnPFileSharingInvite" }, { - "CommandName": "Add-PnPFileSharingInvite", - "Rank": 2, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Id": 59, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" + "Rank": 2, + "CommandName": "Add-PnPFileSharingInvite" }, { - "CommandName": "Add-PnPFileSharingInvite", - "Rank": 3, + "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "Id": 60, - "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" + "Rank": 3, + "CommandName": "Add-PnPFileSharingInvite" }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 1, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"", "Id": 61, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" + "Rank": 1, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 2, + "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"", "Id": 62, - "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" + "Rank": 2, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 3, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false", "Id": 63, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" + "Rank": 3, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 4, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container", "Id": 64, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" + "Rank": 4, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "CommandName": "Add-PnPFileToSiteTemplate", - "Rank": 5, + "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"", "Id": 65, - "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" + "Rank": 5, + "CommandName": "Add-PnPFileToSiteTemplate" }, { - "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\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1, + "CommandName": "Add-PnPFileUserSharingLink" }, { - "CommandName": "Add-PnPFileUserSharingLink", - "Rank": 2, + "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 67, - "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 2, + "CommandName": "Add-PnPFileUserSharingLink" }, { - "CommandName": "Add-PnPFlowOwner", - "Rank": 1, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit", "Id": 68, - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit" + "Rank": 1, + "CommandName": "Add-PnPFlowOwner" }, { - "CommandName": "Add-PnPFlowOwner", - "Rank": 2, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView", "Id": 69, - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView" + "Rank": 2, + "CommandName": "Add-PnPFlowOwner" }, { - "CommandName": "Add-PnPFlowOwner", - "Rank": 3, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare", "Id": 70, - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare" + "Rank": 3, + "CommandName": "Add-PnPFlowOwner" }, { - "CommandName": "Add-PnPFlowOwner", - "Rank": 4, + "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit", "Id": 71, - "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit" + "Rank": 4, + "CommandName": "Add-PnPFlowOwner" }, { - "CommandName": "Add-PnPFolder", - "Rank": 1, + "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Id": 72, - "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Rank": 1, + "CommandName": "Add-PnPFolder" }, { - "CommandName": "Add-PnPFolder", - "Rank": 2, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"", "Id": 73, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" + "Rank": 2, + "CommandName": "Add-PnPFolder" }, { - "CommandName": "Add-PnPFolder", - "Rank": 3, + "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"", "Id": 74, - "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" + "Rank": 3, + "CommandName": "Add-PnPFolder" }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 1, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 75, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 1, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 2, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"", "Id": 76, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" + "Rank": 2, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "CommandName": "Add-PnPFolderAnonymousSharingLink", - "Rank": 3, + "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)", "Id": 77, - "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)" + "Rank": 3, + "CommandName": "Add-PnPFolderAnonymousSharingLink" }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 1, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 78, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 1, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "CommandName": "Add-PnPFolderOrganizationalSharingLink", - "Rank": 2, + "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit", "Id": 79, - "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" + "Rank": 2, + "CommandName": "Add-PnPFolderOrganizationalSharingLink" }, { - "CommandName": "Add-PnPFolderSharingInvite", - "Rank": 1, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn", "Id": 80, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" + "Rank": 1, + "CommandName": "Add-PnPFolderSharingInvite" }, { - "CommandName": "Add-PnPFolderSharingInvite", - "Rank": 2, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner", "Id": 81, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" + "Rank": 2, + "CommandName": "Add-PnPFolderSharingInvite" }, { - "CommandName": "Add-PnPFolderSharingInvite", - "Rank": 3, + "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)", "Id": 82, - "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" + "Rank": 3, + "CommandName": "Add-PnPFolderSharingInvite" }, { - "CommandName": "Add-PnPFolderUserSharingLink", - "Rank": 1, + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 83, - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1, + "CommandName": "Add-PnPFolderUserSharingLink" }, { - "CommandName": "Add-PnPFolderUserSharingLink", - "Rank": 2, + "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 84, - "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 2, + "CommandName": "Add-PnPFolderUserSharingLink" }, { - "CommandName": "Add-PnPGroupMember", - "Rank": 1, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Id": 85, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Rank": 1, + "CommandName": "Add-PnPGroupMember" }, { - "CommandName": "Add-PnPGroupMember", - "Rank": 2, + "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5", "Id": 86, - "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" + "Rank": 2, + "CommandName": "Add-PnPGroupMember" }, { - "CommandName": "Add-PnPHtmlPublishingPageLayout", - "Rank": 1, + "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Id": 87, - "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" + "Rank": 1, + "CommandName": "Add-PnPHtmlPublishingPageLayout" }, { - "CommandName": "Add-PnPHubSiteAssociation", - "Rank": 1, + "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"", "Id": 88, - "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" + "Rank": 1, + "CommandName": "Add-PnPHubSiteAssociation" }, { - "CommandName": "Add-PnPHubToHubAssociation", - "Rank": 1, + "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443", "Id": 89, - "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" + "Rank": 1, + "CommandName": "Add-PnPHubToHubAssociation" }, { - "CommandName": "Add-PnPHubToHubAssociation", - "Rank": 2, + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"", "Id": 90, - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" + "Rank": 2, + "CommandName": "Add-PnPHubToHubAssociation" }, { - "CommandName": "Add-PnPHubToHubAssociation", - "Rank": 3, + "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/toplevelhub\"\r ; Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/thirdlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\"", "Id": 91, - "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/toplevelhub\"\r ; Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/thirdlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\"" + "Rank": 3, + "CommandName": "Add-PnPHubToHubAssociation" }, { - "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 1, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site", "Id": 92, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" + "Rank": 1, + "CommandName": "Add-PnPJavaScriptBlock" }, { - "CommandName": "Add-PnPJavaScriptBlock", - "Rank": 2, + "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''", "Id": 93, - "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" + "Rank": 2, + "CommandName": "Add-PnPJavaScriptBlock" }, { - "CommandName": "Add-PnPJavaScriptLink", - "Rank": 1, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site", "Id": 94, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site" + "Rank": 1, + "CommandName": "Add-PnPJavaScriptLink" }, { - "CommandName": "Add-PnPJavaScriptLink", - "Rank": 2, + "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js", "Id": 95, - "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" + "Rank": 2, + "CommandName": "Add-PnPJavaScriptLink" }, { - "CommandName": "Add-PnPListDesign", - "Rank": 1, + "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"", "Id": 96, - "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" + "Rank": 1, + "CommandName": "Add-PnPListDesign" }, { - "CommandName": "Add-PnPListDesign", - "Rank": 2, + "Command": "Add-PnPListDesign -Title \"My Company Design\" -SiteScriptIds \"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -ListColor Orange -ListIcon BullseyeTarget -ThumbnailUrl \"https://contoso.sharepoint.com/SiteAssets/site-thumbnail.png\"", "Id": 97, - "Command": "Add-PnPListDesign -Title \"My Company Design\" -SiteScriptIds \"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -ListColor Orange -ListIcon BullseyeTarget -ThumbnailUrl \"https://contoso.sharepoint.com/SiteAssets/site-thumbnail.png\"" + "Rank": 2, + "CommandName": "Add-PnPListDesign" }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 1, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'", "Id": 98, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" + "Rank": 1, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 2, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive", "Id": 99, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" + "Rank": 2, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "CommandName": "Add-PnPListFoldersToSiteTemplate", - "Rank": 3, + "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity", "Id": 100, - "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" + "Rank": 3, + "CommandName": "Add-PnPListFoldersToSiteTemplate" }, { - "CommandName": "Add-PnPListItem", - "Rank": 1, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 101, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Rank": 1, + "CommandName": "Add-PnPListItem" }, { - "CommandName": "Add-PnPListItem", - "Rank": 2, + "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 102, - "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Rank": 2, + "CommandName": "Add-PnPListItem" }, { - "CommandName": "Add-PnPListItem", - "Rank": 3, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}", "Id": 103, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" + "Rank": 3, + "CommandName": "Add-PnPListItem" }, { - "CommandName": "Add-PnPListItem", - "Rank": 4, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"", "Id": 104, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" + "Rank": 4, + "CommandName": "Add-PnPListItem" }, { - "CommandName": "Add-PnPListItem", - "Rank": 5, + "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"", "Id": 105, - "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" + "Rank": 5, + "CommandName": "Add-PnPListItem" }, { - "CommandName": "Add-PnPListItemAttachment", - "Rank": 1, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4", "Id": 106, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" + "Rank": 1, + "CommandName": "Add-PnPListItemAttachment" }, { - "CommandName": "Add-PnPListItemAttachment", - "Rank": 2, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'", "Id": 107, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" + "Rank": 2, + "CommandName": "Add-PnPListItemAttachment" }, { - "CommandName": "Add-PnPListItemAttachment", - "Rank": 3, + "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream", "Id": 108, - "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" + "Rank": 3, + "CommandName": "Add-PnPListItemAttachment" }, { - "CommandName": "Add-PnPListItemComment", - "Rank": 1, + "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"", "Id": 109, - "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" + "Rank": 1, + "CommandName": "Add-PnPListItemComment" }, { - "CommandName": "Add-PnPMasterPage", - "Rank": 1, + "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"", "Id": 110, - "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" + "Rank": 1, + "CommandName": "Add-PnPMasterPage" }, { - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Rank": 1, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 111, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { - "CommandName": "Add-PnPMicrosoft365GroupMember", - "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 112, - "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupMember" }, { - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Rank": 1, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 113, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { - "CommandName": "Add-PnPMicrosoft365GroupOwner", - "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting", "Id": 114, - "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" + "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupOwner" }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 1, + "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"", "Id": 115, - "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"" + "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 2, + "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"", "Id": 116, - "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" + "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "CommandName": "Add-PnPMicrosoft365GroupToSite", - "Rank": 3, + "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage", "Id": 117, - "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" + "Rank": 3, + "CommandName": "Add-PnPMicrosoft365GroupToSite" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 1, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"", "Id": 118, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" + "Rank": 1, + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 2, + "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012", "Id": 119, - "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012" + "Rank": 2, + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 3, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First", "Id": 120, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" + "Rank": 3, + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 4, + "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External", "Id": 121, - "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" + "Rank": 4, + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 5, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"", "Id": 122, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" + "Rank": 5, + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 6, + "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"", "Id": 123, - "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" + "Rank": 6, + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 7, + "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012", "Id": 124, - "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" + "Rank": 7, + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPNavigationNode", - "Rank": 8, + "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab", "Id": 125, - "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" + "Rank": 8, + "CommandName": "Add-PnPNavigationNode" }, { - "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 1, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"", "Id": 126, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" + "Rank": 1, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 2, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"", "Id": 127, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"" + "Rank": 2, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "CommandName": "Add-PnPOrgAssetsLibrary", - "Rank": 3, + "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private", "Id": 128, - "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" + "Rank": 3, + "CommandName": "Add-PnPOrgAssetsLibrary" }, { - "CommandName": "Add-PnPOrgNewsSite", - "Rank": 1, + "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"", "Id": 129, - "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" + "Rank": 1, + "CommandName": "Add-PnPOrgNewsSite" }, { - "CommandName": "Add-PnPPage", - "Rank": 1, + "Command": "Add-PnPPage -Name \"NewPage\"", "Id": 130, - "Command": "Add-PnPPage -Name \"NewPage\"" + "Rank": 1, + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 2, + "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"", "Id": 131, - "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" + "Rank": 2, + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 3, + "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"", "Id": 132, - "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" + "Rank": 3, + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 4, + "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template", "Id": 133, - "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" + "Rank": 4, + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 5, + "Command": "Add-PnPPage -Name \"Folder/NewPage\"", "Id": 134, - "Command": "Add-PnPPage -Name \"Folder/NewPage\"" + "Rank": 5, + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 6, + "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock", "Id": 135, - "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" + "Rank": 6, + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 7, + "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)", "Id": 136, - "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" + "Rank": 7, + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 8, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate", "Id": 137, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate" + "Rank": 8, + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 9, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043", "Id": 138, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" + "Rank": 9, + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPage", - "Rank": 10, + "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035", "Id": 139, - "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" + "Rank": 10, + "CommandName": "Add-PnPPage" }, { - "CommandName": "Add-PnPPageImageWebPart", - "Rank": 1, + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"", "Id": 140, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" + "Rank": 1, + "CommandName": "Add-PnPPageImageWebPart" }, { - "CommandName": "Add-PnPPageImageWebPart", - "Rank": 2, + "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -ImageWidth 400 -ImageHeight 200 -Caption \"Caption text\" -AlternativeText \"Alt text\" -Link \"https://pnp.github.io\"", "Id": 141, - "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -ImageWidth 400 -ImageHeight 200 -Caption \"Caption text\" -AlternativeText \"Alt text\" -Link \"https://pnp.github.io\"" + "Rank": 2, + "CommandName": "Add-PnPPageImageWebPart" }, { - "CommandName": "Add-PnPPageSection", - "Rank": 1, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn", "Id": 142, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" + "Rank": 1, + "CommandName": "Add-PnPPageSection" }, { - "CommandName": "Add-PnPPageSection", - "Rank": 2, + "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10", "Id": 143, - "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" + "Rank": 2, + "CommandName": "Add-PnPPageSection" }, { - "CommandName": "Add-PnPPageTextPart", - "Rank": 1, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"", "Id": 144, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" + "Rank": 1, + "CommandName": "Add-PnPPageTextPart" }, { - "CommandName": "Add-PnPPageTextPart", - "Rank": 2, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"", "Id": 145, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" + "Rank": 2, + "CommandName": "Add-PnPPageTextPart" }, { - "CommandName": "Add-PnPPageTextPart", - "Rank": 3, + "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"", "Id": 146, - "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"" + "Rank": 3, + "CommandName": "Add-PnPPageTextPart" }, { - "CommandName": "Add-PnPPageWebPart", - "Rank": 1, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap", "Id": 147, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" + "Rank": 1, + "CommandName": "Add-PnPPageWebPart" }, { - "CommandName": "Add-PnPPageWebPart", - "Rank": 2, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"", "Id": 148, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" + "Rank": 2, + "CommandName": "Add-PnPPageWebPart" }, { - "CommandName": "Add-PnPPageWebPart", - "Rank": 3, + "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2", "Id": 149, - "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" + "Rank": 3, + "CommandName": "Add-PnPPageWebPart" }, { - "CommandName": "Add-PnPPlannerBucket", - "Rank": 1, + "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"", "Id": 150, - "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" + "Rank": 1, + "CommandName": "Add-PnPPlannerBucket" }, { - "CommandName": "Add-PnPPlannerBucket", - "Rank": 2, + "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"", "Id": 151, - "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" + "Rank": 2, + "CommandName": "Add-PnPPlannerBucket" }, { - "CommandName": "Add-PnPPlannerRoster", - "Rank": 1, + "Command": "Add-PnPPlannerRoster", "Id": 152, - "Command": "Add-PnPPlannerRoster" + "Rank": 1, + "CommandName": "Add-PnPPlannerRoster" }, { - "CommandName": "Add-PnPPlannerRosterMember", - "Rank": 1, + "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 153, - "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1, + "CommandName": "Add-PnPPlannerRosterMember" }, { - "CommandName": "Add-PnPPlannerTask", - "Rank": 1, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Id": 154, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "Rank": 1, + "CommandName": "Add-PnPPlannerTask" }, { - "CommandName": "Add-PnPPlannerTask", - "Rank": 2, + "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"", "Id": 155, - "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\"" + "Rank": 2, + "CommandName": "Add-PnPPlannerTask" }, { - "CommandName": "Add-PnPPlannerTask", - "Rank": 3, + "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", "Id": 156, - "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" + "Rank": 3, + "CommandName": "Add-PnPPlannerTask" }, { - "CommandName": "Add-PnPPublishingImageRendition", - "Rank": 1, + "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Id": 157, - "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Rank": 1, + "CommandName": "Add-PnPPublishingImageRendition" }, { - "CommandName": "Add-PnPPublishingPage", - "Rank": 1, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'", "Id": 158, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" + "Rank": 1, + "CommandName": "Add-PnPPublishingPage" }, { - "CommandName": "Add-PnPPublishingPage", - "Rank": 2, + "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'", "Id": 159, - "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" + "Rank": 2, + "CommandName": "Add-PnPPublishingPage" }, { - "CommandName": "Add-PnPPublishingPageLayout", - "Rank": 1, + "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901", "Id": 160, - "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" + "Rank": 1, + "CommandName": "Add-PnPPublishingPageLayout" }, { - "CommandName": "Add-PnPRoleDefinition", - "Rank": 1, + "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"", "Id": 161, - "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" + "Rank": 1, + "CommandName": "Add-PnPRoleDefinition" }, { - "CommandName": "Add-PnPRoleDefinition", - "Rank": 2, + "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems", "Id": 162, - "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" + "Rank": 2, + "CommandName": "Add-PnPRoleDefinition" }, { - "CommandName": "Add-PnPRoleDefinition", - "Rank": 3, + "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems", "Id": 163, - "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" + "Rank": 3, + "CommandName": "Add-PnPRoleDefinition" }, { - "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 1, + "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Id": 164, - "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 2, + "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 165, - "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "CommandName": "Add-PnPSiteCollectionAdmin", - "Rank": 3, + "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"", "Id": 166, - "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" + "Rank": 3, + "CommandName": "Add-PnPSiteCollectionAdmin" }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 1, + "Command": "Add-PnPSiteCollectionAppCatalog", "Id": 167, - "Command": "Add-PnPSiteCollectionAppCatalog" + "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Add-PnPSiteCollectionAppCatalog", - "Rank": 2, + "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Id": 168, - "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Add-PnPSiteDesign", - "Rank": 1, + "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite", "Id": 169, - "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite" + "Rank": 1, + "CommandName": "Add-PnPSiteDesign" }, { - "CommandName": "Add-PnPSiteDesign", - "Rank": 2, + "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png", "Id": 170, - "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png" + "Rank": 2, + "CommandName": "Add-PnPSiteDesign" }, { - "CommandName": "Add-PnPSiteDesign", - "Rank": 3, + "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"", "Id": 171, - "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"" + "Rank": 3, + "CommandName": "Add-PnPSiteDesign" }, { - "CommandName": "Add-PnPSiteDesignFromWeb", - "Rank": 1, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll", "Id": 172, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" + "Rank": 1, + "CommandName": "Add-PnPSiteDesignFromWeb" }, { - "CommandName": "Add-PnPSiteDesignFromWeb", - "Rank": 2, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", "Id": 173, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" + "Rank": 2, + "CommandName": "Add-PnPSiteDesignFromWeb" }, { - "CommandName": "Add-PnPSiteDesignFromWeb", - "Rank": 3, + "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -Lists \"/lists/Issue list\" -ThumbnailUrl https://contoso.sharepoint.com/SiteAssets/logo.png", "Id": 174, - "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -Lists \"/lists/Issue list\" -ThumbnailUrl https://contoso.sharepoint.com/SiteAssets/logo.png" + "Rank": 3, + "CommandName": "Add-PnPSiteDesignFromWeb" }, { - "CommandName": "Add-PnPSiteDesignTask", - "Rank": 1, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82", "Id": 175, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" + "Rank": 1, + "CommandName": "Add-PnPSiteDesignTask" }, { - "CommandName": "Add-PnPSiteDesignTask", - "Rank": 2, + "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 176, - "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Rank": 2, + "CommandName": "Add-PnPSiteDesignTask" }, { - "CommandName": "Add-PnPSiteScript", - "Rank": 1, + "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script", "Id": 177, - "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" + "Rank": 1, + "CommandName": "Add-PnPSiteScript" }, { - "CommandName": "Add-PnPSiteScriptPackage", - "Rank": 1, + "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"", "Id": 178, - "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" + "Rank": 1, + "CommandName": "Add-PnPSiteScriptPackage" }, { - "CommandName": "Add-PnPSiteTemplate", - "Rank": 1, + "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate", "Id": 179, - "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" + "Rank": 1, + "CommandName": "Add-PnPSiteTemplate" }, { - "CommandName": "Add-PnPStoredCredential", - "Rank": 1, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com", "Id": 180, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" + "Rank": 1, + "CommandName": "Add-PnPStoredCredential" }, { - "CommandName": "Add-PnPStoredCredential", - "Rank": 2, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Id": 181, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" + "Rank": 2, + "CommandName": "Add-PnPStoredCredential" }, { - "CommandName": "Add-PnPStoredCredential", - "Rank": 3, + "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"", "Id": 182, - "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"" + "Rank": 3, + "CommandName": "Add-PnPStoredCredential" }, { - "CommandName": "Add-PnPTaxonomyField", - "Rank": 1, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"", "Id": 183, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" + "Rank": 1, + "CommandName": "Add-PnPTaxonomyField" }, { - "CommandName": "Add-PnPTaxonomyField", - "Rank": 2, + "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"", "Id": 184, - "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" + "Rank": 2, + "CommandName": "Add-PnPTaxonomyField" }, { - "CommandName": "Add-PnPTeamsChannel", - "Rank": 1, + "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true", "Id": 185, - "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" + "Rank": 1, + "CommandName": "Add-PnPTeamsChannel" }, { - "CommandName": "Add-PnPTeamsChannel", - "Rank": 2, + "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"", "Id": 186, - "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" + "Rank": 2, + "CommandName": "Add-PnPTeamsChannel" }, { - "CommandName": "Add-PnPTeamsChannel", - "Rank": 3, + "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com", "Id": 187, - "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" + "Rank": 3, + "CommandName": "Add-PnPTeamsChannel" }, { - "CommandName": "Add-PnPTeamsChannel", - "Rank": 4, + "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com", "Id": 188, - "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" + "Rank": 4, + "CommandName": "Add-PnPTeamsChannel" }, { - "CommandName": "Add-PnpTeamsChannelUser", - "Rank": 1, + "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner", "Id": 189, - "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner" + "Rank": 1, + "CommandName": "Add-PnpTeamsChannelUser" }, { - "CommandName": "Add-PnpTeamsChannelUser", - "Rank": 2, + "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member", "Id": 190, - "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" + "Rank": 2, + "CommandName": "Add-PnpTeamsChannelUser" }, { - "CommandName": "Add-PnPTeamsTab", - "Rank": 1, + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"", "Id": 191, - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"" + "Rank": 1, + "CommandName": "Add-PnPTeamsTab" }, { - "CommandName": "Add-PnPTeamsTab", - "Rank": 2, + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type PDF -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/General/MyFile.pdf\" -EntityId \"null\"", "Id": 192, - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type PDF -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/General/MyFile.pdf\" -EntityId \"null\"" + "Rank": 2, + "CommandName": "Add-PnPTeamsTab" }, { - "CommandName": "Add-PnPTeamsTab", - "Rank": 3, + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type SharePointPageAndList -WebSiteUrl \"https://contoso.sharepoint.com/sites/Marketing/SitePages/Home.aspx\"", "Id": 193, - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type SharePointPageAndList -WebSiteUrl \"https://contoso.sharepoint.com/sites/Marketing/SitePages/Home.aspx\"" + "Rank": 3, + "CommandName": "Add-PnPTeamsTab" }, { - "CommandName": "Add-PnPTeamsTab", - "Rank": 4, + "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Excel Tab\" -Type Excel -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/My Excel File.csv\" -EntityId 6", "Id": 194, - "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Excel Tab\" -Type Excel -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/My Excel File.csv\" -EntityId 6" + "Rank": 4, + "CommandName": "Add-PnPTeamsTab" }, { - "CommandName": "Add-PnPTeamsTeam", - "Rank": 1, + "Command": "Add-PnPTeamsTeam", "Id": 195, - "Command": "Add-PnPTeamsTeam" + "Rank": 1, + "CommandName": "Add-PnPTeamsTeam" }, { - "CommandName": "Add-PnPTeamsUser", - "Rank": 1, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 196, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Rank": 1, + "CommandName": "Add-PnPTeamsUser" }, { - "CommandName": "Add-PnPTeamsUser", - "Rank": 2, + "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", "Id": 197, - "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "Rank": 2, + "CommandName": "Add-PnPTeamsUser" }, { - "CommandName": "Add-PnPTeamsUser", - "Rank": 3, + "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member", "Id": 198, - "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" + "Rank": 3, + "CommandName": "Add-PnPTeamsUser" }, { - "CommandName": "Add-PnPTeamsUser", - "Rank": 4, + "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private", "Id": 199, - "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" + "Rank": 4, + "CommandName": "Add-PnPTeamsUser" }, { - "CommandName": "Add-PnPTenantCdnOrigin", - "Rank": 1, + "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Id": 200, - "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Rank": 1, + "CommandName": "Add-PnPTenantCdnOrigin" }, { - "CommandName": "Add-PnPTenantSequence", - "Rank": 1, + "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence", "Id": 201, - "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" + "Rank": 1, + "CommandName": "Add-PnPTenantSequence" }, { - "CommandName": "Add-PnPTenantSequenceSite", - "Rank": 1, + "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence", "Id": 202, - "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" + "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSite" }, { - "CommandName": "Add-PnPTenantSequenceSubSite", - "Rank": 1, + "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite", "Id": 203, - "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" + "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSubSite" }, { - "CommandName": "Add-PnPTermToTerm", - "Rank": 1, + "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}", "Id": 204, - "Command": "Add-PnPTermToTerm -ParentTerm 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" + "Rank": 1, + "CommandName": "Add-PnPTermToTerm" }, { - "CommandName": "Add-PnPView", - "Rank": 1, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"", "Id": 205, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" + "Rank": 1, + "CommandName": "Add-PnPView" }, { - "CommandName": "Add-PnPView", - "Rank": 2, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100", "Id": 206, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" + "Rank": 2, + "CommandName": "Add-PnPView" }, { - "CommandName": "Add-PnPView", - "Rank": 3, + "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"", "Id": 207, - "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" + "Rank": 3, + "CommandName": "Add-PnPView" }, { - "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Rank": 1, + "Command": "Add-PnPVivaConnectionsDashboardACE -Identity CardDesigner -Order 3 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Large -Description \"ACE description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"", "Id": 208, - "Command": "Add-PnPVivaConnectionsDashboardACE -Identity CardDesigner -Order 3 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Large -Description \"ACE description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"" + "Rank": 1, + "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Rank": 2, + "Command": "Add-PnPVivaConnectionsDashboardACE -Identity ThirdPartyApp -Order 1 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Medium -Description \"ACE with description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"", "Id": 209, - "Command": "Add-PnPVivaConnectionsDashboardACE -Identity ThirdPartyApp -Order 1 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Medium -Description \"ACE with description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"" + "Rank": 2, + "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Add-PnPVivaConnectionsDashboardACE", - "Rank": 3, + "Command": "Add-PnPVivaConnectionsDashboardACE -Identity AssignedTasks -Order 2 -Title \"Tasks\" -PropertiesJSON $myProperties -CardSize Medium -Description \"My Assigned tasks\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"", "Id": 210, - "Command": "Add-PnPVivaConnectionsDashboardACE -Identity AssignedTasks -Order 2 -Title \"Tasks\" -PropertiesJSON $myProperties -CardSize Medium -Description \"My Assigned tasks\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"" + "Rank": 3, + "CommandName": "Add-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Add-PnPWebhookSubscription", - "Rank": 1, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook", "Id": 211, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" + "Rank": 1, + "CommandName": "Add-PnPWebhookSubscription" }, { - "CommandName": "Add-PnPWebhookSubscription", - "Rank": 2, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", "Id": 212, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" + "Rank": 2, + "CommandName": "Add-PnPWebhookSubscription" }, { - "CommandName": "Add-PnPWebhookSubscription", - "Rank": 3, + "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"", "Id": 213, - "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"" + "Rank": 3, + "CommandName": "Add-PnPWebhookSubscription" }, { - "CommandName": "Add-PnPWebPartToWebPartPage", - "Rank": 1, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1", "Id": 214, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1" + "Rank": 1, + "CommandName": "Add-PnPWebPartToWebPartPage" }, { - "CommandName": "Add-PnPWebPartToWebPartPage", - "Rank": 2, + "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1", "Id": 215, - "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" + "Rank": 2, + "CommandName": "Add-PnPWebPartToWebPartPage" }, { - "CommandName": "Add-PnPWebPartToWikiPage", - "Rank": 1, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1", "Id": 216, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1" + "Rank": 1, + "CommandName": "Add-PnPWebPartToWikiPage" }, { - "CommandName": "Add-PnPWebPartToWikiPage", - "Rank": 2, + "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1", "Id": 217, - "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" + "Rank": 2, + "CommandName": "Add-PnPWebPartToWikiPage" }, { - "CommandName": "Add-PnPWikiPage", - "Rank": 1, + "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'", "Id": 218, - "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" + "Rank": 1, + "CommandName": "Add-PnPWikiPage" }, { - "CommandName": "Clear-PnPAzureADGroupMember", - "Rank": 1, + "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"", "Id": 219, - "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" + "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupMember" }, { - "CommandName": "Clear-PnPAzureADGroupOwner", - "Rank": 1, + "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"", "Id": 220, - "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" + "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupOwner" }, { - "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 1, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField", "Id": 221, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" + "Rank": 1, + "CommandName": "Clear-PnPDefaultColumnValues" }, { - "CommandName": "Clear-PnPDefaultColumnValues", - "Rank": 2, + "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A", "Id": 222, - "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" + "Rank": 2, + "CommandName": "Clear-PnPDefaultColumnValues" }, { - "CommandName": "Clear-PnPListItemAsRecord", - "Rank": 1, + "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4", "Id": 223, - "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "Rank": 1, + "CommandName": "Clear-PnPListItemAsRecord" }, { - "CommandName": "Clear-PnPMicrosoft365GroupMember", - "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"", "Id": 224, - "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" + "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupMember" }, { - "CommandName": "Clear-PnPMicrosoft365GroupOwner", - "Rank": 1, + "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"", "Id": 225, - "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" + "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupOwner" }, { - "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 1, + "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Id": 226, - "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Rank": 1, + "CommandName": "Clear-PnpRecycleBinItem" }, { - "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 2, + "Command": "Clear-PnPRecycleBinItem -Identity $item -Force", "Id": 227, - "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" + "Rank": 2, + "CommandName": "Clear-PnpRecycleBinItem" }, { - "CommandName": "Clear-PnpRecycleBinItem", - "Rank": 3, + "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000", "Id": 228, - "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" + "Rank": 3, + "CommandName": "Clear-PnpRecycleBinItem" }, { - "CommandName": "Clear-PnPTenantAppCatalogUrl", - "Rank": 1, + "Command": "Clear-PnPTenantAppCatalogUrl", "Id": 229, - "Command": "Clear-PnPTenantAppCatalogUrl" + "Rank": 1, + "CommandName": "Clear-PnPTenantAppCatalogUrl" }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 1, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 230, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "CommandName": "Clear-PnPTenantRecycleBinItem", - "Rank": 2, + "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Id": 231, - "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Rank": 2, + "CommandName": "Clear-PnPTenantRecycleBinItem" }, { - "CommandName": "Connect-PnPOnline", - "Rank": 1, + "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"", "Id": 232, - "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"" + "Rank": 1, + "CommandName": "Connect-PnPOnline" }, { - "CommandName": "Convert-PnPFile", - "Rank": 1, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream", "Id": 233, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream" + "Rank": 1, + "CommandName": "Convert-PnPFile" }, { - "CommandName": "Convert-PnPFile", - "Rank": 2, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"", "Id": 234, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"" + "Rank": 2, + "CommandName": "Convert-PnPFile" }, { - "CommandName": "Convert-PnPFile", - "Rank": 3, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"", "Id": 235, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"" + "Rank": 3, + "CommandName": "Convert-PnPFile" }, { - "CommandName": "Convert-PnPFile", - "Rank": 4, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force", "Id": 236, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force" + "Rank": 4, + "CommandName": "Convert-PnPFile" }, { - "CommandName": "Convert-PnPFile", - "Rank": 5, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"", "Id": 237, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"" + "Rank": 5, + "CommandName": "Convert-PnPFile" }, { - "CommandName": "Convert-PnPFile", - "Rank": 6, + "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"", "Id": 238, - "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"" + "Rank": 6, + "CommandName": "Convert-PnPFile" }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 1, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp", "Id": 239, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" + "Rank": 1, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "CommandName": "Convert-PnPFolderToSiteTemplate", - "Rank": 2, + "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp", "Id": 240, - "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" + "Rank": 2, + "CommandName": "Convert-PnPFolderToSiteTemplate" }, { - "CommandName": "Convert-PnPSiteTemplate", - "Rank": 1, + "Command": "Convert-PnPSiteTemplate -Path template.xml", "Id": 241, - "Command": "Convert-PnPSiteTemplate -Path template.xml" + "Rank": 1, + "CommandName": "Convert-PnPSiteTemplate" }, { - "CommandName": "Convert-PnPSiteTemplate", - "Rank": 2, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml", "Id": 242, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" + "Rank": 2, + "CommandName": "Convert-PnPSiteTemplate" }, { - "CommandName": "Convert-PnPSiteTemplate", - "Rank": 3, + "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512", "Id": 243, - "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" + "Rank": 3, + "CommandName": "Convert-PnPSiteTemplate" }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 1, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml", "Id": 244, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" + "Rank": 1, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "CommandName": "Convert-PnPSiteTemplateToMarkdown", - "Rank": 2, + "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md", "Id": 245, - "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" + "Rank": 2, + "CommandName": "Convert-PnPSiteTemplateToMarkdown" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 1, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite", "Id": 246, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" + "Rank": 1, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 2, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml", "Id": 247, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" + "Rank": 2, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 3, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner", "Id": 248, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" + "Rank": 3, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 4, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata", "Id": 249, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" + "Rank": 4, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 5, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 250, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Rank": 5, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 6, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target", "Id": 251, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" + "Rank": 6, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 7, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite", "Id": 252, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" + "Rank": 7, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 8, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite", "Id": 253, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" + "Rank": 8, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 9, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 254, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Rank": 9, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 10, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite", "Id": 255, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" + "Rank": 10, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 11, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush", "Id": 256, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" + "Rank": 11, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 12, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 257, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Rank": 12, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 13, + "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"", "Id": 258, - "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" + "Rank": 13, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "ConvertTo-PnPPage", - "Rank": 14, + "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv", "Id": 259, - "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" + "Rank": 14, + "CommandName": "ConvertTo-PnPPage" }, { - "CommandName": "Copy-PnPFile", - "Rank": 1, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 260, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 1, + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 2, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 261, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Rank": 2, + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 3, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 262, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Rank": 3, + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 4, + "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 263, - "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 4, + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 5, + "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 264, - "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Rank": 5, + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 6, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 265, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Rank": 6, + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 7, + "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 266, - "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Rank": 7, + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 8, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 267, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 8, + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 9, + "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 268, - "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Rank": 9, + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFile", - "Rank": 10, + "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 269, - "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Rank": 10, + "CommandName": "Copy-PnPFile" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 1, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 270, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 1, + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 2, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"", "Id": 271, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" + "Rank": 2, + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 3, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory", "Id": 272, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" + "Rank": 3, + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 4, + "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 273, - "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 4, + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 5, + "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"", "Id": 274, - "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" + "Rank": 5, + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 6, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"", "Id": 275, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" + "Rank": 6, + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 7, + "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"", "Id": 276, - "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" + "Rank": 7, + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 8, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite", "Id": 277, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" + "Rank": 8, + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 9, + "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite", "Id": 278, - "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" + "Rank": 9, + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPFolder", - "Rank": 10, + "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"", "Id": 279, - "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" + "Rank": 10, + "CommandName": "Copy-PnPFolder" }, { - "CommandName": "Copy-PnPItemProxy", - "Rank": 1, + "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"", "Id": 280, - "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" + "Rank": 1, + "CommandName": "Copy-PnPItemProxy" }, { - "CommandName": "Copy-PnPList", - "Rank": 1, + "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"", "Id": 281, - "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" + "Rank": 1, + "CommandName": "Copy-PnPList" }, { - "CommandName": "Copy-PnPList", - "Rank": 2, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment", "Id": 282, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" + "Rank": 2, + "CommandName": "Copy-PnPList" }, { - "CommandName": "Copy-PnPList", - "Rank": 3, + "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"", "Id": 283, - "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" + "Rank": 3, + "CommandName": "Copy-PnPList" }, { - "CommandName": "Copy-PnPList", - "Rank": 4, + "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\", "Id": 284, - "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" + "Rank": 4, + "CommandName": "Copy-PnPList" }, { - "CommandName": "Copy-PnPTeamsTeam", - "Rank": 1, + "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members", "Id": 285, - "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" + "Rank": 1, + "CommandName": "Copy-PnPTeamsTeam" }, { - "CommandName": "Copy-PnPTeamsTeam", - "Rank": 2, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"", "Id": 286, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" + "Rank": 2, + "CommandName": "Copy-PnPTeamsTeam" }, { - "CommandName": "Copy-PnPTeamsTeam", - "Rank": 3, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Id": 287, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" + "Rank": 3, + "CommandName": "Copy-PnPTeamsTeam" }, { - "CommandName": "Copy-PnPTeamsTeam", - "Rank": 4, + "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public", "Id": 288, - "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" + "Rank": 4, + "CommandName": "Copy-PnPTeamsTeam" }, { - "CommandName": "Disable-PnPFeature", - "Rank": 1, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 289, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "CommandName": "Disable-PnPFeature" }, { - "CommandName": "Disable-PnPFeature", - "Rank": 2, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 290, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Rank": 2, + "CommandName": "Disable-PnPFeature" }, { - "CommandName": "Disable-PnPFeature", - "Rank": 3, + "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 291, - "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Rank": 3, + "CommandName": "Disable-PnPFeature" }, { - "CommandName": "Disable-PnPPageScheduling", - "Rank": 1, + "Command": "Disable-PnPPageScheduling", "Id": 292, - "Command": "Disable-PnPPageScheduling" + "Rank": 1, + "CommandName": "Disable-PnPPageScheduling" }, { - "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 1, + "Command": "Disable-PnPPowerShellTelemetry", "Id": 293, - "Command": "Disable-PnPPowerShellTelemetry" + "Rank": 1, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "CommandName": "Disable-PnPPowerShellTelemetry", - "Rank": 2, + "Command": "Disable-PnPPowerShellTelemetry -Force", "Id": 294, - "Command": "Disable-PnPPowerShellTelemetry -Force" + "Rank": 2, + "CommandName": "Disable-PnPPowerShellTelemetry" }, { - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", - "Rank": 1, + "Command": "Disable-PnPSharingForNonOwnersOfSite", "Id": 295, - "Command": "Disable-PnPSharingForNonOwnersOfSite" + "Rank": 1, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite" }, { - "CommandName": "Disable-PnPSiteClassification", - "Rank": 1, + "Command": "Disable-PnPSiteClassification", "Id": 296, - "Command": "Disable-PnPSiteClassification" + "Rank": 1, + "CommandName": "Disable-PnPSiteClassification" }, { - "CommandName": "Disconnect-PnPOnline", - "Rank": 1, + "Command": "Disconnect-PnPOnline", "Id": 297, - "Command": "Disconnect-PnPOnline" + "Rank": 1, + "CommandName": "Disconnect-PnPOnline" }, { - "CommandName": "Enable-PnPCommSite", - "Rank": 1, + "Command": "Enable-PnPCommSite", "Id": 298, - "Command": "Enable-PnPCommSite" + "Rank": 1, + "CommandName": "Enable-PnPCommSite" }, { - "CommandName": "Enable-PnPCommSite", - "Rank": 2, + "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767", "Id": 299, - "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" + "Rank": 2, + "CommandName": "Enable-PnPCommSite" }, { - "CommandName": "Enable-PnPFeature", - "Rank": 1, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 300, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "CommandName": "Enable-PnPFeature" }, { - "CommandName": "Enable-PnPFeature", - "Rank": 2, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force", "Id": 301, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" + "Rank": 2, + "CommandName": "Enable-PnPFeature" }, { - "CommandName": "Enable-PnPFeature", - "Rank": 3, + "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web", "Id": 302, - "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" + "Rank": 3, + "CommandName": "Enable-PnPFeature" }, { - "CommandName": "Enable-PnPPageScheduling", - "Rank": 1, + "Command": "Enable-PnPPageScheduling", "Id": 303, - "Command": "Enable-PnPPageScheduling" + "Rank": 1, + "CommandName": "Enable-PnPPageScheduling" }, { - "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 1, + "Command": "Enable-PnPPowerShellTelemetry", "Id": 304, - "Command": "Enable-PnPPowerShellTelemetry" + "Rank": 1, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "CommandName": "Enable-PnPPowerShellTelemetry", - "Rank": 2, + "Command": "Enable-PnPPowerShellTelemetry -Force", "Id": 305, - "Command": "Enable-PnPPowerShellTelemetry -Force" + "Rank": 2, + "CommandName": "Enable-PnPPowerShellTelemetry" }, { - "CommandName": "Enable-PnPSiteClassification", - "Rank": 1, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"", "Id": 306, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" + "Rank": 1, + "CommandName": "Enable-PnPSiteClassification" }, { - "CommandName": "Enable-PnPSiteClassification", - "Rank": 2, + "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp", "Id": 307, - "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" + "Rank": 2, + "CommandName": "Enable-PnPSiteClassification" }, { - "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 1, + "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"", "Id": 308, - "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" + "Rank": 1, + "CommandName": "Export-PnPListToSiteTemplate" }, { - "CommandName": "Export-PnPListToSiteTemplate", - "Rank": 2, + "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"", "Id": 309, - "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" + "Rank": 2, + "CommandName": "Export-PnPListToSiteTemplate" }, { - "CommandName": "Export-PnPPage", - "Rank": 1, + "Command": "Export-PnPPage -Identity Home.aspx", "Id": 310, - "Command": "Export-PnPPage -Identity Home.aspx" + "Rank": 1, + "CommandName": "Export-PnPPage" }, { - "CommandName": "Export-PnPPageMapping", - "Rank": 1, + "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite", "Id": 311, - "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" + "Rank": 1, + "CommandName": "Export-PnPPageMapping" }, { - "CommandName": "Export-PnPPageMapping", - "Rank": 2, + "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite", "Id": 312, - "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" + "Rank": 2, + "CommandName": "Export-PnPPageMapping" }, { - "CommandName": "Export-PnPPageMapping", - "Rank": 3, + "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite", "Id": 313, - "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" + "Rank": 3, + "CommandName": "Export-PnPPageMapping" }, { - "CommandName": "Export-PnPTaxonomy", - "Rank": 1, + "Command": "Export-PnPTaxonomy", "Id": 314, - "Command": "Export-PnPTaxonomy" + "Rank": 1, + "CommandName": "Export-PnPTaxonomy" }, { - "CommandName": "Export-PnPTaxonomy", - "Rank": 2, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt", "Id": 315, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt" + "Rank": 2, + "CommandName": "Export-PnPTaxonomy" }, { - "CommandName": "Export-PnPTaxonomy", - "Rank": 3, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254", "Id": 316, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" + "Rank": 3, + "CommandName": "Export-PnPTaxonomy" }, { - "CommandName": "Export-PnPTaxonomy", - "Rank": 4, + "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044", "Id": 317, - "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" + "Rank": 4, + "CommandName": "Export-PnPTaxonomy" }, { - "CommandName": "Export-PnPTermGroupToXml", - "Rank": 1, + "Command": "Export-PnPTermGroupToXml", "Id": 318, - "Command": "Export-PnPTermGroupToXml" + "Rank": 1, + "CommandName": "Export-PnPTermGroupToXml" }, { - "CommandName": "Export-PnPTermGroupToXml", - "Rank": 2, + "Command": "Export-PnPTermGroupToXml -Out output.xml", "Id": 319, - "Command": "Export-PnPTermGroupToXml -Out output.xml" + "Rank": 2, + "CommandName": "Export-PnPTermGroupToXml" }, { - "CommandName": "Export-PnPTermGroupToXml", - "Rank": 3, + "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"", "Id": 320, - "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" + "Rank": 3, + "CommandName": "Export-PnPTermGroupToXml" }, { - "CommandName": "Export-PnPUserInfo", - "Rank": 1, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Id": 321, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" + "Rank": 1, + "CommandName": "Export-PnPUserInfo" }, { - "CommandName": "Export-PnPUserInfo", - "Rank": 2, + "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv", "Id": 322, - "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" + "Rank": 2, + "CommandName": "Export-PnPUserInfo" }, { - "CommandName": "Export-PnPUserProfile", - "Rank": 1, + "Command": "Export-PnPUserProfile -LoginName user@domain.com", "Id": 323, - "Command": "Export-PnPUserProfile -LoginName user@domain.com" + "Rank": 1, + "CommandName": "Export-PnPUserProfile" }, { - "CommandName": "Export-PnPUserProfile", - "Rank": 2, + "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv", "Id": 324, - "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" + "Rank": 2, + "CommandName": "Export-PnPUserProfile" }, { - "CommandName": "Find-PnPFile", - "Rank": 1, + "Command": "Find-PnPFile -Match *.master", "Id": 325, - "Command": "Find-PnPFile -Match *.master" + "Rank": 1, + "CommandName": "Find-PnPFile" }, { - "CommandName": "Find-PnPFile", - "Rank": 2, + "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf", "Id": 326, - "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" + "Rank": 2, + "CommandName": "Find-PnPFile" }, { - "CommandName": "Find-PnPFile", - "Rank": 3, + "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx", "Id": 327, - "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" + "Rank": 3, + "CommandName": "Find-PnPFile" }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 1, + "Command": "Get-PnPAccessToken", "Id": 328, - "Command": "Get-PnPAccessToken" + "Rank": 1, + "CommandName": "Get-PnPAccessToken" }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 2, + "Command": "Get-PnPAccessToken -Decoded", "Id": 329, - "Command": "Get-PnPAccessToken -Decoded" + "Rank": 2, + "CommandName": "Get-PnPAccessToken" }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 3, + "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint", "Id": 330, - "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" + "Rank": 3, + "CommandName": "Get-PnPAccessToken" }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 4, + "Command": "Get-PnPAccessToken -ResourceTypeName ARM", "Id": 331, - "Command": "Get-PnPAccessToken -ResourceTypeName ARM" + "Rank": 4, + "CommandName": "Get-PnPAccessToken" }, { - "CommandName": "Get-PnPAccessToken", - "Rank": 5, + "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"", "Id": 332, - "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" + "Rank": 5, + "CommandName": "Get-PnPAccessToken" }, { - "CommandName": "Get-PnPAlert", - "Rank": 1, + "Command": "Get-PnPAlert", "Id": 333, - "Command": "Get-PnPAlert" + "Rank": 1, + "CommandName": "Get-PnPAlert" }, { - "CommandName": "Get-PnPAlert", - "Rank": 2, + "Command": "Get-PnPAlert -List \"Demo List\"", "Id": 334, - "Command": "Get-PnPAlert -List \"Demo List\"" + "Rank": 2, + "CommandName": "Get-PnPAlert" }, { - "CommandName": "Get-PnPAlert", - "Rank": 3, + "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 335, - "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Rank": 3, + "CommandName": "Get-PnPAlert" }, { - "CommandName": "Get-PnPAlert", - "Rank": 4, + "Command": "Get-PnPAlert -Title \"Demo Alert\"", "Id": 336, - "Command": "Get-PnPAlert -Title \"Demo Alert\"" + "Rank": 4, + "CommandName": "Get-PnPAlert" }, { - "CommandName": "Get-PnPAlert", - "Rank": 5, + "Command": "Get-PnPAlert -AllUsers", "Id": 337, - "Command": "Get-PnPAlert -AllUsers" + "Rank": 5, + "CommandName": "Get-PnPAlert" }, { - "CommandName": "Get-PnPAlert", - "Rank": 6, + "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers", "Id": 338, - "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" + "Rank": 6, + "CommandName": "Get-PnPAlert" }, { - "CommandName": "Get-PnPApp", - "Rank": 1, + "Command": "Get-PnPApp", "Id": 339, - "Command": "Get-PnPApp" + "Rank": 1, + "CommandName": "Get-PnPApp" }, { - "CommandName": "Get-PnPApp", - "Rank": 2, + "Command": "Get-PnPApp -Scope Site", "Id": 340, - "Command": "Get-PnPApp -Scope Site" + "Rank": 2, + "CommandName": "Get-PnPApp" }, { - "CommandName": "Get-PnPApp", - "Rank": 3, + "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 341, - "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Rank": 3, + "CommandName": "Get-PnPApp" }, { - "CommandName": "Get-PnPAppErrors", - "Rank": 1, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b", "Id": 342, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" + "Rank": 1, + "CommandName": "Get-PnPAppErrors" }, { - "CommandName": "Get-PnPAppErrors", - "Rank": 2, + "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()", "Id": 343, - "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" + "Rank": 2, + "CommandName": "Get-PnPAppErrors" }, { - "CommandName": "Get-PnPAppInfo", - "Rank": 1, + "Command": "Get-PnPAppInfo -Name \"Excel Service\"", "Id": 344, - "Command": "Get-PnPAppInfo -Name \"Excel Service\"" + "Rank": 1, + "CommandName": "Get-PnPAppInfo" }, { - "CommandName": "Get-PnPAppInfo", - "Rank": 2, + "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 345, - "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Rank": 2, + "CommandName": "Get-PnPAppInfo" }, { - "CommandName": "Get-PnPAppInfo", - "Rank": 3, + "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name", "Id": 346, - "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" + "Rank": 3, + "CommandName": "Get-PnPAppInfo" }, { - "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 1, + "Command": "Get-PnPApplicationCustomizer", "Id": 347, - "Command": "Get-PnPApplicationCustomizer" + "Rank": 1, + "CommandName": "Get-PnPApplicationCustomizer" }, { - "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 2, + "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 348, - "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 2, + "CommandName": "Get-PnPApplicationCustomizer" }, { - "CommandName": "Get-PnPApplicationCustomizer", - "Rank": 3, + "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web", "Id": 349, - "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" + "Rank": 3, + "CommandName": "Get-PnPApplicationCustomizer" }, { - "CommandName": "Get-PnPAuditing", - "Rank": 1, + "Command": "Get-PnPAuditing", "Id": 350, - "Command": "Get-PnPAuditing" + "Rank": 1, + "CommandName": "Get-PnPAuditing" }, { - "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 1, + "Command": "Get-PnPAuthenticationRealm", "Id": 351, - "Command": "Get-PnPAuthenticationRealm" + "Rank": 1, + "CommandName": "Get-PnPAuthenticationRealm" }, { - "CommandName": "Get-PnPAuthenticationRealm", - "Rank": 2, + "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"", "Id": 352, - "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" + "Rank": 2, + "CommandName": "Get-PnPAuthenticationRealm" }, { - "CommandName": "Get-PnPAvailableLanguage", - "Rank": 1, + "Command": "Get-PnPAvailableLanguage", "Id": 353, - "Command": "Get-PnPAvailableLanguage" + "Rank": 1, + "CommandName": "Get-PnPAvailableLanguage" }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 1, + "Command": "Get-PnPAvailableSensitivityLabel", "Id": 354, - "Command": "Get-PnPAvailableSensitivityLabel" + "Rank": 1, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 2, + "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com", "Id": 355, - "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" + "Rank": 2, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "CommandName": "Get-PnPAvailableSensitivityLabel", - "Rank": 3, + "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884", "Id": 356, - "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" + "Rank": 3, + "CommandName": "Get-PnPAvailableSensitivityLabel" }, { - "CommandName": "Get-PnPAvailableSiteClassification", - "Rank": 1, + "Command": "Get-PnPAvailableSiteClassification", "Id": 357, - "Command": "Get-PnPAvailableSiteClassification" + "Rank": 1, + "CommandName": "Get-PnPAvailableSiteClassification" }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 1, + "Command": "Get-PnPAzureACSPrincipal", "Id": 358, - "Command": "Get-PnPAzureACSPrincipal" + "Rank": 1, + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 2, + "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites", "Id": 359, - "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" + "Rank": 2, + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 3, + "Command": "Get-PnPAzureACSPrincipal -Scope Tenant", "Id": 360, - "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" + "Rank": 3, + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "CommandName": "Get-PnPAzureACSPrincipal", - "Rank": 4, + "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites", "Id": 361, - "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" + "Rank": 4, + "CommandName": "Get-PnPAzureACSPrincipal" }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 1, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit", "Id": 362, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit" + "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 2, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"", "Id": 363, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" + "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", - "Rank": 3, + "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"", "Id": 364, - "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" + "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit" }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 1, + "Command": "Get-PnPAzureADActivityReportSignIn", "Id": 365, - "Command": "Get-PnPAzureADActivityReportSignIn" + "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 2, + "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"", "Id": 366, - "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" + "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "CommandName": "Get-PnPAzureADActivityReportSignIn", - "Rank": 3, + "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"", "Id": 367, - "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" + "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportSignIn" }, { - "CommandName": "Get-PnPAzureADApp", - "Rank": 1, + "Command": "Get-PnPAzureADApp", "Id": 368, - "Command": "Get-PnPAzureADApp" + "Rank": 1, + "CommandName": "Get-PnPAzureADApp" }, { - "CommandName": "Get-PnPAzureADApp", - "Rank": 2, + "Command": "Get-PnPAzureADApp -Identity MyApp", "Id": 369, - "Command": "Get-PnPAzureADApp -Identity MyApp" + "Rank": 2, + "CommandName": "Get-PnPAzureADApp" }, { - "CommandName": "Get-PnPAzureADApp", - "Rank": 3, + "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 370, - "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Rank": 3, + "CommandName": "Get-PnPAzureADApp" }, { - "CommandName": "Get-PnPAzureADApp", - "Rank": 4, + "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"", "Id": 371, - "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" + "Rank": 4, + "CommandName": "Get-PnPAzureADApp" }, { - "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 1, + "Command": "Get-PnPAzureADAppPermission", "Id": 372, - "Command": "Get-PnPAzureADAppPermission" + "Rank": 1, + "CommandName": "Get-PnPAzureADAppPermission" }, { - "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 2, + "Command": "Get-PnPAzureADAppPermission -Identity MyApp", "Id": 373, - "Command": "Get-PnPAzureADAppPermission -Identity MyApp" + "Rank": 2, + "CommandName": "Get-PnPAzureADAppPermission" }, { - "CommandName": "Get-PnPAzureADAppPermission", - "Rank": 3, + "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 374, - "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Rank": 3, + "CommandName": "Get-PnPAzureADAppPermission" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 1, + "Command": "Get-PnPAzureADAppSitePermission", "Id": 375, - "Command": "Get-PnPAzureADAppSitePermission" + "Rank": 1, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 2, + "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects", "Id": 376, - "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" + "Rank": 2, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 3, + "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1", "Id": 377, - "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" + "Rank": 3, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 4, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"", "Id": 378, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" + "Rank": 4, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "CommandName": "Get-PnPAzureADAppSitePermission", - "Rank": 5, + "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"", "Id": 379, - "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" + "Rank": 5, + "CommandName": "Get-PnPAzureADAppSitePermission" }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 1, + "Command": "Get-PnPAzureADGroup", "Id": 380, - "Command": "Get-PnPAzureADGroup" + "Rank": 1, + "CommandName": "Get-PnPAzureADGroup" }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 2, + "Command": "Get-PnPAzureADGroup -Identity $groupId", "Id": 381, - "Command": "Get-PnPAzureADGroup -Identity $groupId" + "Rank": 2, + "CommandName": "Get-PnPAzureADGroup" }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 3, + "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName", "Id": 382, - "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" + "Rank": 3, + "CommandName": "Get-PnPAzureADGroup" }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 4, + "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName", "Id": 383, - "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" + "Rank": 4, + "CommandName": "Get-PnPAzureADGroup" }, { - "CommandName": "Get-PnPAzureADGroup", - "Rank": 5, + "Command": "Get-PnPAzureADGroup -Identity $group", "Id": 384, - "Command": "Get-PnPAzureADGroup -Identity $group" + "Rank": 5, + "CommandName": "Get-PnPAzureADGroup" }, { - "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 1, + "Command": "Get-PnPAzureADGroupMember -Identity $groupId", "Id": 385, - "Command": "Get-PnPAzureADGroupMember -Identity $groupId" + "Rank": 1, + "CommandName": "Get-PnPAzureADGroupMember" }, { - "CommandName": "Get-PnPAzureADGroupMember", - "Rank": 2, + "Command": "Get-PnPAzureADGroupMember -Identity $group", "Id": 386, - "Command": "Get-PnPAzureADGroupMember -Identity $group" + "Rank": 2, + "CommandName": "Get-PnPAzureADGroupMember" }, { - "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 1, + "Command": "Get-PnPAzureADGroupOwner -Identity $groupId", "Id": 387, - "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" + "Rank": 1, + "CommandName": "Get-PnPAzureADGroupOwner" }, { - "CommandName": "Get-PnPAzureADGroupOwner", - "Rank": 2, + "Command": "Get-PnPAzureADGroupOwner -Identity $group", "Id": 388, - "Command": "Get-PnPAzureADGroupOwner -Identity $group" + "Rank": 2, + "CommandName": "Get-PnPAzureADGroupOwner" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipal", "Id": 389, - "Command": "Get-PnPAzureADServicePrincipal" + "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e", "Id": 390, - "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" + "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 3, + "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec", "Id": 391, - "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" + "Rank": 3, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 4, + "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"", "Id": 392, - "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" + "Rank": 4, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "CommandName": "Get-PnPAzureADServicePrincipal", - "Rank": 5, + "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"", "Id": 393, - "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" + "Rank": 5, + "CommandName": "Get-PnPAzureADServicePrincipal" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 394, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Id": 395, - "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 1, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 396, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", - "Rank": 2, + "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"", "Id": 397, - "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" + "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 1, + "Command": "Get-PnPAzureADUser", "Id": 398, - "Command": "Get-PnPAzureADUser" + "Rank": 1, + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 2, + "Command": "Get-PnPAzureADUser -EndIndex 50", "Id": 399, - "Command": "Get-PnPAzureADUser -EndIndex 50" + "Rank": 2, + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 3, + "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Id": 400, - "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Rank": 3, + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 4, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com", "Id": 401, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com" + "Rank": 4, + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 5, + "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"", "Id": 402, - "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" + "Rank": 5, + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 6, + "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"", "Id": 403, - "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" + "Rank": 6, + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 7, + "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"", "Id": 404, - "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" + "Rank": 7, + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 8, + "Command": "Get-PnPAzureADUser -Delta", "Id": 405, - "Command": "Get-PnPAzureADUser -Delta" + "Rank": 8, + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 9, + "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef", "Id": 406, - "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" + "Rank": 9, + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureADUser", - "Rank": 10, + "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20", "Id": 407, - "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" + "Rank": 10, + "CommandName": "Get-PnPAzureADUser" }, { - "CommandName": "Get-PnPAzureCertificate", - "Rank": 1, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"", "Id": 408, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" + "Rank": 1, + "CommandName": "Get-PnPAzureCertificate" }, { - "CommandName": "Get-PnPAzureCertificate", - "Rank": 2, + "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)", "Id": 409, - "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" + "Rank": 2, + "CommandName": "Get-PnPAzureCertificate" }, { - "CommandName": "Get-PnPAzureCertificate", - "Rank": 3, + "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip", "Id": 410, - "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" + "Rank": 3, + "CommandName": "Get-PnPAzureCertificate" }, { - "CommandName": "Get-PnPBrowserIdleSignout", - "Rank": 1, + "Command": "Get-PnPBrowserIdleSignout", "Id": 411, - "Command": "Get-PnPBrowserIdleSignout" + "Rank": 1, + "CommandName": "Get-PnPBrowserIdleSignout" }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 1, + "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase", "Id": 412, - "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" + "Rank": 1, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", - "Rank": 2, + "Command": "Get-PnPBuiltInDesignPackageVisibility", "Id": 413, - "Command": "Get-PnPBuiltInDesignPackageVisibility" + "Rank": 2, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 1, + "Command": "Get-PnPBuiltInSiteTemplateSettings", "Id": 414, - "Command": "Get-PnPBuiltInSiteTemplateSettings" + "Rank": 1, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 2, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344", "Id": 415, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" + "Rank": 2, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 3, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement", "Id": 416, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" + "Rank": 3, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 4, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000", "Id": 417, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" + "Rank": 4, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", - "Rank": 5, + "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All", "Id": 418, - "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" + "Rank": 5, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Get-PnPChangeLog", - "Rank": 1, + "Command": "Get-PnPChangeLog", "Id": 419, - "Command": "Get-PnPChangeLog" + "Rank": 1, + "CommandName": "Get-PnPChangeLog" }, { - "CommandName": "Get-PnPChangeLog", - "Rank": 2, + "Command": "Get-PnPChangeLog -Nightly", "Id": 420, - "Command": "Get-PnPChangeLog -Nightly" + "Rank": 2, + "CommandName": "Get-PnPChangeLog" }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 1, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'", "Id": 421, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" + "Rank": 1, + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "CommandName": "Get-PnPCompatibleHubContentTypes", - "Rank": 2, + "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'", "Id": 422, - "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" + "Rank": 2, + "CommandName": "Get-PnPCompatibleHubContentTypes" }, { - "CommandName": "Get-PnPContainer", - "Rank": 1, + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996", "Id": 423, - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996" + "Rank": 1, + "CommandName": "Get-PnPContainer" }, { - "CommandName": "Get-PnPContainer", - "Rank": 2, + "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", "Id": 424, - "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" + "Rank": 2, + "CommandName": "Get-PnPContainer" }, { - "CommandName": "Get-PnPContainer", - "Rank": 3, + "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", "Id": 425, - "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" + "Rank": 3, + "CommandName": "Get-PnPContainer" }, { - "CommandName": "Get-PnPContainerTypeConfiguration", - "Rank": 1, + "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996", "Id": 426, - "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996" + "Rank": 1, + "CommandName": "Get-PnPContainerTypeConfiguration" }, { - "CommandName": "Get-PnPContentType", - "Rank": 1, + "Command": "Get-PnPContentType", "Id": 427, - "Command": "Get-PnPContentType" + "Rank": 1, + "CommandName": "Get-PnPContentType" }, { - "CommandName": "Get-PnPContentType", - "Rank": 2, + "Command": "Get-PnPContentType -InSiteHierarchy", "Id": 428, - "Command": "Get-PnPContentType -InSiteHierarchy" + "Rank": 2, + "CommandName": "Get-PnPContentType" }, { - "CommandName": "Get-PnPContentType", - "Rank": 3, + "Command": "Get-PnPContentType -Identity \"Project Document\"", "Id": 429, - "Command": "Get-PnPContentType -Identity \"Project Document\"" + "Rank": 3, + "CommandName": "Get-PnPContentType" }, { - "CommandName": "Get-PnPContentType", - "Rank": 4, + "Command": "Get-PnPContentType -List \"Documents\"", "Id": 430, - "Command": "Get-PnPContentType -List \"Documents\"" + "Rank": 4, + "CommandName": "Get-PnPContentType" }, { - "CommandName": "Get-PnPContentType", - "Rank": 5, + "Command": "Get-PnPContentType -Includes \"SchemaXml\"", "Id": 431, - "Command": "Get-PnPContentType -Includes \"SchemaXml\"" + "Rank": 5, + "CommandName": "Get-PnPContentType" }, { - "CommandName": "Get-PnPContentTypePublishingStatus", - "Rank": 1, + "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101", "Id": 432, - "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" + "Rank": 1, + "CommandName": "Get-PnPContentTypePublishingStatus" }, { - "CommandName": "Get-PnPCustomAction", - "Rank": 1, + "Command": "Get-PnPCustomAction", "Id": 433, - "Command": "Get-PnPCustomAction" + "Rank": 1, + "CommandName": "Get-PnPCustomAction" }, { - "CommandName": "Get-PnPCustomAction", - "Rank": 2, + "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 434, - "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 2, + "CommandName": "Get-PnPCustomAction" }, { - "CommandName": "Get-PnPCustomAction", - "Rank": 3, + "Command": "Get-PnPCustomAction -Scope web", "Id": 435, - "Command": "Get-PnPCustomAction -Scope web" + "Rank": 3, + "CommandName": "Get-PnPCustomAction" }, { - "CommandName": "Get-PnPDeletedContainer", - "Rank": 1, + "Command": "Get-PnPDeletedContainer", "Id": 436, - "Command": "Get-PnPDeletedContainer" + "Rank": 1, + "CommandName": "Get-PnPDeletedContainer" }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 1, + "Command": "Get-PnPDeletedMicrosoft365Group", "Id": 437, - "Command": "Get-PnPDeletedMicrosoft365Group" + "Rank": 1, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "CommandName": "Get-PnPDeletedMicrosoft365Group", - "Rank": 2, + "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 438, - "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Rank": 2, + "CommandName": "Get-PnPDeletedMicrosoft365Group" }, { - "CommandName": "Get-PnPDeletedTeam", - "Rank": 1, + "Command": "Get-PnPDeletedTeam", "Id": 439, - "Command": "Get-PnPDeletedTeam" + "Rank": 1, + "CommandName": "Get-PnPDeletedTeam" }, { - "CommandName": "Get-PnPDiagnostics", - "Rank": 1, + "Command": "Get-PnPDiagnostics", "Id": 440, - "Command": "Get-PnPDiagnostics" + "Rank": 1, + "CommandName": "Get-PnPDiagnostics" }, { - "CommandName": "Get-PnPDisableSpacesActivation", - "Rank": 1, + "Command": "Get-PnPDisableSpacesActivation", "Id": 441, - "Command": "Get-PnPDisableSpacesActivation" + "Rank": 1, + "CommandName": "Get-PnPDisableSpacesActivation" }, { - "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 1, + "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"", "Id": 442, - "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" + "Rank": 1, + "CommandName": "Get-PnPDocumentSetTemplate" }, { - "CommandName": "Get-PnPDocumentSetTemplate", - "Rank": 2, + "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"", "Id": 443, - "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" + "Rank": 2, + "CommandName": "Get-PnPDocumentSetTemplate" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 1, + "Command": "Get-PnPEventReceiver", "Id": 444, - "Command": "Get-PnPEventReceiver" + "Rank": 1, + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 2, + "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 445, - "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 2, + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 3, + "Command": "Get-PnPEventReceiver -Identity MyReceiver", "Id": 446, - "Command": "Get-PnPEventReceiver -Identity MyReceiver" + "Rank": 3, + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 4, + "Command": "Get-PnPEventReceiver -List \"ProjectList\"", "Id": 447, - "Command": "Get-PnPEventReceiver -List \"ProjectList\"" + "Rank": 4, + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 5, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 448, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 5, + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 6, + "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver", "Id": 449, - "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" + "Rank": 6, + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 7, + "Command": "Get-PnPEventReceiver -Scope Site", "Id": 450, - "Command": "Get-PnPEventReceiver -Scope Site" + "Rank": 7, + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 8, + "Command": "Get-PnPEventReceiver -Scope Web", "Id": 451, - "Command": "Get-PnPEventReceiver -Scope Web" + "Rank": 8, + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPEventReceiver", - "Rank": 9, + "Command": "Get-PnPEventReceiver -Scope All", "Id": 452, - "Command": "Get-PnPEventReceiver -Scope All" + "Rank": 9, + "CommandName": "Get-PnPEventReceiver" }, { - "CommandName": "Get-PnPException", - "Rank": 1, + "Command": "Get-PnPException", "Id": 453, - "Command": "Get-PnPException" + "Rank": 1, + "CommandName": "Get-PnPException" }, { - "CommandName": "Get-PnPException", - "Rank": 2, + "Command": "Get-PnPException -All", "Id": 454, - "Command": "Get-PnPException -All" + "Rank": 2, + "CommandName": "Get-PnPException" }, { - "CommandName": "Get-PnPExternalUser", - "Rank": 1, + "Command": "Get-PnPExternalUser -Position 0 -PageSize 2", "Id": 455, - "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" + "Rank": 1, + "CommandName": "Get-PnPExternalUser" }, { - "CommandName": "Get-PnPExternalUser", - "Rank": 2, + "Command": "Get-PnPExternalUser -Position 2 -PageSize 2", "Id": 456, - "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" + "Rank": 2, + "CommandName": "Get-PnPExternalUser" }, { - "CommandName": "Get-PnPFeature", - "Rank": 1, + "Command": "Get-PnPFeature", "Id": 457, - "Command": "Get-PnPFeature" + "Rank": 1, + "CommandName": "Get-PnPFeature" }, { - "CommandName": "Get-PnPFeature", - "Rank": 2, + "Command": "Get-PnPFeature -Scope Site", "Id": 458, - "Command": "Get-PnPFeature -Scope Site" + "Rank": 2, + "CommandName": "Get-PnPFeature" }, { - "CommandName": "Get-PnPFeature", - "Rank": 3, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 459, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 3, + "CommandName": "Get-PnPFeature" }, { - "CommandName": "Get-PnPFeature", - "Rank": 4, + "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site", "Id": 460, - "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" + "Rank": 4, + "CommandName": "Get-PnPFeature" }, { - "CommandName": "Get-PnPField", - "Rank": 1, + "Command": "Get-PnPField", "Id": 461, - "Command": "Get-PnPField" + "Rank": 1, + "CommandName": "Get-PnPField" }, { - "CommandName": "Get-PnPField", - "Rank": 2, + "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Id": 462, - "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Rank": 2, + "CommandName": "Get-PnPField" }, { - "CommandName": "Get-PnPField", - "Rank": 3, + "Command": "Get-PnPField -Group \"Custom Columns\"", "Id": 463, - "Command": "Get-PnPField -Group \"Custom Columns\"" + "Rank": 3, + "CommandName": "Get-PnPField" }, { - "CommandName": "Get-PnPFile", - "Rank": 1, + "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"", "Id": 464, - "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" + "Rank": 1, + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFile", - "Rank": 2, + "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile", "Id": 465, - "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" + "Rank": 2, + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFile", - "Rank": 3, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString", "Id": 466, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" + "Rank": 3, + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFile", - "Rank": 4, + "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject", "Id": 467, - "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" + "Rank": 4, + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFile", - "Rank": 5, + "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem", "Id": 468, - "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" + "Rank": 5, + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFile", - "Rank": 6, + "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile", "Id": 469, - "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" + "Rank": 6, + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFile", - "Rank": 7, + "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream", "Id": 470, - "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" + "Rank": 7, + "CommandName": "Get-PnPFile" }, { - "CommandName": "Get-PnPFileAnalyticsData", - "Rank": 1, + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"", "Id": 471, - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"" + "Rank": 1, + "CommandName": "Get-PnPFileAnalyticsData" }, { - "CommandName": "Get-PnPFileAnalyticsData", - "Rank": 2, + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays", "Id": 472, - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays" + "Rank": 2, + "CommandName": "Get-PnPFileAnalyticsData" }, { - "CommandName": "Get-PnPFileAnalyticsData", - "Rank": 3, + "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", "Id": 473, - "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" + "Rank": 3, + "CommandName": "Get-PnPFileAnalyticsData" }, { - "CommandName": "Get-PnPFileInFolder", - "Rank": 1, + "Command": "Get-PnPFileInFolder", "Id": 474, - "Command": "Get-PnPFileInFolder" + "Rank": 1, + "CommandName": "Get-PnPFileInFolder" }, { - "CommandName": "Get-PnPFileInFolder", - "Rank": 2, + "Command": "Get-PnPFileInFolder -Recurse", "Id": 475, - "Command": "Get-PnPFileInFolder -Recurse" + "Rank": 2, + "CommandName": "Get-PnPFileInFolder" }, { - "CommandName": "Get-PnPFileInFolder", - "Rank": 3, + "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"", "Id": 476, - "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"" + "Rank": 3, + "CommandName": "Get-PnPFileInFolder" }, { - "CommandName": "Get-PnPFileInFolder", - "Rank": 4, + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Id": 477, - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Rank": 4, + "CommandName": "Get-PnPFileInFolder" }, { - "CommandName": "Get-PnPFileInFolder", - "Rank": 5, + "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", "Id": 478, - "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" + "Rank": 5, + "CommandName": "Get-PnPFileInFolder" }, { - "CommandName": "Get-PnPFileSharingLink", - "Rank": 1, + "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 479, - "Command": "Get-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Rank": 1, + "CommandName": "Get-PnPFileSharingLink" }, { - "CommandName": "Get-PnPFileVersion", - "Rank": 1, + "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx", "Id": 480, - "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" + "Rank": 1, + "CommandName": "Get-PnPFileVersion" }, { - "CommandName": "Get-PnPFileVersion", - "Rank": 2, + "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"", "Id": 481, - "Command": "Get-PnPFileVersion -Url \"/sites/blah/Shared Documents/MyDocument.docx\"" + "Rank": 2, + "CommandName": "Get-PnPFileVersion" }, { - "CommandName": "Get-PnPFlow", - "Rank": 1, + "Command": "Get-PnPFlow -AsAdmin", "Id": 482, - "Command": "Get-PnPFlow -AsAdmin" + "Rank": 1, + "CommandName": "Get-PnPFlow" }, { - "CommandName": "Get-PnPFlow", - "Rank": 2, + "Command": "Get-PnPFlow -SharingStatus SharedWithMe", "Id": 483, - "Command": "Get-PnPFlow -SharingStatus SharedWithMe" + "Rank": 2, + "CommandName": "Get-PnPFlow" }, { - "CommandName": "Get-PnPFlow", - "Rank": 3, + "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182", "Id": 484, - "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" + "Rank": 3, + "CommandName": "Get-PnPFlow" }, { - "CommandName": "Get-PnPFlowOwner", - "Rank": 1, + "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30", "Id": 485, - "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" + "Rank": 1, + "CommandName": "Get-PnPFlowOwner" }, { - "CommandName": "Get-PnPFolder", - "Rank": 1, + "Command": "Get-PnPFolder", "Id": 486, - "Command": "Get-PnPFolder" + "Rank": 1, + "CommandName": "Get-PnPFolder" }, { - "CommandName": "Get-PnPFolder", - "Rank": 2, + "Command": "Get-PnPFolder -CurrentWebRootFolder", "Id": 487, - "Command": "Get-PnPFolder -CurrentWebRootFolder" + "Rank": 2, + "CommandName": "Get-PnPFolder" }, { - "CommandName": "Get-PnPFolder", - "Rank": 3, + "Command": "Get-PnPFolder -Url \"Shared Documents\"", "Id": 488, - "Command": "Get-PnPFolder -Url \"Shared Documents\"" + "Rank": 3, + "CommandName": "Get-PnPFolder" }, { - "CommandName": "Get-PnPFolder", - "Rank": 4, + "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"", "Id": 489, - "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" + "Rank": 4, + "CommandName": "Get-PnPFolder" }, { - "CommandName": "Get-PnPFolder", - "Rank": 5, + "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"", "Id": 490, - "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"" + "Rank": 5, + "CommandName": "Get-PnPFolder" }, { - "CommandName": "Get-PnPFolder", - "Rank": 6, + "Command": "Get-PnPFolder -List \"Shared Documents\"", "Id": 491, - "Command": "Get-PnPFolder -List \"Shared Documents\"" + "Rank": 6, + "CommandName": "Get-PnPFolder" }, { - "CommandName": "Get-PnPFolderInFolder", - "Rank": 1, + "Command": "Get-PnPFolderInFolder", "Id": 492, - "Command": "Get-PnPFolderInFolder" + "Rank": 1, + "CommandName": "Get-PnPFolderInFolder" }, { - "CommandName": "Get-PnPFolderInFolder", - "Rank": 2, + "Command": "Get-PnPFolderInFolder -Recurse", "Id": 493, - "Command": "Get-PnPFolderInFolder -Recurse" + "Rank": 2, + "CommandName": "Get-PnPFolderInFolder" }, { - "CommandName": "Get-PnPFolderInFolder", - "Rank": 3, + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"", "Id": 494, - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"" + "Rank": 3, + "CommandName": "Get-PnPFolderInFolder" }, { - "CommandName": "Get-PnPFolderInFolder", - "Rank": 4, + "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders", "Id": 495, - "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" + "Rank": 4, + "CommandName": "Get-PnPFolderInFolder" }, { - "CommandName": "Get-PnPFolderInFolder", - "Rank": 5, + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"", "Id": 496, - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" + "Rank": 5, + "CommandName": "Get-PnPFolderInFolder" }, { - "CommandName": "Get-PnPFolderInFolder", - "Rank": 6, + "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse", "Id": 497, - "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" + "Rank": 6, + "CommandName": "Get-PnPFolderInFolder" }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 1, + "Command": "Get-PnPFolderItem", "Id": 498, - "Command": "Get-PnPFolderItem" + "Rank": 1, + "CommandName": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 2, + "Command": "Get-PnPFolderItem -Recurse", "Id": 499, - "Command": "Get-PnPFolderItem -Recurse" + "Rank": 2, + "CommandName": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 3, + "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"", "Id": 500, - "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" + "Rank": 3, + "CommandName": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 4, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"", "Id": 501, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" + "Rank": 4, + "CommandName": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 5, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder", "Id": 502, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" + "Rank": 5, + "CommandName": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderItem", - "Rank": 6, + "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive", "Id": 503, - "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" + "Rank": 6, + "CommandName": "Get-PnPFolderItem" }, { - "CommandName": "Get-PnPFolderSharingLink", - "Rank": 1, + "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 504, - "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 1, + "CommandName": "Get-PnPFolderSharingLink" }, { - "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 1, + "Command": "Get-PnPFolderStorageMetric", "Id": 505, - "Command": "Get-PnPFolderStorageMetric" + "Rank": 1, + "CommandName": "Get-PnPFolderStorageMetric" }, { - "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 2, + "Command": "Get-PnPFolderStorageMetric -List \"Documents\"", "Id": 506, - "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" + "Rank": 2, + "CommandName": "Get-PnPFolderStorageMetric" }, { - "CommandName": "Get-PnPFolderStorageMetric", - "Rank": 3, + "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"", "Id": 507, - "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" + "Rank": 3, + "CommandName": "Get-PnPFolderStorageMetric" }, { - "CommandName": "Get-PnPFooter", - "Rank": 1, + "Command": "Get-PnPFooter", "Id": 508, - "Command": "Get-PnPFooter" + "Rank": 1, + "CommandName": "Get-PnPFooter" }, { - "CommandName": "Get-PnPGraphAccessToken", - "Rank": 1, + "Command": "Get-PnPGraphAccessToken", "Id": 509, - "Command": "Get-PnPGraphAccessToken" + "Rank": 1, + "CommandName": "Get-PnPGraphAccessToken" }, { - "CommandName": "Get-PnPGraphAccessToken", - "Rank": 2, + "Command": "Get-PnPGraphAccessToken -Decoded", "Id": 510, - "Command": "Get-PnPGraphAccessToken -Decoded" + "Rank": 2, + "CommandName": "Get-PnPGraphAccessToken" }, { - "CommandName": "Get-PnPGraphSubscription", - "Rank": 1, + "Command": "Get-PnPGraphSubscription", "Id": 511, - "Command": "Get-PnPGraphSubscription" + "Rank": 1, + "CommandName": "Get-PnPGraphSubscription" }, { - "CommandName": "Get-PnPGraphSubscription", - "Rank": 2, + "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98", "Id": 512, - "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" + "Rank": 2, + "CommandName": "Get-PnPGraphSubscription" }, { - "CommandName": "Get-PnPGroup", - "Rank": 1, + "Command": "Get-PnPGroup", "Id": 513, - "Command": "Get-PnPGroup" + "Rank": 1, + "CommandName": "Get-PnPGroup" }, { - "CommandName": "Get-PnPGroup", - "Rank": 2, + "Command": "Get-PnPGroup -Identity 'My Site Users'", "Id": 514, - "Command": "Get-PnPGroup -Identity 'My Site Users'" + "Rank": 2, + "CommandName": "Get-PnPGroup" }, { - "CommandName": "Get-PnPGroup", - "Rank": 3, + "Command": "Get-PnPGroup -AssociatedMemberGroup", "Id": 515, - "Command": "Get-PnPGroup -AssociatedMemberGroup" + "Rank": 3, + "CommandName": "Get-PnPGroup" }, { - "CommandName": "Get-PnPGroupMember", - "Rank": 1, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"", "Id": 516, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" + "Rank": 1, + "CommandName": "Get-PnPGroupMember" }, { - "CommandName": "Get-PnPGroupMember", - "Rank": 2, + "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"", "Id": 517, - "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" + "Rank": 2, + "CommandName": "Get-PnPGroupMember" }, { - "CommandName": "Get-PnPGroupPermissions", - "Rank": 1, + "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'", "Id": 518, - "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" + "Rank": 1, + "CommandName": "Get-PnPGroupPermissions" }, { - "CommandName": "Get-PnPHideDefaultThemes", - "Rank": 1, + "Command": "Get-PnPHideDefaultThemes", "Id": 519, - "Command": "Get-PnPHideDefaultThemes" + "Rank": 1, + "CommandName": "Get-PnPHideDefaultThemes" }, { - "CommandName": "Get-PnPHomePage", - "Rank": 1, + "Command": "Get-PnPHomePage", "Id": 520, - "Command": "Get-PnPHomePage" + "Rank": 1, + "CommandName": "Get-PnPHomePage" }, { - "CommandName": "Get-PnPHomeSite", - "Rank": 1, + "Command": "Get-PnPHomeSite", "Id": 521, - "Command": "Get-PnPHomeSite" + "Rank": 1, + "CommandName": "Get-PnPHomeSite" }, { - "CommandName": "Get-PnPHomeSite", - "Rank": 2, + "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled", "Id": 522, - "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" + "Rank": 2, + "CommandName": "Get-PnPHomeSite" }, { - "CommandName": "Get-PnPHomeSite", - "Rank": 3, + "Command": "Get-PnPHomeSite -Detailed", "Id": 523, - "Command": "Get-PnPHomeSite -Detailed" + "Rank": 3, + "CommandName": "Get-PnPHomeSite" }, { - "CommandName": "Get-PnPHubSite", - "Rank": 1, + "Command": "Get-PnPHubSite", "Id": 524, - "Command": "Get-PnPHubSite" + "Rank": 1, + "CommandName": "Get-PnPHubSite" }, { - "CommandName": "Get-PnPHubSite", - "Rank": 2, + "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 525, - "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Rank": 2, + "CommandName": "Get-PnPHubSite" }, { - "CommandName": "Get-PnPHubSite", - "Rank": 3, + "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"", "Id": 526, - "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" + "Rank": 3, + "CommandName": "Get-PnPHubSite" }, { - "CommandName": "Get-PnPHubSiteChild", - "Rank": 1, + "Command": "Get-PnPHubSiteChild", "Id": 527, - "Command": "Get-PnPHubSiteChild" + "Rank": 1, + "CommandName": "Get-PnPHubSiteChild" }, { - "CommandName": "Get-PnPHubSiteChild", - "Rank": 2, + "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"", "Id": 528, - "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" + "Rank": 2, + "CommandName": "Get-PnPHubSiteChild" }, { - "CommandName": "Get-PnPInPlaceRecordsManagement", - "Rank": 1, + "Command": "Get-PnPInPlaceRecordsManagement", "Id": 529, - "Command": "Get-PnPInPlaceRecordsManagement" + "Rank": 1, + "CommandName": "Get-PnPInPlaceRecordsManagement" }, { - "CommandName": "Get-PnPIsSiteAliasAvailable", - "Rank": 1, + "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"", "Id": 530, - "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" + "Rank": 1, + "CommandName": "Get-PnPIsSiteAliasAvailable" }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 1, + "Command": "Get-PnPJavaScriptLink", "Id": 531, - "Command": "Get-PnPJavaScriptLink" + "Rank": 1, + "CommandName": "Get-PnPJavaScriptLink" }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 2, + "Command": "Get-PnPJavaScriptLink -Scope All", "Id": 532, - "Command": "Get-PnPJavaScriptLink -Scope All" + "Rank": 2, + "CommandName": "Get-PnPJavaScriptLink" }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 3, + "Command": "Get-PnPJavaScriptLink -Scope Web", "Id": 533, - "Command": "Get-PnPJavaScriptLink -Scope Web" + "Rank": 3, + "CommandName": "Get-PnPJavaScriptLink" }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 4, + "Command": "Get-PnPJavaScriptLink -Scope Site", "Id": 534, - "Command": "Get-PnPJavaScriptLink -Scope Site" + "Rank": 4, + "CommandName": "Get-PnPJavaScriptLink" }, { - "CommandName": "Get-PnPJavaScriptLink", - "Rank": 5, + "Command": "Get-PnPJavaScriptLink -Name Test", "Id": 535, - "Command": "Get-PnPJavaScriptLink -Name Test" + "Rank": 5, + "CommandName": "Get-PnPJavaScriptLink" }, { - "CommandName": "Get-PnPKnowledgeHubSite", - "Rank": 1, + "Command": "Get-PnPKnowledgeHubSite", "Id": 536, - "Command": "Get-PnPKnowledgeHubSite" + "Rank": 1, + "CommandName": "Get-PnPKnowledgeHubSite" }, { - "CommandName": "Get-PnPLabel", - "Rank": 1, + "Command": "Get-PnPLabel", "Id": 537, - "Command": "Get-PnPLabel" + "Rank": 1, + "CommandName": "Get-PnPLabel" }, { - "CommandName": "Get-PnPLabel", - "Rank": 2, + "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly", "Id": 538, - "Command": "Get-PnPLabel -List \"Demo List\" -ValuesOnly" + "Rank": 2, + "CommandName": "Get-PnPLabel" }, { - "CommandName": "Get-PnPLargeListOperationStatus", - "Rank": 1, + "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481", "Id": 539, - "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" + "Rank": 1, + "CommandName": "Get-PnPLargeListOperationStatus" }, { - "CommandName": "Get-PnPList", - "Rank": 1, + "Command": "Get-PnPList", "Id": 540, - "Command": "Get-PnPList" + "Rank": 1, + "CommandName": "Get-PnPList" }, { - "CommandName": "Get-PnPList", - "Rank": 2, + "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 541, - "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 2, + "CommandName": "Get-PnPList" }, { - "CommandName": "Get-PnPList", - "Rank": 3, + "Command": "Get-PnPList -Identity Lists/Announcements", "Id": 542, - "Command": "Get-PnPList -Identity Lists/Announcements" + "Rank": 3, + "CommandName": "Get-PnPList" }, { - "CommandName": "Get-PnPList", - "Rank": 4, + "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}", "Id": 543, - "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" + "Rank": 4, + "CommandName": "Get-PnPList" }, { - "CommandName": "Get-PnPList", - "Rank": 5, + "Command": "Get-PnPList -Includes HasUniqueRoleAssignments", "Id": 544, - "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" + "Rank": 5, + "CommandName": "Get-PnPList" }, { - "CommandName": "Get-PnPListDesign", - "Rank": 1, + "Command": "Get-PnPListDesign", "Id": 545, - "Command": "Get-PnPListDesign" + "Rank": 1, + "CommandName": "Get-PnPListDesign" }, { - "CommandName": "Get-PnPListDesign", - "Rank": 2, + "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 546, - "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2, + "CommandName": "Get-PnPListDesign" }, { - "CommandName": "Get-PnPListDesign", - "Rank": 3, + "Command": "Get-PnPListDesign -Identity ListEvent", "Id": 547, - "Command": "Get-PnPListDesign -Identity ListEvent" + "Rank": 3, + "CommandName": "Get-PnPListDesign" }, { - "CommandName": "Get-PnPListInformationRightsManagement", - "Rank": 1, + "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"", "Id": 548, - "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" + "Rank": 1, + "CommandName": "Get-PnPListInformationRightsManagement" }, { - "CommandName": "Get-PnPListItem", - "Rank": 1, + "Command": "Get-PnPListItem -List Tasks", "Id": 549, - "Command": "Get-PnPListItem -List Tasks" + "Rank": 1, + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 2, + "Command": "Get-PnPListItem -List Tasks -Id 1", "Id": 550, - "Command": "Get-PnPListItem -List Tasks -Id 1" + "Rank": 2, + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 3, + "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3", "Id": 551, - "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" + "Rank": 3, + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 4, + "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"", "Id": 552, - "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" + "Rank": 4, + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 5, + "Command": "Get-PnPListItem -List Tasks -Query \"\"", "Id": 553, - "Command": "Get-PnPListItem -List Tasks -Query \"\"" + "Rank": 5, + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 6, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000", "Id": 554, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000" + "Rank": 6, + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 7, + "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }", "Id": 555, - "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" + "Rank": 7, + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 8, + "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"", "Id": 556, - "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" + "Rank": 8, + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItem", - "Rank": 9, + "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType", "Id": 557, - "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" + "Rank": 9, + "CommandName": "Get-PnPListItem" }, { - "CommandName": "Get-PnPListItemAttachment", - "Rank": 1, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"", "Id": 558, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" + "Rank": 1, + "CommandName": "Get-PnPListItemAttachment" }, { - "CommandName": "Get-PnPListItemAttachment", - "Rank": 2, + "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force", "Id": 559, - "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" + "Rank": 2, + "CommandName": "Get-PnPListItemAttachment" }, { - "CommandName": "Get-PnPListItemComment", - "Rank": 1, + "Command": "Get-PnPListItemComment -List Tasks -Identity 1", "Id": 560, - "Command": "Get-PnPListItemComment -List Tasks -Identity 1" + "Rank": 1, + "CommandName": "Get-PnPListItemComment" }, { - "CommandName": "Get-PnPListItemPermission", - "Rank": 1, + "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1", "Id": 561, - "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" + "Rank": 1, + "CommandName": "Get-PnPListItemPermission" }, { - "CommandName": "Get-PnPListItemVersion", - "Rank": 1, + "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1", "Id": 562, - "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" + "Rank": 1, + "CommandName": "Get-PnPListItemVersion" }, { - "CommandName": "Get-PnPListPermissions", - "Rank": 1, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60", "Id": 563, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" + "Rank": 1, + "CommandName": "Get-PnPListPermissions" }, { - "CommandName": "Get-PnPListPermissions", - "Rank": 2, + "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Id": 564, - "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" + "Rank": 2, + "CommandName": "Get-PnPListPermissions" }, { - "CommandName": "Get-PnPListRecordDeclaration", - "Rank": 1, + "Command": "Get-PnPListRecordDeclaration -List \"Documents\"", "Id": 565, - "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" + "Rank": 1, + "CommandName": "Get-PnPListRecordDeclaration" }, { - "CommandName": "Get-PnPMasterPage", - "Rank": 1, + "Command": "Get-PnPMasterPage", "Id": 566, - "Command": "Get-PnPMasterPage" + "Rank": 1, + "CommandName": "Get-PnPMasterPage" }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 1, + "Command": "Get-PnPMessageCenterAnnouncement", "Id": 567, - "Command": "Get-PnPMessageCenterAnnouncement" + "Rank": 1, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "CommandName": "Get-PnPMessageCenterAnnouncement", - "Rank": 2, + "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"", "Id": 568, - "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" + "Rank": 2, + "CommandName": "Get-PnPMessageCenterAnnouncement" }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 1, + "Command": "Get-PnPMicrosoft365ExpiringGroup", "Id": 569, - "Command": "Get-PnPMicrosoft365ExpiringGroup" + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", - "Rank": 2, + "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93", "Id": 570, - "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup" }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 1, + "Command": "Get-PnPMicrosoft365Group", "Id": 571, - "Command": "Get-PnPMicrosoft365Group" + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 2, + "Command": "Get-PnPMicrosoft365Group -Identity $groupId", "Id": 572, - "Command": "Get-PnPMicrosoft365Group -Identity $groupId" + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 3, + "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName", "Id": 573, - "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 4, + "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName", "Id": 574, - "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" + "Rank": 4, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 5, + "Command": "Get-PnPMicrosoft365Group -Identity $group", "Id": 575, - "Command": "Get-PnPMicrosoft365Group -Identity $group" + "Rank": 5, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365Group", - "Rank": 6, + "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl", "Id": 576, - "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" + "Rank": 6, + "CommandName": "Get-PnPMicrosoft365Group" }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupEndpoint", "Id": 577, - "Command": "Get-PnPMicrosoft365GroupEndpoint" + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"", "Id": 578, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", - "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 579, - "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint" }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId", "Id": 580, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupMember -Identity $group", "Id": 581, - "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "CommandName": "Get-PnPMicrosoft365GroupMember", - "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest", "Id": 582, - "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupMember" }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId", "Id": 583, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "CommandName": "Get-PnPMicrosoft365GroupOwner", - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group", "Id": 584, - "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupOwner" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettings", "Id": 585, - "Command": "Get-PnPMicrosoft365GroupSettings" + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettings", - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId", "Id": 586, - "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates", "Id": 587, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates" + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"", "Id": 588, - "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates" }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupTeam", "Id": 589, - "Command": "Get-PnPMicrosoft365GroupTeam" + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"", "Id": 590, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "CommandName": "Get-PnPMicrosoft365GroupTeam", - "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 591, - "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupTeam" }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 1, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity", "Id": 592, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity" + "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 2, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"", "Id": 593, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" + "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", - "Rank": 3, + "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409", "Id": 594, - "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" + "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity" }, { - "CommandName": "Get-PnPNavigationNode", - "Rank": 1, + "Command": "Get-PnPNavigationNode", "Id": 595, - "Command": "Get-PnPNavigationNode" + "Rank": 1, + "CommandName": "Get-PnPNavigationNode" }, { - "CommandName": "Get-PnPNavigationNode", - "Rank": 2, + "Command": "Get-PnPNavigationNode -Location QuickLaunch", "Id": 596, - "Command": "Get-PnPNavigationNode -Location QuickLaunch" + "Rank": 2, + "CommandName": "Get-PnPNavigationNode" }, { - "CommandName": "Get-PnPNavigationNode", - "Rank": 3, + "Command": "Get-PnPNavigationNode -Location TopNavigationBar", "Id": 597, - "Command": "Get-PnPNavigationNode -Location TopNavigationBar" + "Rank": 3, + "CommandName": "Get-PnPNavigationNode" }, { - "CommandName": "Get-PnPOrgAssetsLibrary", - "Rank": 1, + "Command": "Get-PnPOrgAssetsLibrary", "Id": 598, - "Command": "Get-PnPOrgAssetsLibrary" + "Rank": 1, + "CommandName": "Get-PnPOrgAssetsLibrary" }, { - "CommandName": "Get-PnPOrgNewsSite", - "Rank": 1, + "Command": "Get-PnPOrgNewsSite", "Id": 599, - "Command": "Get-PnPOrgNewsSite" + "Rank": 1, + "CommandName": "Get-PnPOrgNewsSite" }, { - "CommandName": "Get-PnPPage", - "Rank": 1, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\"", "Id": 600, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" + "Rank": 1, + "CommandName": "Get-PnPPage" }, { - "CommandName": "Get-PnPPage", - "Rank": 2, + "Command": "Get-PnPPage \"MyPage\"", "Id": 601, - "Command": "Get-PnPPage \"MyPage\"" + "Rank": 2, + "CommandName": "Get-PnPPage" }, { - "CommandName": "Get-PnPPage", - "Rank": 3, + "Command": "Get-PnPPage \"Templates/MyPageTemplate\"", "Id": 602, - "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" + "Rank": 3, + "CommandName": "Get-PnPPage" }, { - "CommandName": "Get-PnPPage", - "Rank": 4, + "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")", "Id": 603, - "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" + "Rank": 4, + "CommandName": "Get-PnPPage" }, { - "CommandName": "Get-PnPPageComponent", - "Rank": 1, + "Command": "Get-PnPPageComponent -Page Home", "Id": 604, - "Command": "Get-PnPPageComponent -Page Home" + "Rank": 1, + "CommandName": "Get-PnPPageComponent" }, { - "CommandName": "Get-PnPPageComponent", - "Rank": 2, + "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 605, - "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 2, + "CommandName": "Get-PnPPageComponent" }, { - "CommandName": "Get-PnPPageComponent", - "Rank": 3, + "Command": "Get-PnPPageComponent -Page Home -ListAvailable", "Id": 606, - "Command": "Get-PnPPageComponent -Page Home -ListAvailable" + "Rank": 3, + "CommandName": "Get-PnPPageComponent" }, { - "CommandName": "Get-PnPPlannerBucket", - "Rank": 1, + "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 607, - "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" + "Rank": 1, + "CommandName": "Get-PnPPlannerBucket" }, { - "CommandName": "Get-PnPPlannerConfiguration", - "Rank": 1, + "Command": "Get-PnPPlannerConfiguration", "Id": 608, - "Command": "Get-PnPPlannerConfiguration" + "Rank": 1, + "CommandName": "Get-PnPPlannerConfiguration" }, { - "CommandName": "Get-PnPPlannerPlan", - "Rank": 1, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\"", "Id": 609, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" + "Rank": 1, + "CommandName": "Get-PnPPlannerPlan" }, { - "CommandName": "Get-PnPPlannerPlan", - "Rank": 2, + "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"", "Id": 610, - "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" + "Rank": 2, + "CommandName": "Get-PnPPlannerPlan" }, { - "CommandName": "Get-PnPPlannerPlan", - "Rank": 3, + "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities", "Id": 611, - "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" + "Rank": 3, + "CommandName": "Get-PnPPlannerPlan" }, { - "CommandName": "Get-PnPPlannerRosterMember", - "Rank": 1, + "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Id": 612, - "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Rank": 1, + "CommandName": "Get-PnPPlannerRosterMember" }, { - "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 1, + "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"", "Id": 613, - "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" + "Rank": 1, + "CommandName": "Get-PnPPlannerRosterPlan" }, { - "CommandName": "Get-PnPPlannerRosterPlan", - "Rank": 2, + "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 614, - "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 2, + "CommandName": "Get-PnPPlannerRosterPlan" }, { - "CommandName": "Get-PnPPlannerTask", - "Rank": 1, + "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"", "Id": 615, - "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" + "Rank": 1, + "CommandName": "Get-PnPPlannerTask" }, { - "CommandName": "Get-PnPPlannerTask", - "Rank": 2, + "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Id": 616, - "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Rank": 2, + "CommandName": "Get-PnPPlannerTask" }, { - "CommandName": "Get-PnPPlannerTask", - "Rank": 3, + "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"", "Id": 617, - "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" + "Rank": 3, + "CommandName": "Get-PnPPlannerTask" }, { - "CommandName": "Get-PnPPlannerUserPolicy", - "Rank": 1, + "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", "Id": 618, - "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1, + "CommandName": "Get-PnPPlannerUserPolicy" }, { - "CommandName": "Get-PnPPowerPlatformConnector", - "Rank": 1, + "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)", "Id": 619, - "Command": "Get-PnPPowerPlatformConnector -Environment (Get-PnPPowerPlatformEnvironment)" + "Rank": 1, + "CommandName": "Get-PnPPowerPlatformConnector" }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 1, + "Command": "Get-PnPPowerPlatformEnvironment", "Id": 620, - "Command": "Get-PnPPowerPlatformEnvironment" + "Rank": 1, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 2, + "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true", "Id": 621, - "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" + "Rank": 2, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "CommandName": "Get-PnPPowerPlatformEnvironment", - "Rank": 3, + "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"", "Id": 622, - "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" + "Rank": 3, + "CommandName": "Get-PnPPowerPlatformEnvironment" }, { - "CommandName": "Get-PnPPowerPlatformSolution", - "Rank": 1, + "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)", "Id": 623, - "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment)" + "Rank": 1, + "CommandName": "Get-PnPPowerPlatformSolution" }, { - "CommandName": "Get-PnPPowerPlatformSolution", - "Rank": 2, + "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'", "Id": 624, - "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Name 'My Solution Name'" + "Rank": 2, + "CommandName": "Get-PnPPowerPlatformSolution" }, { - "CommandName": "Get-PnPPowerShellTelemetryEnabled", - "Rank": 1, + "Command": "Get-PnPPowerShellTelemetryEnabled", "Id": 625, - "Command": "Get-PnPPowerShellTelemetryEnabled" + "Rank": 1, + "CommandName": "Get-PnPPowerShellTelemetryEnabled" }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 1, + "Command": "Get-PnPPropertyBag", "Id": 626, - "Command": "Get-PnPPropertyBag" + "Rank": 1, + "CommandName": "Get-PnPPropertyBag" }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 2, + "Command": "Get-PnPPropertyBag -Key MyKey", "Id": 627, - "Command": "Get-PnPPropertyBag -Key MyKey" + "Rank": 2, + "CommandName": "Get-PnPPropertyBag" }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 3, + "Command": "Get-PnPPropertyBag -Folder /MyFolder", "Id": 628, - "Command": "Get-PnPPropertyBag -Folder /MyFolder" + "Rank": 3, + "CommandName": "Get-PnPPropertyBag" }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 4, + "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey", "Id": 629, - "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" + "Rank": 4, + "CommandName": "Get-PnPPropertyBag" }, { - "CommandName": "Get-PnPPropertyBag", - "Rank": 5, + "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey", "Id": 630, - "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" + "Rank": 5, + "CommandName": "Get-PnPPropertyBag" }, { - "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 1, + "Command": "Get-PnPPublishingImageRendition", "Id": 631, - "Command": "Get-PnPPublishingImageRendition" + "Rank": 1, + "CommandName": "Get-PnPPublishingImageRendition" }, { - "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 2, + "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"", "Id": 632, - "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" + "Rank": 2, + "CommandName": "Get-PnPPublishingImageRendition" }, { - "CommandName": "Get-PnPPublishingImageRendition", - "Rank": 3, + "Command": "Get-PnPPublishingImageRendition -Identity 2", "Id": 633, - "Command": "Get-PnPPublishingImageRendition -Identity 2" + "Rank": 3, + "CommandName": "Get-PnPPublishingImageRendition" }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 1, + "Command": "Get-PnPRecycleBinItem", "Id": 634, - "Command": "Get-PnPRecycleBinItem" + "Rank": 1, + "CommandName": "Get-PnPRecycleBinItem" }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 2, + "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2", "Id": 635, - "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" + "Rank": 2, + "CommandName": "Get-PnPRecycleBinItem" }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 3, + "Command": "Get-PnPRecycleBinItem -FirstStage", "Id": 636, - "Command": "Get-PnPRecycleBinItem -FirstStage" + "Rank": 3, + "CommandName": "Get-PnPRecycleBinItem" }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 4, + "Command": "Get-PnPRecycleBinItem -SecondStage", "Id": 637, - "Command": "Get-PnPRecycleBinItem -SecondStage" + "Rank": 4, + "CommandName": "Get-PnPRecycleBinItem" }, { - "CommandName": "Get-PnPRecycleBinItem", - "Rank": 5, + "Command": "Get-PnPRecycleBinItem -RowLimit 10000", "Id": 638, - "Command": "Get-PnPRecycleBinItem -RowLimit 10000" + "Rank": 5, + "CommandName": "Get-PnPRecycleBinItem" }, { - "CommandName": "Get-PnPRequestAccessEmails", - "Rank": 1, + "Command": "Get-PnPRequestAccessEmails", "Id": 639, - "Command": "Get-PnPRequestAccessEmails" + "Rank": 1, + "CommandName": "Get-PnPRequestAccessEmails" }, { - "CommandName": "Get-PnPRetentionLabel", - "Rank": 1, + "Command": "Get-PnPRetentionLabel", "Id": 640, - "Command": "Get-PnPRetentionLabel" + "Rank": 1, + "CommandName": "Get-PnPRetentionLabel" }, { - "CommandName": "Get-PnPRetentionLabel", - "Rank": 2, + "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995", "Id": 641, - "Command": "Get-PnPRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" + "Rank": 2, + "CommandName": "Get-PnPRetentionLabel" }, { - "CommandName": "Get-PnPRoleDefinition", - "Rank": 1, + "Command": "Get-PnPRoleDefinition", "Id": 642, - "Command": "Get-PnPRoleDefinition" + "Rank": 1, + "CommandName": "Get-PnPRoleDefinition" }, { - "CommandName": "Get-PnPRoleDefinition", - "Rank": 2, + "Command": "Get-PnPRoleDefinition -Identity Read", "Id": 643, - "Command": "Get-PnPRoleDefinition -Identity Read" + "Rank": 2, + "CommandName": "Get-PnPRoleDefinition" }, { - "CommandName": "Get-PnPRoleDefinition", - "Rank": 3, + "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }", "Id": 644, - "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" + "Rank": 3, + "CommandName": "Get-PnPRoleDefinition" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 1, + "Command": "Get-PnPSearchConfiguration", "Id": 645, - "Command": "Get-PnPSearchConfiguration" + "Rank": 1, + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 2, + "Command": "Get-PnPSearchConfiguration -Scope Site", "Id": 646, - "Command": "Get-PnPSearchConfiguration -Scope Site" + "Rank": 2, + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 3, + "Command": "Get-PnPSearchConfiguration -Scope Subscription", "Id": 647, - "Command": "Get-PnPSearchConfiguration -Scope Subscription" + "Rank": 3, + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 4, + "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 648, - "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Rank": 4, + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 5, + "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings", "Id": 649, - "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" + "Rank": 5, + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 6, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv", "Id": 650, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" + "Rank": 6, + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 7, + "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published", "Id": 651, - "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" + "Rank": 7, + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchConfiguration", - "Rank": 8, + "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false", "Id": 652, - "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" + "Rank": 8, + "CommandName": "Get-PnPSearchConfiguration" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 1, + "Command": "Get-PnPSearchCrawlLog", "Id": 653, - "Command": "Get-PnPSearchCrawlLog" + "Rank": 1, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 2, + "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"", "Id": 654, - "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" + "Rank": 2, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 3, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles", "Id": 655, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" + "Rank": 3, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 4, + "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"", "Id": 656, - "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" + "Rank": 4, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 5, + "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10", "Id": 657, - "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" + "Rank": 5, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 6, + "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)", "Id": 658, - "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" + "Rank": 6, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchCrawlLog", - "Rank": 7, + "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat", "Id": 659, - "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" + "Rank": 7, + "CommandName": "Get-PnPSearchCrawlLog" }, { - "CommandName": "Get-PnPSearchSettings", - "Rank": 1, + "Command": "Get-PnPSearchSettings", "Id": 660, - "Command": "Get-PnPSearchSettings" + "Rank": 1, + "CommandName": "Get-PnPSearchSettings" }, { - "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 1, + "Command": "Get-PnPServiceCurrentHealth", "Id": 661, - "Command": "Get-PnPServiceCurrentHealth" + "Rank": 1, + "CommandName": "Get-PnPServiceCurrentHealth" }, { - "CommandName": "Get-PnPServiceCurrentHealth", - "Rank": 2, + "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"", "Id": 662, - "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" + "Rank": 2, + "CommandName": "Get-PnPServiceCurrentHealth" }, { - "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 1, + "Command": "Get-PnPServiceHealthIssue", "Id": 663, - "Command": "Get-PnPServiceHealthIssue" + "Rank": 1, + "CommandName": "Get-PnPServiceHealthIssue" }, { - "CommandName": "Get-PnPServiceHealthIssue", - "Rank": 2, + "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"", "Id": 664, - "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" + "Rank": 2, + "CommandName": "Get-PnPServiceHealthIssue" }, { - "CommandName": "Get-PnPSharePointAddIn", - "Rank": 1, + "Command": "Get-PnPSharePointAddIn", "Id": 665, - "Command": "Get-PnPSharePointAddIn" + "Rank": 1, + "CommandName": "Get-PnPSharePointAddIn" }, { - "CommandName": "Get-PnPSharePointAddIn", - "Rank": 2, + "Command": "Get-PnPSharePointAddIn -IncludeSubsites", "Id": 666, - "Command": "Get-PnPSharePointAddIn -IncludeSubsites" + "Rank": 2, + "CommandName": "Get-PnPSharePointAddIn" }, { - "CommandName": "Get-PnPSharingForNonOwnersOfSite", - "Rank": 1, + "Command": "Get-PnPSharingForNonOwnersOfSite", "Id": 667, - "Command": "Get-PnPSharingForNonOwnersOfSite" + "Rank": 1, + "CommandName": "Get-PnPSharingForNonOwnersOfSite" }, { - "CommandName": "Get-PnPSite", - "Rank": 1, + "Command": "Get-PnPSite", "Id": 668, - "Command": "Get-PnPSite" + "Rank": 1, + "CommandName": "Get-PnPSite" }, { - "CommandName": "Get-PnPSite", - "Rank": 2, + "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl", "Id": 669, - "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" + "Rank": 2, + "CommandName": "Get-PnPSite" }, { - "CommandName": "Get-PnPSiteAnalyticsData", - "Rank": 1, + "Command": "Get-PnPSiteAnalyticsData -All", "Id": 670, - "Command": "Get-PnPSiteAnalyticsData -All" + "Rank": 1, + "CommandName": "Get-PnPSiteAnalyticsData" }, { - "CommandName": "Get-PnPSiteAnalyticsData", - "Rank": 2, + "Command": "Get-PnPSiteAnalyticsData -LastSevenDays", "Id": 671, - "Command": "Get-PnPSiteAnalyticsData -LastSevenDays" + "Rank": 2, + "CommandName": "Get-PnPSiteAnalyticsData" }, { - "CommandName": "Get-PnPSiteAnalyticsData", - "Rank": 3, + "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", "Id": 672, - "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" + "Rank": 3, + "CommandName": "Get-PnPSiteAnalyticsData" }, { - "CommandName": "Get-PnPSiteAnalyticsData", - "Rank": 4, + "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day", "Id": 673, - "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" + "Rank": 4, + "CommandName": "Get-PnPSiteAnalyticsData" }, { - "CommandName": "Get-PnPSiteClosure", - "Rank": 1, + "Command": "Get-PnPSiteClosure", "Id": 674, - "Command": "Get-PnPSiteClosure" + "Rank": 1, + "CommandName": "Get-PnPSiteClosure" }, { - "CommandName": "Get-PnPSiteCollectionAdmin", - "Rank": 1, + "Command": "Get-PnPSiteCollectionAdmin", "Id": 675, - "Command": "Get-PnPSiteCollectionAdmin" + "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAdmin" }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 1, + "Command": "Get-PnPSiteCollectionAppCatalog", "Id": 676, - "Command": "Get-PnPSiteCollectionAppCatalog" + "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 2, + "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite", "Id": 677, - "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" + "Rank": 2, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Get-PnPSiteCollectionAppCatalog", - "Rank": 3, + "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites", "Id": 678, - "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" + "Rank": 3, + "CommandName": "Get-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Get-PnPSiteCollectionTermStore", - "Rank": 1, + "Command": "Get-PnPSiteCollectionTermStore", "Id": 679, - "Command": "Get-PnPSiteCollectionTermStore" + "Rank": 1, + "CommandName": "Get-PnPSiteCollectionTermStore" }, { - "CommandName": "Get-PnPSiteDesign", - "Rank": 1, + "Command": "Get-PnPSiteDesign", "Id": 680, - "Command": "Get-PnPSiteDesign" + "Rank": 1, + "CommandName": "Get-PnPSiteDesign" }, { - "CommandName": "Get-PnPSiteDesign", - "Rank": 2, + "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 681, - "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2, + "CommandName": "Get-PnPSiteDesign" }, { - "CommandName": "Get-PnPSiteDesignRights", - "Rank": 1, + "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 682, - "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "CommandName": "Get-PnPSiteDesignRights" }, { - "CommandName": "Get-PnPSiteDesignRun", - "Rank": 1, + "Command": "Get-PnPSiteDesignRun", "Id": 683, - "Command": "Get-PnPSiteDesignRun" + "Rank": 1, + "CommandName": "Get-PnPSiteDesignRun" }, { - "CommandName": "Get-PnPSiteDesignRun", - "Rank": 2, + "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"", "Id": 684, - "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" + "Rank": 2, + "CommandName": "Get-PnPSiteDesignRun" }, { - "CommandName": "Get-PnPSiteDesignTask", - "Rank": 1, + "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82", "Id": 685, - "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" + "Rank": 1, + "CommandName": "Get-PnPSiteDesignTask" }, { - "CommandName": "Get-PnPSiteDesignTask", - "Rank": 2, + "Command": "Get-PnPSiteDesignTask", "Id": 686, - "Command": "Get-PnPSiteDesignTask" + "Rank": 2, + "CommandName": "Get-PnPSiteDesignTask" }, { - "CommandName": "Get-PnPSiteDesignTask", - "Rank": 3, + "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"", "Id": 687, - "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" + "Rank": 3, + "CommandName": "Get-PnPSiteDesignTask" }, { - "CommandName": "Get-PnPSiteGroup", - "Rank": 1, + "Command": "Get-PnPSiteGroup", "Id": 688, - "Command": "Get-PnPSiteGroup" + "Rank": 1, + "CommandName": "Get-PnPSiteGroup" }, { - "CommandName": "Get-PnPSiteGroup", - "Rank": 2, + "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Id": 689, - "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Rank": 2, + "CommandName": "Get-PnPSiteGroup" }, { - "CommandName": "Get-PnPSiteGroup", - "Rank": 3, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"", "Id": 690, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" + "Rank": 3, + "CommandName": "Get-PnPSiteGroup" }, { - "CommandName": "Get-PnPSiteGroup", - "Rank": 4, + "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"", "Id": 691, - "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" + "Rank": 4, + "CommandName": "Get-PnPSiteGroup" }, { - "CommandName": "Get-PnPSitePolicy", - "Rank": 1, + "Command": "Get-PnPSitePolicy", "Id": 692, - "Command": "Get-PnPSitePolicy" + "Rank": 1, + "CommandName": "Get-PnPSitePolicy" }, { - "CommandName": "Get-PnPSitePolicy", - "Rank": 2, + "Command": "Get-PnPSitePolicy -AllAvailable", "Id": 693, - "Command": "Get-PnPSitePolicy -AllAvailable" + "Rank": 2, + "CommandName": "Get-PnPSitePolicy" }, { - "CommandName": "Get-PnPSitePolicy", - "Rank": 3, + "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"", "Id": 694, - "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" + "Rank": 3, + "CommandName": "Get-PnPSitePolicy" }, { - "CommandName": "Get-PnPSiteScript", - "Rank": 1, + "Command": "Get-PnPSiteScript", "Id": 695, - "Command": "Get-PnPSiteScript" + "Rank": 1, + "CommandName": "Get-PnPSiteScript" }, { - "CommandName": "Get-PnPSiteScript", - "Rank": 2, + "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 696, - "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2, + "CommandName": "Get-PnPSiteScript" }, { - "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 1, + "Command": "Get-PnPSiteScriptFromList -List \"MyList\"", "Id": 697, - "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" + "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromList" }, { - "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 2, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"", "Id": 698, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" + "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromList" }, { - "CommandName": "Get-PnPSiteScriptFromList", - "Rank": 3, + "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"", "Id": 699, - "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" + "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromList" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 1, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAll", "Id": 700, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" + "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 2, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll", "Id": 701, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" + "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 3, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"", "Id": 702, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" + "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 4, + "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems", "Id": 703, - "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" + "Rank": 4, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 5, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists", "Id": 704, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" + "Rank": 5, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "CommandName": "Get-PnPSiteScriptFromWeb", - "Rank": 6, + "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite", "Id": 705, - "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" + "Rank": 6, + "CommandName": "Get-PnPSiteScriptFromWeb" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 1, + "Command": "Get-PnPSiteSearchQueryResults", "Id": 706, - "Command": "Get-PnPSiteSearchQueryResults" + "Rank": 1, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 2, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"", "Id": 707, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" + "Rank": 2, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 3, + "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"", "Id": 708, - "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" + "Rank": 3, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 4, + "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"", "Id": 709, - "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" + "Rank": 4, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 5, + "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10", "Id": 710, - "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" + "Rank": 5, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSearchQueryResults", - "Rank": 6, + "Command": "Get-PnPSiteSearchQueryResults -All", "Id": 711, - "Command": "Get-PnPSiteSearchQueryResults -All" + "Rank": 6, + "CommandName": "Get-PnPSiteSearchQueryResults" }, { - "CommandName": "Get-PnPSiteSensitivityLabel", - "Rank": 1, + "Command": "Get-PnPSiteSensitivityLabel", "Id": 712, - "Command": "Get-PnPSiteSensitivityLabel" + "Rank": 1, + "CommandName": "Get-PnPSiteSensitivityLabel" }, { - "CommandName": "Get-PnPSiteSetVersionPolicyProgress", - "Rank": 1, + "Command": "Get-PnPSiteSetVersionPolicyProgress", "Id": 713, - "Command": "Get-PnPSiteSetVersionPolicyProgress" + "Rank": 1, + "CommandName": "Get-PnPSiteSetVersionPolicyProgress" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 1, + "Command": "Get-PnPSiteTemplate -Out template.pnp", "Id": 714, - "Command": "Get-PnPSiteTemplate -Out template.pnp" + "Rank": 1, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 2, + "Command": "Get-PnPSiteTemplate -Out template.xml", "Id": 715, - "Command": "Get-PnPSiteTemplate -Out template.xml" + "Rank": 2, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 3, + "Command": "Get-PnPSiteTemplate -Out template.md", "Id": 716, - "Command": "Get-PnPSiteTemplate -Out template.md" + "Rank": 3, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 4, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503", "Id": 717, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" + "Rank": 4, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 5, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups", "Id": 718, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" + "Rank": 5, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 6, + "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup", "Id": 719, - "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" + "Rank": 6, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 7, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles", "Id": 720, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" + "Rank": 7, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 8, + "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity", "Id": 721, - "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" + "Rank": 8, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 9, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources", "Id": 722, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" + "Rank": 9, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 10, + "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources", "Id": 723, - "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" + "Rank": 10, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 11, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"", "Id": 724, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" + "Rank": 11, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 12, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication", "Id": 725, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" + "Rank": 12, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 13, + "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"", "Id": 726, - "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" + "Rank": 13, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteTemplate", - "Rank": 14, + "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources", "Id": 727, - "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" + "Rank": 14, + "CommandName": "Get-PnPSiteTemplate" }, { - "CommandName": "Get-PnPSiteUserInvitations", - "Rank": 1, + "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Id": 728, - "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Rank": 1, + "CommandName": "Get-PnPSiteUserInvitations" }, { - "CommandName": "Get-PnPSiteVersionPolicy", - "Rank": 1, + "Command": "Get-PnPSiteVersionPolicy", "Id": 729, - "Command": "Get-PnPSiteVersionPolicy" + "Rank": 1, + "CommandName": "Get-PnPSiteVersionPolicy" }, { - "CommandName": "Get-PnPStorageEntity", - "Rank": 1, + "Command": "Get-PnPStorageEntity", "Id": 730, - "Command": "Get-PnPStorageEntity" + "Rank": 1, + "CommandName": "Get-PnPStorageEntity" }, { - "CommandName": "Get-PnPStorageEntity", - "Rank": 2, + "Command": "Get-PnPStorageEntity -Key MyKey", "Id": 731, - "Command": "Get-PnPStorageEntity -Key MyKey" + "Rank": 2, + "CommandName": "Get-PnPStorageEntity" }, { - "CommandName": "Get-PnPStorageEntity", - "Rank": 3, + "Command": "Get-PnPStorageEntity -Scope Site", "Id": 732, - "Command": "Get-PnPStorageEntity -Scope Site" + "Rank": 3, + "CommandName": "Get-PnPStorageEntity" }, { - "CommandName": "Get-PnPStorageEntity", - "Rank": 4, + "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site", "Id": 733, - "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" + "Rank": 4, + "CommandName": "Get-PnPStorageEntity" }, { - "CommandName": "Get-PnPStoredCredential", - "Rank": 1, + "Command": "Get-PnPStoredCredential -Name O365", "Id": 734, - "Command": "Get-PnPStoredCredential -Name O365" + "Rank": 1, + "CommandName": "Get-PnPStoredCredential" }, { - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", - "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", "Id": 735, - "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState" }, { - "CommandName": "Get-PnPStructuralNavigationCacheWebState", - "Rank": 1, + "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", "Id": 736, - "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheWebState" }, { - "CommandName": "Get-PnPSubscribeSharePointNewsDigest", - "Rank": 1, + "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'", "Id": 737, - "Command": "Get-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com'" + "Rank": 1, + "CommandName": "Get-PnPSubscribeSharePointNewsDigest" }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 1, + "Command": "Get-PnPSubWeb", "Id": 738, - "Command": "Get-PnPSubWeb" + "Rank": 1, + "CommandName": "Get-PnPSubWeb" }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 2, + "Command": "Get-PnPSubWeb -Recurse", "Id": 739, - "Command": "Get-PnPSubWeb -Recurse" + "Rank": 2, + "CommandName": "Get-PnPSubWeb" }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 3, + "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description", "Id": 740, - "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" + "Rank": 3, + "CommandName": "Get-PnPSubWeb" }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 4, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse", "Id": 741, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" + "Rank": 4, + "CommandName": "Get-PnPSubWeb" }, { - "CommandName": "Get-PnPSubWeb", - "Rank": 5, + "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb", "Id": 742, - "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" + "Rank": 5, + "CommandName": "Get-PnPSubWeb" }, { - "CommandName": "Get-PnPSyntexModel", - "Rank": 1, + "Command": "Get-PnPSyntexModel", "Id": 743, - "Command": "Get-PnPSyntexModel" + "Rank": 1, + "CommandName": "Get-PnPSyntexModel" }, { - "CommandName": "Get-PnPSyntexModel", - "Rank": 2, + "Command": "Get-PnPSyntexModel -Identity 1", "Id": 744, - "Command": "Get-PnPSyntexModel -Identity 1" + "Rank": 2, + "CommandName": "Get-PnPSyntexModel" }, { - "CommandName": "Get-PnPSyntexModel", - "Rank": 3, + "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"", "Id": 745, - "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" + "Rank": 3, + "CommandName": "Get-PnPSyntexModel" }, { - "CommandName": "Get-PnPSyntexModelPublication", - "Rank": 1, + "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"", "Id": 746, - "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" + "Rank": 1, + "CommandName": "Get-PnPSyntexModelPublication" }, { - "CommandName": "Get-PnPTaxonomyItem", - "Rank": 1, + "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"", "Id": 747, - "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" + "Rank": 1, + "CommandName": "Get-PnPTaxonomyItem" }, { - "CommandName": "Get-PnPTeamsApp", - "Rank": 1, + "Command": "Get-PnPTeamsApp", "Id": 748, - "Command": "Get-PnPTeamsApp" + "Rank": 1, + "CommandName": "Get-PnPTeamsApp" }, { - "CommandName": "Get-PnPTeamsApp", - "Rank": 2, + "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4", "Id": 749, - "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" + "Rank": 2, + "CommandName": "Get-PnPTeamsApp" }, { - "CommandName": "Get-PnPTeamsApp", - "Rank": 3, + "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"", "Id": 750, - "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" + "Rank": 3, + "CommandName": "Get-PnPTeamsApp" }, { - "CommandName": "Get-PnPTeamsChannel", - "Rank": 1, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8", "Id": 751, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" + "Rank": 1, + "CommandName": "Get-PnPTeamsChannel" }, { - "CommandName": "Get-PnPTeamsChannel", - "Rank": 2, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"", "Id": 752, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" + "Rank": 2, + "CommandName": "Get-PnPTeamsChannel" }, { - "CommandName": "Get-PnPTeamsChannel", - "Rank": 3, + "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Id": 753, - "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Rank": 3, + "CommandName": "Get-PnPTeamsChannel" }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 1, + "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"", "Id": 754, - "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "CommandName": "Get-PnPTeamsChannelFilesFolder", - "Rank": 2, + "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"", "Id": 755, - "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelFilesFolder" }, { - "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 1, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"", "Id": 756, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessage" }, { - "CommandName": "Get-PnPTeamsChannelMessage", - "Rank": 2, + "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293", "Id": 757, - "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessage" }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 1, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted", "Id": 758, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "CommandName": "Get-PnPTeamsChannelMessageReply", - "Rank": 2, + "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630", "Id": 759, - "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessageReply" }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 1, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"", "Id": 760, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" + "Rank": 1, + "CommandName": "Get-PnPTeamsChannelUser" }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 2, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member", "Id": 761, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" + "Rank": 2, + "CommandName": "Get-PnPTeamsChannelUser" }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 3, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com", "Id": 762, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" + "Rank": 3, + "CommandName": "Get-PnPTeamsChannelUser" }, { - "CommandName": "Get-PnPTeamsChannelUser", - "Rank": 4, + "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Id": 763, - "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "Rank": 4, + "CommandName": "Get-PnPTeamsChannelUser" }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 1, + "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e", "Id": 764, - "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" + "Rank": 1, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "CommandName": "Get-PnPTeamsPrimaryChannel", - "Rank": 2, + "Command": "Get-PnPTeamsPrimaryChannel -Team Sales", "Id": 765, - "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" + "Rank": 2, + "CommandName": "Get-PnPTeamsPrimaryChannel" }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 1, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype", "Id": 766, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" + "Rank": 1, + "CommandName": "Get-PnPTeamsTab" }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 2, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"", "Id": 767, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" + "Rank": 2, + "CommandName": "Get-PnPTeamsTab" }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 3, + "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25", "Id": 768, - "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" + "Rank": 3, + "CommandName": "Get-PnPTeamsTab" }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 4, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"", "Id": 769, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" + "Rank": 4, + "CommandName": "Get-PnPTeamsTab" }, { - "CommandName": "Get-PnPTeamsTab", - "Rank": 5, + "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"", "Id": 770, - "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" + "Rank": 5, + "CommandName": "Get-PnPTeamsTab" }, { - "CommandName": "Get-PnPTeamsTag", - "Rank": 1, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Id": 771, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Rank": 1, + "CommandName": "Get-PnPTeamsTag" }, { - "CommandName": "Get-PnPTeamsTag", - "Rank": 2, + "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Id": 772, - "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Rank": 2, + "CommandName": "Get-PnPTeamsTag" }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 1, + "Command": "Get-PnPTeamsTeam", "Id": 773, - "Command": "Get-PnPTeamsTeam" + "Rank": 1, + "CommandName": "Get-PnPTeamsTeam" }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 2, + "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"", "Id": 774, - "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" + "Rank": 2, + "CommandName": "Get-PnPTeamsTeam" }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 3, + "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"", "Id": 775, - "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" + "Rank": 3, + "CommandName": "Get-PnPTeamsTeam" }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 4, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"", "Id": 776, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" + "Rank": 4, + "CommandName": "Get-PnPTeamsTeam" }, { - "CommandName": "Get-PnPTeamsTeam", - "Rank": 5, + "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"", "Id": 777, - "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" + "Rank": 5, + "CommandName": "Get-PnPTeamsTeam" }, { - "CommandName": "Get-PnPTeamsUser", - "Rank": 1, + "Command": "Get-PnPTeamsUser -Team MyTeam", "Id": 778, - "Command": "Get-PnPTeamsUser -Team MyTeam" + "Rank": 1, + "CommandName": "Get-PnPTeamsUser" }, { - "CommandName": "Get-PnPTeamsUser", - "Rank": 2, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner", "Id": 779, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" + "Rank": 2, + "CommandName": "Get-PnPTeamsUser" }, { - "CommandName": "Get-PnPTeamsUser", - "Rank": 3, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member", "Id": 780, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" + "Rank": 3, + "CommandName": "Get-PnPTeamsUser" }, { - "CommandName": "Get-PnPTeamsUser", - "Rank": 4, + "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest", "Id": 781, - "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" + "Rank": 4, + "CommandName": "Get-PnPTeamsUser" }, { - "CommandName": "Get-PnPTemporarilyDisableAppBar", - "Rank": 1, + "Command": "Get-PnPTemporarilyDisableAppBar", "Id": 782, - "Command": "Get-PnPTemporarilyDisableAppBar" + "Rank": 1, + "CommandName": "Get-PnPTemporarilyDisableAppBar" }, { - "CommandName": "Get-PnPTenant", - "Rank": 1, + "Command": "Get-PnPTenant", "Id": 783, - "Command": "Get-PnPTenant" + "Rank": 1, + "CommandName": "Get-PnPTenant" }, { - "CommandName": "Get-PnPTenantAppCatalogUrl", - "Rank": 1, + "Command": "Get-PnPTenantAppCatalogUrl", "Id": 784, - "Command": "Get-PnPTenantAppCatalogUrl" + "Rank": 1, + "CommandName": "Get-PnPTenantAppCatalogUrl" }, { - "CommandName": "Get-PnPTenantCdnEnabled", - "Rank": 1, + "Command": "Get-PnPTenantCdnEnabled -CdnType Public", "Id": 785, - "Command": "Get-PnPTenantCdnEnabled -CdnType Public" + "Rank": 1, + "CommandName": "Get-PnPTenantCdnEnabled" }, { - "CommandName": "Get-PnPTenantCdnOrigin", - "Rank": 1, + "Command": "Get-PnPTenantCdnOrigin -CdnType Public", "Id": 786, - "Command": "Get-PnPTenantCdnOrigin -CdnType Public" + "Rank": 1, + "CommandName": "Get-PnPTenantCdnOrigin" }, { - "CommandName": "Get-PnPTenantCdnPolicies", - "Rank": 1, + "Command": "Get-PnPTenantCdnPolicies -CdnType Public", "Id": 787, - "Command": "Get-PnPTenantCdnPolicies -CdnType Public" + "Rank": 1, + "CommandName": "Get-PnPTenantCdnPolicies" }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 1, + "Command": "Get-PnPTenantDeletedSite", "Id": 788, - "Command": "Get-PnPTenantDeletedSite" + "Rank": 1, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 2, + "Command": "Get-PnPTenantDeletedSite -Detailed", "Id": 789, - "Command": "Get-PnPTenantDeletedSite -Detailed" + "Rank": 2, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 3, + "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 790, - "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 3, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 4, + "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite", "Id": 791, - "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" + "Rank": 4, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "CommandName": "Get-PnPTenantDeletedSite", - "Rank": 5, + "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite", "Id": 792, - "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" + "Rank": 5, + "CommandName": "Get-PnPTenantDeletedSite" }, { - "CommandName": "Get-PnPTenantId", - "Rank": 1, + "Command": "Get-PnPTenantId", "Id": 793, - "Command": "Get-PnPTenantId" + "Rank": 1, + "CommandName": "Get-PnPTenantId" }, { - "CommandName": "Get-PnPTenantId", - "Rank": 2, + "Command": "Get-PnPTenantId contoso", "Id": 794, - "Command": "Get-PnPTenantId contoso" + "Rank": 2, + "CommandName": "Get-PnPTenantId" }, { - "CommandName": "Get-PnPTenantId", - "Rank": 3, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com", "Id": 795, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" + "Rank": 3, + "CommandName": "Get-PnPTenantId" }, { - "CommandName": "Get-PnPTenantId", - "Rank": 4, + "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment", "Id": 796, - "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" + "Rank": 4, + "CommandName": "Get-PnPTenantId" }, { - "CommandName": "Get-PnPTenantInfo", - "Rank": 1, + "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"", "Id": 797, - "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" + "Rank": 1, + "CommandName": "Get-PnPTenantInfo" }, { - "CommandName": "Get-PnPTenantInfo", - "Rank": 2, + "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"", "Id": 798, - "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" + "Rank": 2, + "CommandName": "Get-PnPTenantInfo" }, { - "CommandName": "Get-PnPTenantInfo", - "Rank": 3, + "Command": "Get-PnPTenantInfo", "Id": 799, - "Command": "Get-PnPTenantInfo" + "Rank": 3, + "CommandName": "Get-PnPTenantInfo" }, { - "CommandName": "Get-PnPTenantInfo", - "Rank": 4, + "Command": "Get-PnPTenantInfo -CurrentTenant", "Id": 800, - "Command": "Get-PnPTenantInfo -CurrentTenant" + "Rank": 4, + "CommandName": "Get-PnPTenantInfo" }, { - "CommandName": "Get-PnPTenantInstance", - "Rank": 1, + "Command": "Get-PnPTenantInstance", "Id": 801, - "Command": "Get-PnPTenantInstance" + "Rank": 1, + "CommandName": "Get-PnPTenantInstance" }, { - "CommandName": "Get-PnPTenantRecycleBinItem", - "Rank": 1, + "Command": "Get-PnPTenantRecycleBinItem", "Id": 802, - "Command": "Get-PnPTenantRecycleBinItem" + "Rank": 1, + "CommandName": "Get-PnPTenantRecycleBinItem" }, { - "CommandName": "Get-PnPTenantSequence", - "Rank": 1, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject", "Id": 803, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject" + "Rank": 1, + "CommandName": "Get-PnPTenantSequence" }, { - "CommandName": "Get-PnPTenantSequence", - "Rank": 2, + "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"", "Id": 804, - "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" + "Rank": 2, + "CommandName": "Get-PnPTenantSequence" }, { - "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 1, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence", "Id": 805, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" + "Rank": 1, + "CommandName": "Get-PnPTenantSequenceSite" }, { - "CommandName": "Get-PnPTenantSequenceSite", - "Rank": 2, + "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e", "Id": 806, - "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" + "Rank": 2, + "CommandName": "Get-PnPTenantSequenceSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 1, + "Command": "Get-PnPTenantSite", "Id": 807, - "Command": "Get-PnPTenantSite" + "Rank": 1, + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 2, + "Command": "Get-PnPTenantSite -Detailed", "Id": 808, - "Command": "Get-PnPTenantSite -Detailed" + "Rank": 2, + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 3, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites", "Id": 809, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites" + "Rank": 3, + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 4, + "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"", "Id": 810, - "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" + "Rank": 4, + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 5, + "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"", "Id": 811, - "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" + "Rank": 5, + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 6, + "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a", "Id": 812, - "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" + "Rank": 6, + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 7, + "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0", "Id": 813, - "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" + "Rank": 7, + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 8, + "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"", "Id": 814, - "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" + "Rank": 8, + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSite", - "Rank": 9, + "Command": "Get-PnPTenantSite -GroupIdDefined $true", "Id": 815, - "Command": "Get-PnPTenantSite -GroupIdDefined $true" + "Rank": 9, + "CommandName": "Get-PnPTenantSite" }, { - "CommandName": "Get-PnPTenantSyncClientRestriction", - "Rank": 1, + "Command": "Get-PnPTenantSyncClientRestriction", "Id": 816, - "Command": "Get-PnPTenantSyncClientRestriction" + "Rank": 1, + "CommandName": "Get-PnPTenantSyncClientRestriction" }, { - "CommandName": "Get-PnPTenantTemplate", - "Rank": 1, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml", "Id": 817, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" + "Rank": 1, + "CommandName": "Get-PnPTenantTemplate" }, { - "CommandName": "Get-PnPTenantTemplate", - "Rank": 2, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite", "Id": 818, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" + "Rank": 2, + "CommandName": "Get-PnPTenantTemplate" }, { - "CommandName": "Get-PnPTenantTemplate", - "Rank": 3, + "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force", "Id": 819, - "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" + "Rank": 3, + "CommandName": "Get-PnPTenantTemplate" }, { - "CommandName": "Get-PnPTenantTheme", - "Rank": 1, + "Command": "Get-PnPTenantTheme", "Id": 820, - "Command": "Get-PnPTenantTheme" + "Rank": 1, + "CommandName": "Get-PnPTenantTheme" }, { - "CommandName": "Get-PnPTenantTheme", - "Rank": 2, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"", "Id": 821, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Rank": 2, + "CommandName": "Get-PnPTenantTheme" }, { - "CommandName": "Get-PnPTenantTheme", - "Rank": 3, + "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson", "Id": 822, - "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" + "Rank": 3, + "CommandName": "Get-PnPTenantTheme" }, { - "CommandName": "Get-PnPTerm", - "Rank": 1, + "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 823, - "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 1, + "CommandName": "Get-PnPTerm" }, { - "CommandName": "Get-PnPTerm", - "Rank": 2, + "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 824, - "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2, + "CommandName": "Get-PnPTerm" }, { - "CommandName": "Get-PnPTerm", - "Rank": 3, + "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 825, - "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 3, + "CommandName": "Get-PnPTerm" }, { - "CommandName": "Get-PnPTerm", - "Rank": 4, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive", "Id": 826, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" + "Rank": 4, + "CommandName": "Get-PnPTerm" }, { - "CommandName": "Get-PnPTerm", - "Rank": 5, + "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated", "Id": 827, - "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" + "Rank": 5, + "CommandName": "Get-PnPTerm" }, { - "CommandName": "Get-PnPTermGroup", - "Rank": 1, + "Command": "Get-PnPTermGroup", "Id": 828, - "Command": "Get-PnPTermGroup" + "Rank": 1, + "CommandName": "Get-PnPTermGroup" }, { - "CommandName": "Get-PnPTermGroup", - "Rank": 2, + "Command": "Get-PnPTermGroup -Identity \"Departments\"", "Id": 829, - "Command": "Get-PnPTermGroup -Identity \"Departments\"" + "Rank": 2, + "CommandName": "Get-PnPTermGroup" }, { - "CommandName": "Get-PnPTermGroup", - "Rank": 3, + "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d", "Id": 830, - "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" + "Rank": 3, + "CommandName": "Get-PnPTermGroup" }, { - "CommandName": "Get-PnPTermLabel", - "Rank": 1, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83", "Id": 831, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" + "Rank": 1, + "CommandName": "Get-PnPTermLabel" }, { - "CommandName": "Get-PnPTermLabel", - "Rank": 2, + "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033", "Id": 832, - "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" + "Rank": 2, + "CommandName": "Get-PnPTermLabel" }, { - "CommandName": "Get-PnPTermLabel", - "Rank": 3, + "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 833, - "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 3, + "CommandName": "Get-PnPTermLabel" }, { - "CommandName": "Get-PnPTermSet", - "Rank": 1, + "Command": "Get-PnPTermSet -TermGroup \"Corporate\"", "Id": 834, - "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" + "Rank": 1, + "CommandName": "Get-PnPTermSet" }, { - "CommandName": "Get-PnPTermSet", - "Rank": 2, + "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"", "Id": 835, - "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2, + "CommandName": "Get-PnPTermSet" }, { - "CommandName": "Get-PnPTermSet", - "Rank": 3, + "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate", "Id": 836, - "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" + "Rank": 3, + "CommandName": "Get-PnPTermSet" }, { - "CommandName": "Get-PnPTheme", - "Rank": 1, + "Command": "Get-PnPTheme", "Id": 837, - "Command": "Get-PnPTheme" + "Rank": 1, + "CommandName": "Get-PnPTheme" }, { - "CommandName": "Get-PnPTheme", - "Rank": 2, + "Command": "Get-PnPTheme -DetectCurrentComposedLook", "Id": 838, - "Command": "Get-PnPTheme -DetectCurrentComposedLook" + "Rank": 2, + "CommandName": "Get-PnPTheme" }, { - "CommandName": "Get-PnPTimeZoneId", - "Rank": 1, + "Command": "Get-PnPTimeZoneId", "Id": 839, - "Command": "Get-PnPTimeZoneId" + "Rank": 1, + "CommandName": "Get-PnPTimeZoneId" }, { - "CommandName": "Get-PnPTimeZoneId", - "Rank": 2, + "Command": "Get-PnPTimeZoneId -Match Stockholm", "Id": 840, - "Command": "Get-PnPTimeZoneId -Match Stockholm" + "Rank": 2, + "CommandName": "Get-PnPTimeZoneId" }, { - "CommandName": "Get-PnPUnfurlLink", - "Rank": 1, + "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"", "Id": 841, - "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" + "Rank": 1, + "CommandName": "Get-PnPUnfurlLink" }, { - "CommandName": "Get-PnPUnifiedAuditLog", - "Rank": 1, + "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)", "Id": 842, - "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date).AddDays(-2) -EndTime (Get-Date).AddDays(-1)" + "Rank": 1, + "CommandName": "Get-PnPUnifiedAuditLog" }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 1, + "Command": "Get-PnPUPABulkImportStatus", "Id": 843, - "Command": "Get-PnPUPABulkImportStatus" + "Rank": 1, + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 2, + "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails", "Id": 844, - "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" + "Rank": 2, + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 3, + "Command": "Get-PnPUPABulkImportStatus -JobId ", "Id": 845, - "Command": "Get-PnPUPABulkImportStatus -JobId " + "Rank": 3, + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "CommandName": "Get-PnPUPABulkImportStatus", - "Rank": 4, + "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails", "Id": 846, - "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" + "Rank": 4, + "CommandName": "Get-PnPUPABulkImportStatus" }, { - "CommandName": "Get-PnPUser", - "Rank": 1, + "Command": "Get-PnPUser", "Id": 847, - "Command": "Get-PnPUser" + "Rank": 1, + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", - "Rank": 2, + "Command": "Get-PnPUser -Identity 23", "Id": 848, - "Command": "Get-PnPUser -Identity 23" + "Rank": 2, + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", - "Rank": 3, + "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"", "Id": 849, - "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" + "Rank": 3, + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", - "Rank": 4, + "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"", "Id": 850, - "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" + "Rank": 4, + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", - "Rank": 5, + "Command": "Get-PnPUser -WithRightsAssigned", "Id": 851, - "Command": "Get-PnPUser -WithRightsAssigned" + "Rank": 5, + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", - "Rank": 6, + "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1", "Id": 852, - "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" + "Rank": 6, + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUser", - "Rank": 7, + "Command": "Get-PnPUser -WithRightsAssignedDetailed", "Id": 853, - "Command": "Get-PnPUser -WithRightsAssignedDetailed" + "Rank": 7, + "CommandName": "Get-PnPUser" }, { - "CommandName": "Get-PnPUserOneDriveQuota", - "Rank": 1, + "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'", "Id": 854, - "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" + "Rank": 1, + "CommandName": "Get-PnPUserOneDriveQuota" }, { - "CommandName": "Get-PnPUserProfileProperty", - "Rank": 1, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'", "Id": 855, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" + "Rank": 1, + "CommandName": "Get-PnPUserProfileProperty" }, { - "CommandName": "Get-PnPUserProfileProperty", - "Rank": 2, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'", "Id": 856, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" + "Rank": 2, + "CommandName": "Get-PnPUserProfileProperty" }, { - "CommandName": "Get-PnPUserProfileProperty", - "Rank": 3, + "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'", "Id": 857, - "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" + "Rank": 3, + "CommandName": "Get-PnPUserProfileProperty" }, { - "CommandName": "Get-PnPView", - "Rank": 1, + "Command": "Get-PnPView -List \"Demo List\"", "Id": 858, - "Command": "Get-PnPView -List \"Demo List\"" + "Rank": 1, + "CommandName": "Get-PnPView" }, { - "CommandName": "Get-PnPView", - "Rank": 2, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"", "Id": 859, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" + "Rank": 2, + "CommandName": "Get-PnPView" }, { - "CommandName": "Get-PnPView", - "Rank": 3, + "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"", "Id": 860, - "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" + "Rank": 3, + "CommandName": "Get-PnPView" }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 1, + "Command": "Get-PnPVivaConnectionsDashboardACE", "Id": 861, - "Command": "Get-PnPVivaConnectionsDashboardACE" + "Rank": 1, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Get-PnPVivaConnectionsDashboardACE", - "Rank": 2, + "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Id": 862, - "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Rank": 2, + "CommandName": "Get-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Get-PnPWeb", - "Rank": 1, + "Command": "Get-PnPWeb", "Id": 863, - "Command": "Get-PnPWeb" + "Rank": 1, + "CommandName": "Get-PnPWeb" }, { - "CommandName": "Get-PnPWebHeader", - "Rank": 1, + "Command": "Get-PnPWebHeader", "Id": 864, - "Command": "Get-PnPWebHeader" + "Rank": 1, + "CommandName": "Get-PnPWebHeader" }, { - "CommandName": "Get-PnPWebhookSubscription", - "Rank": 1, + "Command": "Get-PnPWebhookSubscription -List MyList", "Id": 865, - "Command": "Get-PnPWebhookSubscription -List MyList" + "Rank": 1, + "CommandName": "Get-PnPWebhookSubscription" }, { - "CommandName": "Get-PnPWebPart", - "Rank": 1, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"", "Id": 866, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" + "Rank": 1, + "CommandName": "Get-PnPWebPart" }, { - "CommandName": "Get-PnPWebPart", - "Rank": 2, + "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 867, - "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 2, + "CommandName": "Get-PnPWebPart" }, { - "CommandName": "Get-PnPWebPartProperty", - "Rank": 1, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914", "Id": 868, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" + "Rank": 1, + "CommandName": "Get-PnPWebPartProperty" }, { - "CommandName": "Get-PnPWebPartProperty", - "Rank": 2, + "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"", "Id": 869, - "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" + "Rank": 2, + "CommandName": "Get-PnPWebPartProperty" }, { - "CommandName": "Get-PnPWebPartXml", - "Rank": 1, + "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 870, - "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 1, + "CommandName": "Get-PnPWebPartXml" }, { - "CommandName": "Get-PnPWebTemplates", - "Rank": 1, + "Command": "Get-PnPWebPermission -Identity (Get-PnPWeb) -PrincipalId 60", "Id": 871, - "Command": "Get-PnPWebTemplates" + "Rank": 1, + "CommandName": "Get-PnPWebPermission" }, { - "CommandName": "Get-PnPWebTemplates", - "Rank": 2, + "Command": "Get-PnPWebPermission -Identity \"subsite\" -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id", "Id": 872, - "Command": "Get-PnPWebTemplates -LCID 1033" + "Rank": 2, + "CommandName": "Get-PnPWebPermission" }, { - "CommandName": "Get-PnPWebTemplates", - "Rank": 3, + "Command": "Get-PnPWebTemplates", "Id": 873, - "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" + "Rank": 1, + "CommandName": "Get-PnPWebTemplates" }, { - "CommandName": "Get-PnPWikiPageContent", - "Rank": 1, + "Command": "Get-PnPWebTemplates -LCID 1033", "Id": 874, - "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" + "Rank": 2, + "CommandName": "Get-PnPWebTemplates" }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Rank": 1, + "Command": "Get-PnPWebTemplates -CompatibilityLevel 15", "Id": 875, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" + "Rank": 3, + "CommandName": "Get-PnPWebTemplates" }, { - "CommandName": "Grant-PnPAzureADAppSitePermission", - "Rank": 2, + "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'", "Id": 876, - "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects" + "Rank": 1, + "CommandName": "Get-PnPWikiPageContent" }, { - "CommandName": "Grant-PnPHubSiteRights", - "Rank": 1, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read", "Id": 877, - "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 1, + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { - "CommandName": "Grant-PnPSiteDesignRights", - "Rank": 1, + "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects", "Id": 878, - "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 2, + "CommandName": "Grant-PnPAzureADAppSitePermission" }, { - "CommandName": "Grant-PnPTenantServicePrincipalPermission", - "Rank": 1, + "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 879, - "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Rank": 1, + "CommandName": "Grant-PnPHubSiteRights" }, { - "CommandName": "Import-PnPTaxonomy", - "Rank": 1, + "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 880, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" + "Rank": 1, + "CommandName": "Grant-PnPSiteDesignRights" }, { - "CommandName": "Import-PnPTaxonomy", - "Rank": 2, + "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Id": 881, - "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" + "Rank": 1, + "CommandName": "Grant-PnPTenantServicePrincipalPermission" }, { - "CommandName": "Import-PnPTaxonomy", - "Rank": 3, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'", "Id": 882, - "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" + "Rank": 1, + "CommandName": "Import-PnPTaxonomy" }, { - "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 1, + "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'", "Id": 883, - "Command": "Import-PnPTermGroupFromXml -Xml $xml" + "Rank": 2, + "CommandName": "Import-PnPTaxonomy" }, { - "CommandName": "Import-PnPTermGroupFromXml", - "Rank": 2, + "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt", "Id": 884, - "Command": "Import-PnPTermGroupFromXml -Path input.xml" + "Rank": 3, + "CommandName": "Import-PnPTaxonomy" }, { - "CommandName": "Import-PnPTermSet", - "Rank": 1, + "Command": "Import-PnPTermGroupFromXml -Xml $xml", "Id": 885, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" + "Rank": 1, + "CommandName": "Import-PnPTermGroupFromXml" }, { - "CommandName": "Import-PnPTermSet", - "Rank": 2, + "Command": "Import-PnPTermGroupFromXml -Path input.xml", "Id": 886, - "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" + "Rank": 2, + "CommandName": "Import-PnPTermGroupFromXml" }, { - "CommandName": "Import-PnPTermSet", - "Rank": 3, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions", "Id": 887, - "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" + "Rank": 1, + "CommandName": "Import-PnPTermSet" }, { - "CommandName": "Install-PnPApp", - "Rank": 1, + "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'", "Id": 888, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 2, + "CommandName": "Import-PnPTermSet" }, { - "CommandName": "Install-PnPApp", - "Rank": 2, + "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'", "Id": 889, - "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 3, + "CommandName": "Import-PnPTermSet" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 1, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 890, - "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" + "Rank": 1, + "CommandName": "Install-PnPApp" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 2, + "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 891, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" + "Rank": 2, + "CommandName": "Install-PnPApp" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 3, + "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'", "Id": 892, - "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" + "Rank": 1, + "CommandName": "Invoke-PnPGraphMethod" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 4, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete", "Id": 893, - "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual" + "Rank": 2, + "CommandName": "Invoke-PnPGraphMethod" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 5, + "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }", "Id": 894, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"" + "Rank": 3, + "CommandName": "Invoke-PnPGraphMethod" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 6, + "Command": "Invoke-PnPGraphMethod -Url \"v1.0/users?$filter=accountEnabled ne true&$count=true\" -Method Get -ConsistencyLevelEventual", "Id": 895, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" + "Rank": 4, + "CommandName": "Invoke-PnPGraphMethod" }, { - "CommandName": "Invoke-PnPGraphMethod", - "Rank": 7, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users\"", "Id": 896, - "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"" + "Rank": 5, + "CommandName": "Invoke-PnPGraphMethod" }, { - "CommandName": "Invoke-PnPListDesign", - "Rank": 1, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg", "Id": 897, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 6, + "CommandName": "Invoke-PnPGraphMethod" }, { - "CommandName": "Invoke-PnPListDesign", - "Rank": 2, + "Command": "Invoke-PnPGraphMethod \"https://graph.microsoft.com/v1.0/users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"", "Id": 898, - "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Rank": 7, + "CommandName": "Invoke-PnPGraphMethod" }, { - "CommandName": "Invoke-PnPQuery", - "Rank": 1, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 899, - "Command": "Invoke-PnPQuery -RetryCount 5" + "Rank": 1, + "CommandName": "Invoke-PnPListDesign" }, { - "CommandName": "Invoke-PnPSiteDesign", - "Rank": 1, + "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Id": 900, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2, + "CommandName": "Invoke-PnPListDesign" }, { - "CommandName": "Invoke-PnPSiteDesign", - "Rank": 2, + "Command": "Invoke-PnPQuery -RetryCount 5", "Id": 901, - "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" + "Rank": 1, + "CommandName": "Invoke-PnPQuery" }, { - "CommandName": "Invoke-PnPSiteScript", - "Rank": 1, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 902, - "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" + "Rank": 1, + "CommandName": "Invoke-PnPSiteDesign" }, { - "CommandName": "Invoke-PnPSiteSwap", - "Rank": 1, + "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"", "Id": 903, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" + "Rank": 2, + "CommandName": "Invoke-PnPSiteDesign" }, { - "CommandName": "Invoke-PnPSiteSwap", - "Rank": 2, + "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite", "Id": 904, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" + "Rank": 1, + "CommandName": "Invoke-PnPSiteScript" }, { - "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", "Id": 905, - "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection" + "Rank": 1, + "CommandName": "Invoke-PnPSiteSwap" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 1, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive", "Id": 906, - "Command": "Invoke-PnPSiteTemplate -Path template.xml" + "Rank": 2, + "CommandName": "Invoke-PnPSiteSwap" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 2, + "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection", "Id": 907, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" + "Rank": 3, + "CommandName": "Invoke-PnPSiteSwap" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 3, + "Command": "Invoke-PnPSiteTemplate -Path template.xml", "Id": 908, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Rank": 1, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 4, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources", "Id": 909, - "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" + "Rank": 2, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 5, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Id": 910, - "Command": "Invoke-PnPSiteTemplate -Path template.pnp" + "Rank": 3, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 6, + "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity", "Id": 911, - "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" + "Rank": 4, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 7, + "Command": "Invoke-PnPSiteTemplate -Path template.pnp", "Id": 912, - "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template" + "Rank": 5, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSiteTemplate", - "Rank": 8, + "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"", "Id": 913, - "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" + "Rank": 6, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPSPRestMethod", - "Rank": 1, + "Command": "Invoke-PnPSiteTemplate -Path .\\ -InputInstance $template", "Id": 914, - "Command": "Invoke-PnPSPRestMethod -Url /_api/web" + "Rank": 7, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 1, + "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"", "Id": 915, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" + "Rank": 8, + "CommandName": "Invoke-PnPSiteTemplate" }, { - "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 2, + "Command": "Invoke-PnPSPRestMethod -Url /_api/web", "Id": 916, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" + "Rank": 1, + "CommandName": "Invoke-PnPSPRestMethod" }, { - "CommandName": "Invoke-PnPTenantTemplate", - "Rank": 3, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp", "Id": 917, - "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" + "Rank": 1, + "CommandName": "Invoke-PnPTenantTemplate" }, { - "CommandName": "Invoke-PnPWebAction", - "Rank": 1, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"", "Id": 918, - "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" + "Rank": 2, + "CommandName": "Invoke-PnPTenantTemplate" }, { - "CommandName": "Invoke-PnPWebAction", - "Rank": 2, + "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}", "Id": 919, - "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" + "Rank": 3, + "CommandName": "Invoke-PnPTenantTemplate" }, { - "CommandName": "Measure-PnPList", - "Rank": 1, + "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}", "Id": 920, - "Command": "Measure-PnPList \"Documents\"" + "Rank": 1, + "CommandName": "Invoke-PnPWebAction" }, { - "CommandName": "Measure-PnPList", - "Rank": 2, + "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}", "Id": 921, - "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" + "Rank": 2, + "CommandName": "Invoke-PnPWebAction" }, { - "CommandName": "Measure-PnPWeb", - "Rank": 1, + "Command": "Measure-PnPList \"Documents\"", "Id": 922, - "Command": "Measure-PnPWeb" + "Rank": 1, + "CommandName": "Measure-PnPList" }, { - "CommandName": "Measure-PnPWeb", - "Rank": 2, + "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel", "Id": 923, - "Command": "Measure-PnPWeb $web -Recursive" + "Rank": 2, + "CommandName": "Measure-PnPList" }, { - "CommandName": "Merge-PnPTerm", - "Rank": 1, + "Command": "Measure-PnPWeb", "Id": 924, - "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b" + "Rank": 1, + "CommandName": "Measure-PnPWeb" }, { - "CommandName": "Move-PnPFile", - "Rank": 1, + "Command": "Measure-PnPWeb $web -Recursive", "Id": 925, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" + "Rank": 2, + "CommandName": "Measure-PnPWeb" }, { - "CommandName": "Move-PnPFile", - "Rank": 2, + "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b", "Id": 926, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" + "Rank": 1, + "CommandName": "Merge-PnPTerm" }, { - "CommandName": "Move-PnPFile", - "Rank": 3, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"", "Id": 927, - "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Rank": 1, + "CommandName": "Move-PnPFile" }, { - "CommandName": "Move-PnPFile", - "Rank": 4, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite", "Id": 928, - "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" + "Rank": 2, + "CommandName": "Move-PnPFile" }, { - "CommandName": "Move-PnPFolder", - "Rank": 1, + "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Id": 929, - "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" + "Rank": 3, + "CommandName": "Move-PnPFile" }, { - "CommandName": "Move-PnPFolder", - "Rank": 2, + "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination", "Id": 930, - "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" + "Rank": 4, + "CommandName": "Move-PnPFile" }, { - "CommandName": "Move-PnPListItemToRecycleBin", - "Rank": 1, + "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'", "Id": 931, - "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" + "Rank": 1, + "CommandName": "Move-PnPFolder" }, { - "CommandName": "Move-PnPPageComponent", - "Rank": 1, + "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'", "Id": 932, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" + "Rank": 2, + "CommandName": "Move-PnPFolder" }, { - "CommandName": "Move-PnPPageComponent", - "Rank": 2, + "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force", "Id": 933, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" + "Rank": 1, + "CommandName": "Move-PnPListItemToRecycleBin" }, { - "CommandName": "Move-PnPPageComponent", - "Rank": 3, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1", "Id": 934, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" + "Rank": 1, + "CommandName": "Move-PnPPageComponent" }, { - "CommandName": "Move-PnPPageComponent", - "Rank": 4, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2", "Id": 935, - "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" + "Rank": 2, + "CommandName": "Move-PnPPageComponent" }, { - "CommandName": "Move-PnpRecycleBinItem", - "Rank": 1, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2", "Id": 936, - "Command": "Move-PnPRecycleBinItem" + "Rank": 3, + "CommandName": "Move-PnPPageComponent" }, { - "CommandName": "Move-PnpRecycleBinItem", - "Rank": 2, + "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2", "Id": 937, - "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" + "Rank": 4, + "CommandName": "Move-PnPPageComponent" }, { - "CommandName": "Move-PnpRecycleBinItem", - "Rank": 3, + "Command": "Move-PnPRecycleBinItem", "Id": 938, - "Command": "Move-PnPRecycleBinItem -Force" + "Rank": 1, + "CommandName": "Move-PnpRecycleBinItem" }, { - "CommandName": "Move-PnPTerm", - "Rank": 1, + "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125", "Id": 939, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" + "Rank": 2, + "CommandName": "Move-PnpRecycleBinItem" }, { - "CommandName": "Move-PnPTerm", - "Rank": 2, + "Command": "Move-PnPRecycleBinItem -Force", "Id": 940, - "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" + "Rank": 3, + "CommandName": "Move-PnpRecycleBinItem" }, { - "CommandName": "Move-PnPTerm", - "Rank": 3, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf", "Id": 941, - "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" + "Rank": 1, + "CommandName": "Move-PnPTerm" }, { - "CommandName": "Move-PnPTermSet", - "Rank": 1, + "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"", "Id": 942, - "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" + "Rank": 2, + "CommandName": "Move-PnPTerm" }, { - "CommandName": "Move-PnPTermSet", - "Rank": 2, + "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm", "Id": 943, - "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" + "Rank": 3, + "CommandName": "Move-PnPTerm" }, { - "CommandName": "New-PnPAzureADGroup", - "Rank": 1, + "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd", "Id": 944, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" + "Rank": 1, + "CommandName": "Move-PnPTermSet" }, { - "CommandName": "New-PnPAzureADGroup", - "Rank": 2, + "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"", "Id": 945, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" + "Rank": 2, + "CommandName": "Move-PnPTermSet" }, { - "CommandName": "New-PnPAzureADGroup", - "Rank": 3, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname", "Id": 946, - "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" + "Rank": 1, + "CommandName": "New-PnPAzureADGroup" }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 1, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers", "Id": 947, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" + "Rank": 2, + "CommandName": "New-PnPAzureADGroup" }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 2, + "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled", "Id": 948, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" + "Rank": 3, + "CommandName": "New-PnPAzureADGroup" }, { - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", - "Rank": 3, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com", "Id": 949, - "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" + "Rank": 1, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "CommandName": "New-PnPAzureCertificate", - "Rank": 1, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true", "Id": 950, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" + "Rank": 2, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "CommandName": "New-PnPAzureCertificate", - "Rank": 2, + "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true", "Id": 951, - "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" + "Rank": 3, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass" }, { - "CommandName": "New-PnPAzureCertificate", - "Rank": 3, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer", "Id": 952, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" + "Rank": 1, + "CommandName": "New-PnPAzureCertificate" }, { - "CommandName": "New-PnPAzureCertificate", - "Rank": 4, + "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30", "Id": 953, - "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null" + "Rank": 2, + "CommandName": "New-PnPAzureCertificate" }, { - "CommandName": "New-PnPContainerType", - "Rank": 1, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)", "Id": 954, - "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"" + "Rank": 3, + "CommandName": "New-PnPAzureCertificate" }, { - "CommandName": "New-PnPGraphSubscription", - "Rank": 1, + "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null", "Id": 955, - "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()" + "Rank": 4, + "CommandName": "New-PnPAzureCertificate" }, { - "CommandName": "New-PnPGraphSubscription", - "Rank": 2, + "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"", "Id": 956, - "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" + "Rank": 1, + "CommandName": "New-PnPContainerType" }, { - "CommandName": "New-PnPGroup", - "Rank": 1, + "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()", "Id": 957, - "Command": "New-PnPGroup -Title \"My Site Users\"" + "Rank": 1, + "CommandName": "New-PnPGraphSubscription" }, { - "CommandName": "New-PnPList", - "Rank": 1, + "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()", "Id": 958, - "Command": "New-PnPList -Title Announcements -Template Announcements" + "Rank": 2, + "CommandName": "New-PnPGraphSubscription" }, { - "CommandName": "New-PnPList", - "Rank": 2, + "Command": "New-PnPGroup -Title \"My Site Users\"", "Id": 959, - "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" + "Rank": 1, + "CommandName": "New-PnPGroup" }, { - "CommandName": "New-PnPList", - "Rank": 3, + "Command": "New-PnPList -Title Announcements -Template Announcements", "Id": 960, - "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" + "Rank": 1, + "CommandName": "New-PnPList" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 1, + "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements", "Id": 961, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" + "Rank": 2, + "CommandName": "New-PnPList" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 2, + "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden", "Id": 962, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" + "Rank": 3, + "CommandName": "New-PnPList" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 3, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname", "Id": 963, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" + "Rank": 1, + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 4, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"", "Id": 964, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" + "Rank": 2, + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 5, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate", "Id": 965, - "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Rank": 3, + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 6, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate", "Id": 966, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Rank": 4, + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPMicrosoft365Group", - "Rank": 7, + "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Id": 967, - "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" + "Rank": 5, + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Rank": 1, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Id": 968, - "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" + "Rank": 6, + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPMicrosoft365GroupSettings", - "Rank": 2, + "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"", "Id": 969, - "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" + "Rank": 7, + "CommandName": "New-PnPMicrosoft365Group" }, { - "CommandName": "New-PnPPersonalSite", - "Rank": 1, + "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}", "Id": 970, - "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" + "Rank": 1, + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { - "CommandName": "New-PnPPlannerPlan", - "Rank": 1, + "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}", "Id": 971, - "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" + "Rank": 2, + "CommandName": "New-PnPMicrosoft365GroupSettings" }, { - "CommandName": "New-PnPSdnProvider", - "Rank": 1, + "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')", "Id": 972, - "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" + "Rank": 1, + "CommandName": "New-PnPPersonalSite" }, { - "CommandName": "New-PnPSite", - "Rank": 1, + "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"", "Id": 973, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" + "Rank": 1, + "CommandName": "New-PnPPlannerPlan" }, { - "CommandName": "New-PnPSite", - "Rank": 2, + "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"", "Id": 974, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" + "Rank": 1, + "CommandName": "New-PnPSdnProvider" }, { - "CommandName": "New-PnPSite", - "Rank": 3, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Id": 975, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" + "Rank": 1, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 4, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase", "Id": 976, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "Rank": 2, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 5, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Id": 977, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "Rank": 3, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 6, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Id": 978, - "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "Rank": 4, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 7, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Id": 979, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" + "Rank": 5, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 8, + "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Id": 980, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" + "Rank": 6, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 9, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso", "Id": 981, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" + "Rank": 7, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 10, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic", "Id": 982, - "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" + "Rank": 8, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 11, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040", "Id": 983, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" + "Rank": 9, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 12, + "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site", "Id": 984, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" + "Rank": 10, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 13, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso", "Id": 985, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" + "Rank": 11, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 14, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac", "Id": 986, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" + "Rank": 12, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 15, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"", "Id": 987, - "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" + "Rank": 13, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSite", - "Rank": 16, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled", "Id": 988, - "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" + "Rank": 14, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSiteCollectionTermStore", - "Rank": 1, + "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040", "Id": 989, - "Command": "New-PnPSiteCollectionTermStore" + "Rank": 15, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSiteGroup", - "Rank": 1, + "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"", "Id": 990, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" + "Rank": 16, + "CommandName": "New-PnPSite" }, { - "CommandName": "New-PnPSiteGroup", - "Rank": 2, + "Command": "New-PnPSiteCollectionTermStore", "Id": 991, - "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" + "Rank": 1, + "CommandName": "New-PnPSiteCollectionTermStore" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 1, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"", "Id": 992, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" + "Rank": 1, + "CommandName": "New-PnPSiteGroup" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 2, + "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"", "Id": 993, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" + "Rank": 2, + "CommandName": "New-PnPSiteGroup" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 3, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml", "Id": 994, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" + "Rank": 1, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 4, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp", "Id": 995, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" + "Rank": 2, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 5, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js", "Id": 996, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" + "Rank": 3, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 6, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"", "Id": 997, - "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "Rank": 4, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 7, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"", "Id": 998, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" + "Rank": 5, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPSiteTemplateFromFolder", - "Rank": 8, + "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", "Id": 999, - "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" + "Rank": 6, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPTeamsApp", - "Rank": 1, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp", "Id": 1000, - "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" + "Rank": 7, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 1, + "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp", "Id": 1001, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" + "Rank": 8, + "CommandName": "New-PnPSiteTemplateFromFolder" }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 2, + "Command": "New-PnPTeamsApp -Path c:\\myapp.zip", "Id": 1002, - "Command": "New-PnPTeamsTeam -GroupId $groupId" + "Rank": 1, + "CommandName": "New-PnPTeamsApp" }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 3, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false", "Id": 1003, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" + "Rank": 1, + "CommandName": "New-PnPTeamsTeam" }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 4, + "Command": "New-PnPTeamsTeam -GroupId $groupId", "Id": 1004, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" + "Rank": 2, + "CommandName": "New-PnPTeamsTeam" }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 5, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled", "Id": 1005, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" + "Rank": 3, + "CommandName": "New-PnPTeamsTeam" }, { - "CommandName": "New-PnPTeamsTeam", - "Rank": 6, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook", "Id": 1006, - "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\" -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "Rank": 4, + "CommandName": "New-PnPTeamsTeam" }, { - "CommandName": "New-PnPTenantSite", - "Rank": 1, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"", "Id": 1007, - "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" + "Rank": 5, + "CommandName": "New-PnPTeamsTeam" }, { - "CommandName": "New-PnPTenantSite", - "Rank": 2, + "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\" -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", "Id": 1008, - "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" + "Rank": 6, + "CommandName": "New-PnPTeamsTeam" }, { - "CommandName": "New-PnPTerm", - "Rank": 1, + "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0", "Id": 1009, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" + "Rank": 1, + "CommandName": "New-PnPTenantSite" }, { - "CommandName": "New-PnPTerm", - "Rank": 2, + "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0", "Id": 1010, - "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "Rank": 2, + "CommandName": "New-PnPTenantSite" }, { - "CommandName": "New-PnPTermGroup", - "Rank": 1, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"", "Id": 1011, - "Command": "New-PnPTermGroup -GroupName \"Countries\"" + "Rank": 1, + "CommandName": "New-PnPTerm" }, { - "CommandName": "New-PnPTermLabel", - "Rank": 1, + "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", "Id": 1012, - "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" + "Rank": 2, + "CommandName": "New-PnPTerm" }, { - "CommandName": "New-PnPTermSet", - "Rank": 1, + "Command": "New-PnPTermGroup -GroupName \"Countries\"", "Id": 1013, - "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" + "Rank": 1, + "CommandName": "New-PnPTermGroup" }, { - "CommandName": "New-PnPUPABulkImportJob", - "Rank": 1, + "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")", "Id": 1014, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" + "Rank": 1, + "CommandName": "New-PnPTermLabel" }, { - "CommandName": "New-PnPUPABulkImportJob", - "Rank": 2, + "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"", "Id": 1015, - "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" + "Rank": 1, + "CommandName": "New-PnPTermSet" }, { - "CommandName": "New-PnPUser", - "Rank": 1, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}", "Id": 1016, - "Command": "New-PnPUser -LoginName user@company.com" + "Rank": 1, + "CommandName": "New-PnPUPABulkImportJob" }, { - "CommandName": "New-PnPWeb", - "Rank": 1, + "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose", "Id": 1017, - "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" + "Rank": 2, + "CommandName": "New-PnPUPABulkImportJob" }, { - "CommandName": "Publish-PnPApp", - "Rank": 1, + "Command": "New-PnPUser -LoginName user@company.com", "Id": 1018, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" + "Rank": 1, + "CommandName": "New-PnPUser" }, { - "CommandName": "Publish-PnPApp", - "Rank": 2, + "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"", "Id": 1019, - "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" + "Rank": 1, + "CommandName": "New-PnPWeb" }, { - "CommandName": "Publish-PnPCompanyApp", - "Rank": 1, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f", "Id": 1020, - "Command": "Publish-PnPCompanyApp -PortalUrl https://contoso.sharepoint.com/sites/portal -AppName \"Contoso Portal\" -CompanyName \"Contoso\" -CompanyWebSite \"https://www.contoso.com\" -ColoredIconPath ./coloricon.png -OutlineIconPath ./outlinedicon" + "Rank": 1, + "CommandName": "Publish-PnPApp" }, { - "CommandName": "Publish-PnPContentType", - "Rank": 1, + "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site", "Id": 1021, - "Command": "Publish-PnPContentType -ContentType 0x0101" + "Rank": 2, + "CommandName": "Publish-PnPApp" }, { - "CommandName": "Publish-PnPSyntexModel", - "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": 1022, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "Rank": 1, + "CommandName": "Publish-PnPCompanyApp" }, { - "CommandName": "Publish-PnPSyntexModel", - "Rank": 2, + "Command": "Publish-PnPContentType -ContentType 0x0101", "Id": 1023, - "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" + "Rank": 1, + "CommandName": "Publish-PnPContentType" }, { - "CommandName": "Read-PnPSiteTemplate", - "Rank": 1, + "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", "Id": 1024, - "Command": "Read-PnPSiteTemplate -Path template.pnp" + "Rank": 1, + "CommandName": "Publish-PnPSyntexModel" }, { - "CommandName": "Read-PnPSiteTemplate", - "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": 1025, - "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" + "Rank": 2, + "CommandName": "Publish-PnPSyntexModel" }, { - "CommandName": "Read-PnPSiteTemplate", - "Rank": 3, + "Command": "Read-PnPSiteTemplate -Path template.pnp", "Id": 1026, - "Command": "Read-PnPSiteTemplate -Xml $xml" + "Rank": 1, + "CommandName": "Read-PnPSiteTemplate" }, { - "CommandName": "Read-PnPTenantTemplate", - "Rank": 1, + "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions", "Id": 1027, - "Command": "Read-PnPTenantTemplate -Path template.pnp" + "Rank": 2, + "CommandName": "Read-PnPSiteTemplate" }, { - "CommandName": "Register-PnPAppCatalogSite", - "Rank": 1, + "Command": "Read-PnPSiteTemplate -Xml $xml", "Id": 1028, - "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" + "Rank": 3, + "CommandName": "Read-PnPSiteTemplate" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 1, + "Command": "Read-PnPTenantTemplate -Path template.pnp", "Id": 1029, - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" + "Rank": 1, + "CommandName": "Read-PnPTenantTemplate" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 2, + "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4", "Id": 1030, - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\")" + "Rank": 1, + "CommandName": "Register-PnPAppCatalogSite" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 3, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", "Id": 1031, - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -GraphApplicationPermissions \"User.Read.All\" -SharePointApplicationPermissions \"Sites.Read.All\" -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" + "Rank": 1, + "CommandName": "Register-PnPAzureADApp" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 4, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\")", "Id": 1032, - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -OutPath c:\\ -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")" + "Rank": 2, + "CommandName": "Register-PnPAzureADApp" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 5, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -GraphApplicationPermissions \"User.Read.All\" -SharePointApplicationPermissions \"Sites.Read.All\" -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", "Id": 1033, - "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" + "Rank": 3, + "CommandName": "Register-PnPAzureADApp" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 6, + "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -OutPath c:\\ -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter Password\")", "Id": 1034, - "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" + "Rank": 4, + "CommandName": "Register-PnPAzureADApp" }, { - "CommandName": "Register-PnPAzureADApp", - "Rank": 7, + "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Id": 1035, - "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -Username \"yourname@domain.com\" -Password (Read-Host -AsSecureString -Prompt \"Enter password\") -LogoFilePath c:\\logo.png" + "Rank": 5, + "CommandName": "Register-PnPAzureADApp" }, { - "CommandName": "Register-PnPHubSite", - "Rank": 1, + "Command": "Register-PnPAzureADApp -Interactive -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)", "Id": 1036, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "Rank": 6, + "CommandName": "Register-PnPAzureADApp" }, { - "CommandName": "Register-PnPHubSite", - "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\") -LogoFilePath c:\\logo.png", "Id": 1037, - "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" + "Rank": 7, + "CommandName": "Register-PnPAzureADApp" }, { - "CommandName": "Register-PnPManagementShellAccess", - "Rank": 1, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", "Id": 1038, - "Command": "Register-PnPManagementShellAccess" + "Rank": 1, + "CommandName": "Register-PnPHubSite" }, { - "CommandName": "Register-PnPManagementShellAccess", - "Rank": 2, + "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"", "Id": 1039, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl" + "Rank": 2, + "CommandName": "Register-PnPHubSite" }, { - "CommandName": "Register-PnPManagementShellAccess", - "Rank": 3, + "Command": "Register-PnPManagementShellAccess", "Id": 1040, - "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com" + "Rank": 1, + "CommandName": "Register-PnPManagementShellAccess" }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 1, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl", "Id": 1041, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" + "Rank": 2, + "CommandName": "Register-PnPManagementShellAccess" }, { - "CommandName": "Remove-PnPAdaptiveScopeProperty", - "Rank": 2, + "Command": "Register-PnPManagementShellAccess -ShowConsentUrl -TenantName yourtenant.onmicrosoft.com", "Id": 1042, - "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" + "Rank": 3, + "CommandName": "Register-PnPManagementShellAccess" }, { - "CommandName": "Remove-PnPAlert", - "Rank": 1, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey", "Id": 1043, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" + "Rank": 1, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "CommandName": "Remove-PnPAlert", - "Rank": 2, + "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force", "Id": 1044, - "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" + "Rank": 2, + "CommandName": "Remove-PnPAdaptiveScopeProperty" }, { - "CommandName": "Remove-PnPApp", - "Rank": 1, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7", "Id": 1045, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "Rank": 1, + "CommandName": "Remove-PnPAlert" }, { - "CommandName": "Remove-PnPApp", - "Rank": 2, + "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"", "Id": 1046, - "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "Rank": 2, + "CommandName": "Remove-PnPAlert" }, { - "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 1, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", "Id": 1047, - "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 1, + "CommandName": "Remove-PnPApp" }, { - "CommandName": "Remove-PnPApplicationCustomizer", - "Rank": 2, + "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", "Id": 1048, - "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Rank": 2, + "CommandName": "Remove-PnPApp" }, { - "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 1, + "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1049, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" + "Rank": 1, + "CommandName": "Remove-PnPApplicationCustomizer" }, { - "CommandName": "Remove-PnPAvailableSiteClassification", - "Rank": 2, + "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Id": 1050, - "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "Rank": 2, + "CommandName": "Remove-PnPApplicationCustomizer" }, { - "CommandName": "Remove-PnPAzureADApp", - "Rank": 1, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"", "Id": 1051, - "Command": "Remove-PnPAzureADApp -Identity MyApp" + "Rank": 1, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "CommandName": "Remove-PnPAzureADApp", - "Rank": 2, + "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", "Id": 1052, - "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" + "Rank": 2, + "CommandName": "Remove-PnPAvailableSiteClassification" }, { - "CommandName": "Remove-PnPAzureADGroup", - "Rank": 1, + "Command": "Remove-PnPAzureADApp -Identity MyApp", "Id": 1053, - "Command": "Remove-PnPAzureADGroup -Identity $groupId" + "Rank": 1, + "CommandName": "Remove-PnPAzureADApp" }, { - "CommandName": "Remove-PnPAzureADGroup", - "Rank": 2, + "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e", "Id": 1054, - "Command": "Remove-PnPAzureADGroup -Identity $group" + "Rank": 2, + "CommandName": "Remove-PnPAzureADApp" }, { - "CommandName": "Remove-PnPAzureADGroupMember", - "Rank": 1, + "Command": "Remove-PnPAzureADGroup -Identity $groupId", "Id": 1055, - "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1, + "CommandName": "Remove-PnPAzureADGroup" }, { - "CommandName": "Remove-PnPAzureADGroupOwner", - "Rank": 1, + "Command": "Remove-PnPAzureADGroup -Identity $group", "Id": 1056, - "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 2, + "CommandName": "Remove-PnPAzureADGroup" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 1, + "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1057, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" + "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupMember" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 2, + "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1058, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" + "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupOwner" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 3, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"", "Id": 1059, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" + "Rank": 1, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", - "Rank": 4, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"", "Id": 1060, - "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" + "Rank": 2, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "CommandName": "Remove-PnPContainer", - "Rank": 1, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933", "Id": 1061, - "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" + "Rank": 3, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "CommandName": "Remove-PnPContainer", - "Rank": 2, + "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"", "Id": 1062, - "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" + "Rank": 4, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole" }, { - "CommandName": "Remove-PnPContentType", - "Rank": 1, + "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", "Id": 1063, - "Command": "Remove-PnPContentType -Identity \"Project Document\"" + "Rank": 1, + "CommandName": "Remove-PnPContainer" }, { - "CommandName": "Remove-PnPContentType", - "Rank": 2, + "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"", "Id": 1064, - "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" + "Rank": 2, + "CommandName": "Remove-PnPContainer" }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 1, + "Command": "Remove-PnPContainerType -Identity 00be1092-0c75-028a-18db-89e57908e7d6", "Id": 1065, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" + "Rank": 1, + "CommandName": "Remove-PnPContainerType" }, { - "CommandName": "Remove-PnPContentTypeFromDocumentSet", - "Rank": 2, + "Command": "Remove-PnPContentType -Identity \"Project Document\"", "Id": 1066, - "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" + "Rank": 1, + "CommandName": "Remove-PnPContentType" }, { - "CommandName": "Remove-PnPContentTypeFromList", - "Rank": 1, + "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force", "Id": 1067, - "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" + "Rank": 2, + "CommandName": "Remove-PnPContentType" }, { - "CommandName": "Remove-PnPCustomAction", - "Rank": 1, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"", "Id": 1068, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "CommandName": "Remove-PnPCustomAction", - "Rank": 2, + "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B", "Id": 1069, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" + "Rank": 2, + "CommandName": "Remove-PnPContentTypeFromDocumentSet" }, { - "CommandName": "Remove-PnPCustomAction", - "Rank": 3, + "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"", "Id": 1070, - "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" + "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromList" }, { - "CommandName": "Remove-PnPDeletedMicrosoft365Group", - "Rank": 1, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1071, - "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Rank": 1, + "CommandName": "Remove-PnPCustomAction" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 1, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web", "Id": 1072, - "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 2, + "CommandName": "Remove-PnPCustomAction" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 2, + "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force", "Id": 1073, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" + "Rank": 3, + "CommandName": "Remove-PnPCustomAction" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 3, + "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 1074, - "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" + "Rank": 1, + "CommandName": "Remove-PnPDeletedMicrosoft365Group" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 4, + "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 1075, - "Command": "Remove-PnPEventReceiver -List ProjectList" + "Rank": 1, + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 5, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22", "Id": 1076, - "Command": "Remove-PnPEventReceiver" + "Rank": 2, + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 6, + "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver", "Id": 1077, - "Command": "Remove-PnPEventReceiver -Scope Site" + "Rank": 3, + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 7, + "Command": "Remove-PnPEventReceiver -List ProjectList", "Id": 1078, - "Command": "Remove-PnPEventReceiver -Scope Web" + "Rank": 4, + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPEventReceiver", - "Rank": 8, + "Command": "Remove-PnPEventReceiver", "Id": 1079, - "Command": "Remove-PnPEventReceiver -Scope All" + "Rank": 5, + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPField", - "Rank": 1, + "Command": "Remove-PnPEventReceiver -Scope Site", "Id": 1080, - "Command": "Remove-PnPField -Identity \"Speakers\"" + "Rank": 6, + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPField", - "Rank": 2, + "Command": "Remove-PnPEventReceiver -Scope Web", "Id": 1081, - "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" + "Rank": 7, + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 1, + "Command": "Remove-PnPEventReceiver -Scope All", "Id": 1082, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" + "Rank": 8, + "CommandName": "Remove-PnPEventReceiver" }, { - "CommandName": "Remove-PnPFieldFromContentType", - "Rank": 2, + "Command": "Remove-PnPField -Identity \"Speakers\"", "Id": 1083, - "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" + "Rank": 1, + "CommandName": "Remove-PnPField" }, { - "CommandName": "Remove-PnPFile", - "Rank": 1, + "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"", "Id": 1084, - "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" + "Rank": 2, + "CommandName": "Remove-PnPField" }, { - "CommandName": "Remove-PnPFile", - "Rank": 2, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"", "Id": 1085, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" + "Rank": 1, + "CommandName": "Remove-PnPFieldFromContentType" }, { - "CommandName": "Remove-PnPFile", - "Rank": 3, + "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren", "Id": 1086, - "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" + "Rank": 2, + "CommandName": "Remove-PnPFieldFromContentType" }, { - "CommandName": "Remove-PnPFileFromSiteTemplate", - "Rank": 1, + "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor", "Id": 1087, - "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" + "Rank": 1, + "CommandName": "Remove-PnPFile" }, { - "CommandName": "Remove-PnPFileSharingLink", - "Rank": 1, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor", "Id": 1088, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" + "Rank": 2, + "CommandName": "Remove-PnPFile" }, { - "CommandName": "Remove-PnPFileSharingLink", - "Rank": 2, + "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle", "Id": 1089, - "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" + "Rank": 3, + "CommandName": "Remove-PnPFile" }, { - "CommandName": "Remove-PnPFileVersion", - "Rank": 1, + "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath", "Id": 1090, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Rank": 1, + "CommandName": "Remove-PnPFileFromSiteTemplate" }, { - "CommandName": "Remove-PnPFileVersion", - "Rank": 2, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"", "Id": 1091, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Rank": 1, + "CommandName": "Remove-PnPFileSharingLink" }, { - "CommandName": "Remove-PnPFileVersion", - "Rank": 3, + "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force", "Id": 1092, - "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" + "Rank": 2, + "CommandName": "Remove-PnPFileSharingLink" }, { - "CommandName": "Remove-PnPFlowOwner", - "Rank": 1, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Id": 1093, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" + "Rank": 1, + "CommandName": "Remove-PnPFileVersion" }, { - "CommandName": "Remove-PnPFlowOwner", - "Rank": 2, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Id": 1094, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" + "Rank": 2, + "CommandName": "Remove-PnPFileVersion" }, { - "CommandName": "Remove-PnPFlowOwner", - "Rank": 3, + "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All", "Id": 1095, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" + "Rank": 3, + "CommandName": "Remove-PnPFileVersion" }, { - "CommandName": "Remove-PnPFlowOwner", - "Rank": 4, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com", "Id": 1096, - "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" + "Rank": 1, + "CommandName": "Remove-PnPFlowOwner" }, { - "CommandName": "Remove-PnPFolder", - "Rank": 1, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04", "Id": 1097, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" + "Rank": 2, + "CommandName": "Remove-PnPFlowOwner" }, { - "CommandName": "Remove-PnPFolder", - "Rank": 2, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin", "Id": 1098, - "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" + "Rank": 3, + "CommandName": "Remove-PnPFlowOwner" }, { - "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 1, + "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force", "Id": 1099, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" + "Rank": 4, + "CommandName": "Remove-PnPFlowOwner" }, { - "CommandName": "Remove-PnPFolderSharingLink", - "Rank": 2, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage", "Id": 1100, - "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" + "Rank": 1, + "CommandName": "Remove-PnPFolder" }, { - "CommandName": "Remove-PnPGraphSubscription", - "Rank": 1, + "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle", "Id": 1101, - "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" + "Rank": 2, + "CommandName": "Remove-PnPFolder" }, { - "CommandName": "Remove-PnPGroup", - "Rank": 1, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"", "Id": 1102, - "Command": "Remove-PnPGroup -Identity \"My Users\"" + "Rank": 1, + "CommandName": "Remove-PnPFolderSharingLink" }, { - "CommandName": "Remove-PnPGroupMember", - "Rank": 1, + "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force", "Id": 1103, - "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" + "Rank": 2, + "CommandName": "Remove-PnPFolderSharingLink" }, { - "CommandName": "Remove-PnPHomeSite", - "Rank": 1, + "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da", "Id": 1104, - "Command": "Remove-PnPHomeSite" + "Rank": 1, + "CommandName": "Remove-PnPGraphSubscription" }, { - "CommandName": "Remove-PnPHubSiteAssociation", - "Rank": 1, + "Command": "Remove-PnPGroup -Identity \"My Users\"", "Id": 1105, - "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" + "Rank": 1, + "CommandName": "Remove-PnPGroup" }, { - "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 1, + "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'", "Id": 1106, - "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" + "Rank": 1, + "CommandName": "Remove-PnPGroupMember" }, { - "CommandName": "Remove-PnPHubToHubAssociation", - "Rank": 2, + "Command": "Remove-PnPHomeSite", "Id": 1107, - "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" + "Rank": 1, + "CommandName": "Remove-PnPHomeSite" }, { - "CommandName": "Remove-PnPIndexedProperty", - "Rank": 1, + "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"", "Id": 1108, - "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" + "Rank": 1, + "CommandName": "Remove-PnPHubSiteAssociation" }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 1, + "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15", "Id": 1109, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery" + "Rank": 1, + "CommandName": "Remove-PnPHubToHubAssociation" }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 2, + "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"", "Id": 1110, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" + "Rank": 2, + "CommandName": "Remove-PnPHubToHubAssociation" }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 3, + "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"", "Id": 1111, - "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" + "Rank": 1, + "CommandName": "Remove-PnPIndexedProperty" }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 4, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery", "Id": 1112, - "Command": "Remove-PnPJavaScriptLink -Scope Site" + "Rank": 1, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "CommandName": "Remove-PnPJavaScriptLink", - "Rank": 5, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site", "Id": 1113, - "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" + "Rank": 2, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "CommandName": "Remove-PnPKnowledgeHubSite", - "Rank": 1, + "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false", "Id": 1114, - "Command": "Remove-PnPKnowledgeHubSite" + "Rank": 3, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "CommandName": "Remove-PnPList", - "Rank": 1, + "Command": "Remove-PnPJavaScriptLink -Scope Site", "Id": 1115, - "Command": "Remove-PnPList -Identity Announcements" + "Rank": 4, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "CommandName": "Remove-PnPList", - "Rank": 2, + "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All", "Id": 1116, - "Command": "Remove-PnPList -Identity Announcements -Force" + "Rank": 5, + "CommandName": "Remove-PnPJavaScriptLink" }, { - "CommandName": "Remove-PnPList", - "Rank": 3, + "Command": "Remove-PnPKnowledgeHubSite", "Id": 1117, - "Command": "Remove-PnPList -Identity Announcements -Recycle" + "Rank": 1, + "CommandName": "Remove-PnPKnowledgeHubSite" }, { - "CommandName": "Remove-PnPList", - "Rank": 4, + "Command": "Remove-PnPList -Identity Announcements", "Id": 1118, - "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" + "Rank": 1, + "CommandName": "Remove-PnPList" }, { - "CommandName": "Remove-PnPListDesign", - "Rank": 1, + "Command": "Remove-PnPList -Identity Announcements -Force", "Id": 1119, - "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2, + "CommandName": "Remove-PnPList" }, { - "CommandName": "Remove-PnPListItem", - "Rank": 1, + "Command": "Remove-PnPList -Identity Announcements -Recycle", "Id": 1120, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" + "Rank": 3, + "CommandName": "Remove-PnPList" }, { - "CommandName": "Remove-PnPListItem", - "Rank": 2, + "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList", "Id": 1121, - "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" + "Rank": 4, + "CommandName": "Remove-PnPList" }, { - "CommandName": "Remove-PnPListItem", - "Rank": 3, + "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1122, - "Command": "Remove-PnPListItem -List \"Demo List\"" + "Rank": 1, + "CommandName": "Remove-PnPListDesign" }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 1, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force", "Id": 1123, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" + "Rank": 1, + "CommandName": "Remove-PnPListItem" }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 2, + "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle", "Id": 1124, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" + "Rank": 2, + "CommandName": "Remove-PnPListItem" }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 3, + "Command": "Remove-PnPListItem -List \"Demo List\"", "Id": 1125, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" + "Rank": 3, + "CommandName": "Remove-PnPListItem" }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 4, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt", "Id": 1126, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" + "Rank": 1, + "CommandName": "Remove-PnPListItemAttachment" }, { - "CommandName": "Remove-PnPListItemAttachment", - "Rank": 5, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle", "Id": 1127, - "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" + "Rank": 2, + "CommandName": "Remove-PnPListItemAttachment" }, { - "CommandName": "Remove-PnPListItemVersion", - "Rank": 1, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force", "Id": 1128, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Rank": 3, + "CommandName": "Remove-PnPListItemAttachment" }, { - "CommandName": "Remove-PnPListItemVersion", - "Rank": 2, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force", "Id": 1129, - "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Rank": 4, + "CommandName": "Remove-PnPListItemAttachment" }, { - "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 1, + "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All", "Id": 1130, - "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" + "Rank": 5, + "CommandName": "Remove-PnPListItemAttachment" }, { - "CommandName": "Remove-PnPMicrosoft365Group", - "Rank": 2, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Id": 1131, - "Command": "Remove-PnPMicrosoft365Group -Identity $group" + "Rank": 1, + "CommandName": "Remove-PnPListItemVersion" }, { - "CommandName": "Remove-PnPMicrosoft365GroupMember", - "Rank": 1, + "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Id": 1132, - "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 2, + "CommandName": "Remove-PnPListItemVersion" }, { - "CommandName": "Remove-PnPMicrosoft365GroupOwner", - "Rank": 1, + "Command": "Remove-PnPMicrosoft365Group -Identity $groupId", "Id": 1133, - "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365Group" }, { - "CommandName": "Remove-PnPMicrosoft365GroupPhoto", - "Rank": 1, + "Command": "Remove-PnPMicrosoft365Group -Identity $group", "Id": 1134, - "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"" + "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365Group" }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1135, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupMember" }, { - "CommandName": "Remove-PnPMicrosoft365GroupSettings", - "Rank": 2, + "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"", "Id": 1136, - "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupOwner" }, { - "CommandName": "Remove-PnPNavigationNode", - "Rank": 1, + "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"", "Id": 1137, - "Command": "Remove-PnPNavigationNode -Identity 1032" + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupPhoto" }, { - "CommandName": "Remove-PnPNavigationNode", - "Rank": 2, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"", "Id": 1138, - "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" + "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Remove-PnPNavigationNode", - "Rank": 3, + "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId", "Id": 1139, - "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" + "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 1, + "Command": "Remove-PnPNavigationNode -Identity 1032", "Id": 1140, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" + "Rank": 1, + "CommandName": "Remove-PnPNavigationNode" }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 2, + "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch", "Id": 1141, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" + "Rank": 2, + "CommandName": "Remove-PnPNavigationNode" }, { - "CommandName": "Remove-PnPOrgAssetsLibrary", - "Rank": 3, + "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force", "Id": 1142, - "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" + "Rank": 3, + "CommandName": "Remove-PnPNavigationNode" }, { - "CommandName": "Remove-PnPOrgNewsSite", - "Rank": 1, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"", "Id": 1143, - "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" + "Rank": 1, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "CommandName": "Remove-PnPPage", - "Rank": 1, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true", "Id": 1144, - "Command": "Remove-PnPPage -Identity \"MyPage\"" + "Rank": 2, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "CommandName": "Remove-PnPPage", - "Rank": 2, + "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private", "Id": 1145, - "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" + "Rank": 3, + "CommandName": "Remove-PnPOrgAssetsLibrary" }, { - "CommandName": "Remove-PnPPage", - "Rank": 3, + "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"", "Id": 1146, - "Command": "Remove-PnPPage $page" + "Rank": 1, + "CommandName": "Remove-PnPOrgNewsSite" }, { - "CommandName": "Remove-PnPPage", - "Rank": 4, + "Command": "Remove-PnPPage -Identity \"MyPage\"", "Id": 1147, - "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" + "Rank": 1, + "CommandName": "Remove-PnPPage" }, { - "CommandName": "Remove-PnPPageComponent", - "Rank": 1, + "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"", "Id": 1148, - "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 2, + "CommandName": "Remove-PnPPage" }, { - "CommandName": "Remove-PnPPlannerBucket", - "Rank": 1, + "Command": "Remove-PnPPage $page", "Id": 1149, - "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" + "Rank": 3, + "CommandName": "Remove-PnPPage" }, { - "CommandName": "Remove-PnPPlannerPlan", - "Rank": 1, + "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle", "Id": 1150, - "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" + "Rank": 4, + "CommandName": "Remove-PnPPage" }, { - "CommandName": "Remove-PnPPlannerRoster", - "Rank": 1, + "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 1151, - "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" + "Rank": 1, + "CommandName": "Remove-PnPPageComponent" }, { - "CommandName": "Remove-PnPPlannerRosterMember", - "Rank": 1, + "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"", "Id": 1152, - "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" + "Rank": 1, + "CommandName": "Remove-PnPPlannerBucket" }, { - "CommandName": "Remove-PnPPlannerTask", - "Rank": 1, + "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"", "Id": 1153, - "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" + "Rank": 1, + "CommandName": "Remove-PnPPlannerPlan" }, { - "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 1, + "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"", "Id": 1154, - "Command": "Remove-PnPPropertyBagValue -Key MyKey" + "Rank": 1, + "CommandName": "Remove-PnPPlannerRoster" }, { - "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 2, + "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"", "Id": 1155, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" + "Rank": 1, + "CommandName": "Remove-PnPPlannerRosterMember" }, { - "CommandName": "Remove-PnPPropertyBagValue", - "Rank": 3, + "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk", "Id": 1156, - "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" + "Rank": 1, + "CommandName": "Remove-PnPPlannerTask" }, { - "CommandName": "Remove-PnPPublishingImageRendition", - "Rank": 1, + "Command": "Remove-PnPPropertyBagValue -Key MyKey", "Id": 1157, - "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" + "Rank": 1, + "CommandName": "Remove-PnPPropertyBagValue" }, { - "CommandName": "Remove-PnPRoleDefinition", - "Rank": 1, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder", "Id": 1158, - "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" + "Rank": 2, + "CommandName": "Remove-PnPPropertyBagValue" }, { - "CommandName": "Remove-PnPSdnProvider", - "Rank": 1, + "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /", "Id": 1159, - "Command": "Remove-PnPSdnProvider -Confirm:false" + "Rank": 3, + "CommandName": "Remove-PnPPropertyBagValue" }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 1, + "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600", "Id": 1160, - "Command": "Remove-PnPSearchConfiguration -Configuration $config" + "Rank": 1, + "CommandName": "Remove-PnPPublishingImageRendition" }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 2, + "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition", "Id": 1161, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" + "Rank": 1, + "CommandName": "Remove-PnPRoleDefinition" }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 3, + "Command": "Remove-PnPSdnProvider -Confirm:false", "Id": 1162, - "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "Rank": 1, + "CommandName": "Remove-PnPSdnProvider" }, { - "CommandName": "Remove-PnPSearchConfiguration", - "Rank": 4, + "Command": "Remove-PnPSearchConfiguration -Configuration $config", "Id": 1163, - "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "Rank": 1, + "CommandName": "Remove-PnPSearchConfiguration" }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 1, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site", "Id": 1164, - "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" + "Rank": 2, + "CommandName": "Remove-PnPSearchConfiguration" }, { - "CommandName": "Remove-PnPSiteCollectionAdmin", - "Rank": 2, + "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription", "Id": 1165, - "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "Rank": 3, + "CommandName": "Remove-PnPSearchConfiguration" }, { - "CommandName": "Remove-PnPSiteCollectionAppCatalog", - "Rank": 1, + "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", "Id": 1166, - "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" + "Rank": 4, + "CommandName": "Remove-PnPSearchConfiguration" }, { - "CommandName": "Remove-PnPSiteCollectionTermStore", - "Rank": 1, + "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"", "Id": 1167, - "Command": "Remove-PnPSiteCollectionTermStore" + "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "CommandName": "Remove-PnPSiteDesign", - "Rank": 1, + "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", "Id": 1168, - "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 2, + "CommandName": "Remove-PnPSiteCollectionAdmin" }, { - "CommandName": "Remove-PnPSiteDesignTask", - "Rank": 1, + "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"", "Id": 1169, - "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAppCatalog" }, { - "CommandName": "Remove-PnPSiteGroup", - "Rank": 1, + "Command": "Remove-PnPSiteCollectionTermStore", "Id": 1170, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" + "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionTermStore" }, { - "CommandName": "Remove-PnPSiteGroup", - "Rank": 2, + "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1171, - "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" + "Rank": 1, + "CommandName": "Remove-PnPSiteDesign" }, { - "CommandName": "Remove-PnPSiteScript", - "Rank": 1, + "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1172, - "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" + "Rank": 1, + "CommandName": "Remove-PnPSiteDesignTask" }, { - "CommandName": "Remove-PnPSiteUserInvitations", - "Rank": 1, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1173, - "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" + "Rank": 1, + "CommandName": "Remove-PnPSiteGroup" }, { - "CommandName": "Remove-PnPStorageEntity", - "Rank": 1, + "Command": "Remove-PnPSiteGroup -Identity GroupToRemove", "Id": 1174, - "Command": "Remove-PnPStorageEntity -Key MyKey" + "Rank": 2, + "CommandName": "Remove-PnPSiteGroup" }, { - "CommandName": "Remove-PnPStorageEntity", - "Rank": 2, + "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd", "Id": 1175, - "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" + "Rank": 1, + "CommandName": "Remove-PnPSiteScript" }, { - "CommandName": "Remove-PnPStoredCredential", - "Rank": 1, + "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com", "Id": 1176, - "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" + "Rank": 1, + "CommandName": "Remove-PnPSiteUserInvitations" }, { - "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 1, + "Command": "Remove-PnPStorageEntity -Key MyKey", "Id": 1177, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" + "Rank": 1, + "CommandName": "Remove-PnPStorageEntity" }, { - "CommandName": "Remove-PnPTaxonomyItem", - "Rank": 2, + "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site", "Id": 1178, - "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" + "Rank": 2, + "CommandName": "Remove-PnPStorageEntity" }, { - "CommandName": "Remove-PnPTeamsApp", - "Rank": 1, + "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"", "Id": 1179, - "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" + "Rank": 1, + "CommandName": "Remove-PnPStoredCredential" }, { - "CommandName": "Remove-PnPTeamsApp", - "Rank": 2, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"", "Id": 1180, - "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" + "Rank": 1, + "CommandName": "Remove-PnPTaxonomyItem" }, { - "CommandName": "Remove-PnPTeamsChannel", - "Rank": 1, + "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force", "Id": 1181, - "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" + "Rank": 2, + "CommandName": "Remove-PnPTaxonomyItem" }, { - "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 1, + "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b", "Id": 1182, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" + "Rank": 1, + "CommandName": "Remove-PnPTeamsApp" }, { - "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 2, + "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"", "Id": 1183, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" + "Rank": 2, + "CommandName": "Remove-PnPTeamsApp" }, { - "CommandName": "Remove-PnPTeamsChannelUser", - "Rank": 3, + "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"", "Id": 1184, - "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" + "Rank": 1, + "CommandName": "Remove-PnPTeamsChannel" }, { - "CommandName": "Remove-PnPTeamsTab", - "Rank": 1, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==", "Id": 1185, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" + "Rank": 1, + "CommandName": "Remove-PnPTeamsChannelUser" }, { - "CommandName": "Remove-PnPTeamsTab", - "Rank": 2, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000", "Id": 1186, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" + "Rank": 2, + "CommandName": "Remove-PnPTeamsChannelUser" }, { - "CommandName": "Remove-PnPTeamsTab", - "Rank": 3, + "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force", "Id": 1187, - "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" + "Rank": 3, + "CommandName": "Remove-PnPTeamsChannelUser" }, { - "CommandName": "Remove-PnPTeamsTag", - "Rank": 1, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki", "Id": 1188, - "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" + "Rank": 1, + "CommandName": "Remove-PnPTeamsTab" }, { - "CommandName": "Remove-PnPTeamsTeam", - "Rank": 1, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki", "Id": 1189, - "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" + "Rank": 2, + "CommandName": "Remove-PnPTeamsTab" }, { - "CommandName": "Remove-PnPTeamsTeam", - "Rank": 2, + "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852", "Id": 1190, - "Command": "Remove-PnPTeamsTeam -Identity testteam" + "Rank": 3, + "CommandName": "Remove-PnPTeamsTab" }, { - "CommandName": "Remove-PnPTeamsUser", - "Rank": 1, + "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"", "Id": 1191, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" + "Rank": 1, + "CommandName": "Remove-PnPTeamsTag" }, { - "CommandName": "Remove-PnPTeamsUser", - "Rank": 2, + "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5", "Id": 1192, - "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "Rank": 1, + "CommandName": "Remove-PnPTeamsTeam" }, { - "CommandName": "Remove-PnPTenantCdnOrigin", - "Rank": 1, + "Command": "Remove-PnPTeamsTeam -Identity testteam", "Id": 1193, - "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" + "Rank": 2, + "CommandName": "Remove-PnPTeamsTeam" }, { - "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 1, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com", "Id": 1194, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1, + "CommandName": "Remove-PnPTeamsUser" }, { - "CommandName": "Remove-PnPTenantDeletedSite", - "Rank": 2, + "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", "Id": 1195, - "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Rank": 2, + "CommandName": "Remove-PnPTeamsUser" }, { - "CommandName": "Remove-PnPTenantSite", - "Rank": 1, + "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public", "Id": 1196, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 1, + "CommandName": "Remove-PnPTenantCdnOrigin" }, { - "CommandName": "Remove-PnPTenantSite", - "Rank": 2, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1197, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" + "Rank": 1, + "CommandName": "Remove-PnPTenantDeletedSite" }, { - "CommandName": "Remove-PnPTenantSite", - "Rank": 3, + "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Id": 1198, - "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" + "Rank": 2, + "CommandName": "Remove-PnPTenantDeletedSite" }, { - "CommandName": "Remove-PnPTenantSyncClientRestriction", - "Rank": 1, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1199, - "Command": "Remove-PnPTenantSyncClientRestriction" + "Rank": 1, + "CommandName": "Remove-PnPTenantSite" }, { - "CommandName": "Remove-PnPTenantTheme", - "Rank": 1, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin", "Id": 1200, - "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" + "Rank": 2, + "CommandName": "Remove-PnPTenantSite" }, { - "CommandName": "Remove-PnPTerm", - "Rank": 1, + "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin", "Id": 1201, - "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Rank": 3, + "CommandName": "Remove-PnPTenantSite" }, { - "CommandName": "Remove-PnPTerm", - "Rank": 2, + "Command": "Remove-PnPTenantSyncClientRestriction", "Id": 1202, - "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 1, + "CommandName": "Remove-PnPTenantSyncClientRestriction" }, { - "CommandName": "Remove-PnPTermGroup", - "Rank": 1, + "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"", "Id": 1203, - "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" + "Rank": 1, + "CommandName": "Remove-PnPTenantTheme" }, { - "CommandName": "Remove-PnPTermGroup", - "Rank": 2, + "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Id": 1204, - "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" + "Rank": 1, + "CommandName": "Remove-PnPTerm" }, { - "CommandName": "Remove-PnPTermGroup", - "Rank": 3, + "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 1205, - "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" + "Rank": 2, + "CommandName": "Remove-PnPTerm" }, { - "CommandName": "Remove-PnPTermLabel", - "Rank": 1, + "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380", "Id": 1206, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" + "Rank": 1, + "CommandName": "Remove-PnPTermGroup" }, { - "CommandName": "Remove-PnPTermLabel", - "Rank": 2, + "Command": "Remove-PnPTermGroup -Identity \"Corporate\"", "Id": 1207, - "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" + "Rank": 2, + "CommandName": "Remove-PnPTermGroup" }, { - "CommandName": "Remove-PnPUser", - "Rank": 1, + "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force", "Id": 1208, - "Command": "Remove-PnPUser -Identity 23" + "Rank": 3, + "CommandName": "Remove-PnPTermGroup" }, { - "CommandName": "Remove-PnPUser", - "Rank": 2, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62", "Id": 1209, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" + "Rank": 1, + "CommandName": "Remove-PnPTermLabel" }, { - "CommandName": "Remove-PnPUser", - "Rank": 3, + "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"", "Id": 1210, - "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false" + "Rank": 2, + "CommandName": "Remove-PnPTermLabel" }, { - "CommandName": "Remove-PnPUserInfo", - "Rank": 1, + "Command": "Remove-PnPUser -Identity 23", "Id": 1211, - "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" + "Rank": 1, + "CommandName": "Remove-PnPUser" }, { - "CommandName": "Remove-PnPUserProfile", - "Rank": 1, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com", "Id": 1212, - "Command": "Remove-PnPUserProfile -LoginName user@domain.com" + "Rank": 2, + "CommandName": "Remove-PnPUser" }, { - "CommandName": "Remove-PnPView", - "Rank": 1, + "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Confirm:$false", "Id": 1213, - "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" + "Rank": 3, + "CommandName": "Remove-PnPUser" }, { - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", - "Rank": 1, + "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"", "Id": 1214, - "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" + "Rank": 1, + "CommandName": "Remove-PnPUserInfo" }, { - "CommandName": "Remove-PnPWeb", - "Rank": 1, + "Command": "Remove-PnPUserProfile -LoginName user@domain.com", "Id": 1215, - "Command": "Remove-PnPWeb -Identity projectA" + "Rank": 1, + "CommandName": "Remove-PnPUserProfile" }, { - "CommandName": "Remove-PnPWeb", - "Rank": 2, + "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"", "Id": 1216, - "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" + "Rank": 1, + "CommandName": "Remove-PnPView" }, { - "CommandName": "Remove-PnPWebhookSubscription", - "Rank": 1, + "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"", "Id": 1217, - "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" + "Rank": 1, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Remove-PnPWebPart", - "Rank": 1, + "Command": "Remove-PnPWeb -Identity projectA", "Id": 1218, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" + "Rank": 1, + "CommandName": "Remove-PnPWeb" }, { - "CommandName": "Remove-PnPWebPart", - "Rank": 2, + "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0", "Id": 1219, - "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" + "Rank": 2, + "CommandName": "Remove-PnPWeb" }, { - "CommandName": "Remove-PnPWikiPage", - "Rank": 1, + "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6", "Id": 1220, - "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" + "Rank": 1, + "CommandName": "Remove-PnPWebhookSubscription" }, { - "CommandName": "Rename-PnPFile", - "Rank": 1, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82", "Id": 1221, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" + "Rank": 1, + "CommandName": "Remove-PnPWebPart" }, { - "CommandName": "Rename-PnPFile", - "Rank": 2, + "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart", "Id": 1222, - "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" + "Rank": 2, + "CommandName": "Remove-PnPWebPart" }, { - "CommandName": "Rename-PnPFile", - "Rank": 3, + "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'", "Id": 1223, - "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" + "Rank": 1, + "CommandName": "Remove-PnPWikiPage" }, { - "CommandName": "Rename-PnPFolder", - "Rank": 1, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx", "Id": 1224, - "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" + "Rank": 1, + "CommandName": "Rename-PnPFile" }, { - "CommandName": "Repair-PnPSite", - "Rank": 1, + "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx", "Id": 1225, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "Rank": 2, + "CommandName": "Rename-PnPFile" }, { - "CommandName": "Repair-PnPSite", - "Rank": 2, + "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists", "Id": 1226, - "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "Rank": 3, + "CommandName": "Rename-PnPFile" }, { - "CommandName": "Request-PnPAccessToken", - "Rank": 1, + "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'", "Id": 1227, - "Command": "Request-PnPAccessToken" + "Rank": 1, + "CommandName": "Rename-PnPFolder" }, { - "CommandName": "Request-PnPAccessToken", - "Rank": 2, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", "Id": 1228, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2" + "Rank": 1, + "CommandName": "Repair-PnPSite" }, { - "CommandName": "Request-PnPAccessToken", - "Rank": 3, + "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", "Id": 1229, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All" + "Rank": 2, + "CommandName": "Repair-PnPSite" }, { - "CommandName": "Request-PnPAccessToken", - "Rank": 4, + "Command": "Request-PnPAccessToken", "Id": 1230, - "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl" + "Rank": 1, + "CommandName": "Request-PnPAccessToken" }, { - "CommandName": "Request-PnPPersonalSite", - "Rank": 1, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2", "Id": 1231, - "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" + "Rank": 2, + "CommandName": "Request-PnPAccessToken" }, { - "CommandName": "Request-PnPPersonalSite", - "Rank": 2, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All", "Id": 1232, - "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" + "Rank": 3, + "CommandName": "Request-PnPAccessToken" }, { - "CommandName": "Request-PnPReIndexList", - "Rank": 1, + "Command": "Request-PnPAccessToken -ClientId 26e29fec-aa10-4f99-8381-d96cddc650c2 -Scopes Group.ReadWrite.All, AllSites.FullControl", "Id": 1233, - "Command": "Request-PnPReIndexList -Identity \"Demo List\"" + "Rank": 4, + "CommandName": "Request-PnPAccessToken" }, { - "CommandName": "Request-PnPReIndexWeb", - "Rank": 1, + "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")", "Id": 1234, - "Command": "Request-PnPReIndexWeb" + "Rank": 1, + "CommandName": "Request-PnPPersonalSite" }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 1, + "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"", "Id": 1235, - "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" + "Rank": 2, + "CommandName": "Request-PnPPersonalSite" }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 2, + "Command": "Request-PnPReIndexList -Identity \"Demo List\"", "Id": 1236, - "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" + "Rank": 1, + "CommandName": "Request-PnPReIndexList" }, { - "CommandName": "Request-PnPSyntexClassifyAndExtract", - "Rank": 3, + "Command": "Request-PnPReIndexWeb", "Id": 1237, - "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" + "Rank": 1, + "CommandName": "Request-PnPReIndexWeb" }, { - "CommandName": "Reset-PnPFileVersion", - "Rank": 1, + "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"", "Id": 1238, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" + "Rank": 1, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "CommandName": "Reset-PnPFileVersion", - "Rank": 2, + "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"", "Id": 1239, - "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" + "Rank": 2, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "CommandName": "Reset-PnPLabel", - "Rank": 1, + "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")", "Id": 1240, - "Command": "Reset-PnPLabel -List \"Demo List\"" + "Rank": 3, + "CommandName": "Request-PnPSyntexClassifyAndExtract" }, { - "CommandName": "Reset-PnPLabel", - "Rank": 2, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"", "Id": 1241, - "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true" + "Rank": 1, + "CommandName": "Reset-PnPFileVersion" }, { - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", - "Rank": 1, + "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"", "Id": 1242, - "Command": "Reset-PnPMicrosoft365GroupExpiration" + "Rank": 2, + "CommandName": "Reset-PnPFileVersion" }, { - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", - "Rank": 1, + "Command": "Reset-PnPLabel -List \"Demo List\"", "Id": 1243, - "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" + "Rank": 1, + "CommandName": "Reset-PnPLabel" }, { - "CommandName": "Resolve-PnPFolder", - "Rank": 1, + "Command": "Reset-PnPLabel -List \"Demo List\" -SyncToItems $true", "Id": 1244, - "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" + "Rank": 2, + "CommandName": "Reset-PnPLabel" }, { - "CommandName": "Restore-PnPDeletedMicrosoft365Group", - "Rank": 1, + "Command": "Reset-PnPMicrosoft365GroupExpiration", "Id": 1245, - "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" + "Rank": 1, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration" }, { - "CommandName": "Restore-PnPFileVersion", - "Rank": 1, + "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'", "Id": 1246, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" + "Rank": 1, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault" }, { - "CommandName": "Restore-PnPFileVersion", - "Rank": 2, + "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"", "Id": 1247, - "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" + "Rank": 1, + "CommandName": "Resolve-PnPFolder" }, { - "CommandName": "Restore-PnPFileVersion", - "Rank": 3, + "Command": "Restore-PnPDeletedContainer -Identity \"b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"", "Id": 1248, - "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" + "Rank": 1, + "CommandName": "Restore-PnPDeletedContainer" }, { - "CommandName": "Restore-PnPListItemVersion", - "Rank": 1, + "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f", "Id": 1249, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" + "Rank": 1, + "CommandName": "Restore-PnPDeletedMicrosoft365Group" }, { - "CommandName": "Restore-PnPListItemVersion", - "Rank": 2, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512", "Id": 1250, - "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" + "Rank": 1, + "CommandName": "Restore-PnPFileVersion" }, { - "CommandName": "Restore-PnPRecycleBinItem", - "Rank": 1, + "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512", "Id": 1251, - "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" + "Rank": 2, + "CommandName": "Restore-PnPFileVersion" }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 1, + "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"", "Id": 1252, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 3, + "CommandName": "Restore-PnPFileVersion" }, { - "CommandName": "Restore-PnPTenantRecycleBinItem", - "Rank": 2, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512", "Id": 1253, - "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" + "Rank": 1, + "CommandName": "Restore-PnPListItemVersion" }, { - "CommandName": "Restore-PnPTenantSite", - "Rank": 1, + "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"", "Id": 1254, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" + "Rank": 2, + "CommandName": "Restore-PnPListItemVersion" }, { - "CommandName": "Restore-PnPTenantSite", - "Rank": 2, + "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442", "Id": 1255, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" + "Rank": 1, + "CommandName": "Restore-PnPRecycleBinItem" }, { - "CommandName": "Restore-PnPTenantSite", - "Rank": 3, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1256, - "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" + "Rank": 1, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "CommandName": "Revoke-PnPAzureADAppSitePermission", - "Rank": 1, + "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait", "Id": 1257, - "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" + "Rank": 2, + "CommandName": "Restore-PnPTenantRecycleBinItem" }, { - "CommandName": "Revoke-PnPHubSiteRights", - "Rank": 1, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"", "Id": 1258, - "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 1, + "CommandName": "Restore-PnPTenantSite" }, { - "CommandName": "Revoke-PnPSiteDesignRights", - "Rank": 1, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force", "Id": 1259, - "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" + "Rank": 2, + "CommandName": "Restore-PnPTenantSite" }, { - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", - "Rank": 1, + "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait", "Id": 1260, - "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" + "Rank": 3, + "CommandName": "Restore-PnPTenantSite" }, { - "CommandName": "Revoke-PnPUserSession", - "Rank": 1, + "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa", "Id": 1261, - "Command": "Revoke-PnPUserSession -User user1@contoso.com" + "Rank": 1, + "CommandName": "Revoke-PnPAzureADAppSitePermission" }, { - "CommandName": "Save-PnPPageConversionLog", - "Rank": 1, + "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 1262, - "Command": "Save-PnPPageConversionLog" + "Rank": 1, + "CommandName": "Revoke-PnPHubSiteRights" }, { - "CommandName": "Save-PnPSiteTemplate", - "Rank": 1, + "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"", "Id": 1263, - "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" + "Rank": 1, + "CommandName": "Revoke-PnPSiteDesignRights" }, { - "CommandName": "Save-PnPTenantTemplate", - "Rank": 1, + "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"", "Id": 1264, - "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" + "Rank": 1, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission" }, { - "CommandName": "Send-PnPMail", - "Rank": 1, + "Command": "Revoke-PnPUserSession -User user1@contoso.com", "Id": 1265, - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" + "Rank": 1, + "CommandName": "Revoke-PnPUserSession" }, { - "CommandName": "Send-PnPMail", - "Rank": 2, + "Command": "Save-PnPPageConversionLog", "Id": 1266, - "Command": "Send-PnPMail -From \"sharedmailbox@contoso.onmicrosoft.com\" -To \"recipient1@contoso.com\",\"recipient2@contoso.com\",\"recipient3@contoso.com\" -Cc \"recipient4@contoso.com\" -Bcc \"recipient5@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Importance Low" + "Rank": 1, + "CommandName": "Save-PnPPageConversionLog" }, { - "CommandName": "Send-PnPMail", - "Rank": 3, + "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp", "Id": 1267, - "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" + "Rank": 1, + "CommandName": "Save-PnPSiteTemplate" }, { - "CommandName": "Send-PnPMail", - "Rank": 4, + "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp", "Id": 1268, - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.onmicrosoft.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server contoso.mail.protection.outlook.com" + "Rank": 1, + "CommandName": "Save-PnPTenantTemplate" }, { - "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\"", "Id": 1269, - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com" + "Rank": 1, + "CommandName": "Send-PnPMail" }, { - "CommandName": "Send-PnPMail", - "Rank": 6, + "Command": "Send-PnPMail -From \"sharedmailbox@contoso.onmicrosoft.com\" -To \"recipient1@contoso.com\",\"recipient2@contoso.com\",\"recipient3@contoso.com\" -Cc \"recipient4@contoso.com\" -Bcc \"recipient5@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Importance Low", "Id": 1270, - "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com -Port 587 -EnableSsl:$true -Username \"userxyz\" -Password \"password123\"" + "Rank": 2, + "CommandName": "Send-PnPMail" }, { - "CommandName": "Set-PnPAdaptiveScopeProperty", - "Rank": 1, + "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"", "Id": 1271, - "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" + "Rank": 3, + "CommandName": "Send-PnPMail" }, { - "CommandName": "Set-PnPApplicationCustomizer", - "Rank": 1, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.onmicrosoft.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server contoso.mail.protection.outlook.com", "Id": 1272, - "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" + "Rank": 4, + "CommandName": "Send-PnPMail" }, { - "CommandName": "Set-PnPApplicationCustomizer", - "Rank": 2, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com", "Id": 1273, - "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" + "Rank": 5, + "CommandName": "Send-PnPMail" }, { - "CommandName": "Set-PnPAppSideLoading", - "Rank": 1, + "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Server smtp.myisp.com -Port 587 -EnableSsl:$true -Username \"userxyz\" -Password \"password123\"", "Id": 1274, - "Command": "Set-PnPAppSideLoading -On" + "Rank": 6, + "CommandName": "Send-PnPMail" }, { - "CommandName": "Set-PnPAppSideLoading", - "Rank": 2, + "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue", "Id": 1275, - "Command": "Set-PnPAppSideLoading -Off" + "Rank": 1, + "CommandName": "Set-PnPAdaptiveScopeProperty" }, { - "CommandName": "Set-PnPAuditing", - "Rank": 1, + "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2", "Id": 1276, - "Command": "Set-PnPAuditing -EnableAll" + "Rank": 1, + "CommandName": "Set-PnPApplicationCustomizer" }, { - "CommandName": "Set-PnPAuditing", - "Rank": 2, + "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"", "Id": 1277, - "Command": "Set-PnPAuditing -DisableAll" + "Rank": 2, + "CommandName": "Set-PnPApplicationCustomizer" }, { - "CommandName": "Set-PnPAuditing", - "Rank": 3, + "Command": "Set-PnPAppSideLoading -On", "Id": 1278, - "Command": "Set-PnPAuditing -RetentionTime 7" + "Rank": 1, + "CommandName": "Set-PnPAppSideLoading" }, { - "CommandName": "Set-PnPAuditing", - "Rank": 4, + "Command": "Set-PnPAppSideLoading -Off", "Id": 1279, - "Command": "Set-PnPAuditing -TrimAuditLog" + "Rank": 2, + "CommandName": "Set-PnPAppSideLoading" }, { - "CommandName": "Set-PnPAuditing", - "Rank": 5, + "Command": "Set-PnPAuditing -EnableAll", "Id": 1280, - "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" + "Rank": 1, + "CommandName": "Set-PnPAuditing" }, { - "CommandName": "Set-PnPAvailablePageLayouts", - "Rank": 1, + "Command": "Set-PnPAuditing -DisableAll", "Id": 1281, - "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" + "Rank": 2, + "CommandName": "Set-PnPAuditing" }, { - "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 1, + "Command": "Set-PnPAuditing -RetentionTime 7", "Id": 1282, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" + "Rank": 3, + "CommandName": "Set-PnPAuditing" }, { - "CommandName": "Set-PnPAzureADAppSitePermission", - "Rank": 2, + "Command": "Set-PnPAuditing -TrimAuditLog", "Id": 1283, - "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" + "Rank": 4, + "CommandName": "Set-PnPAuditing" }, { - "CommandName": "Set-PnPAzureADGroup", - "Rank": 1, + "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent", "Id": 1284, - "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" + "Rank": 5, + "CommandName": "Set-PnPAuditing" }, { - "CommandName": "Set-PnPAzureADGroup", - "Rank": 2, + "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts", "Id": 1285, - "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "Rank": 1, + "CommandName": "Set-PnPAvailablePageLayouts" }, { - "CommandName": "Set-PnPAzureADGroup", - "Rank": 3, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read", "Id": 1286, - "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" + "Rank": 1, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 1, + "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects", "Id": 1287, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" + "Rank": 2, + "CommandName": "Set-PnPAzureADAppSitePermission" }, { - "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 2, + "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"", "Id": 1288, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" + "Rank": 1, + "CommandName": "Set-PnPAzureADGroup" }, { - "CommandName": "Set-PnPBrowserIdleSignout", - "Rank": 3, + "Command": "Set-PnPAzureADGroup -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", "Id": 1289, - "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" + "Rank": 2, + "CommandName": "Set-PnPAzureADGroup" }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 1, + "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com", "Id": 1290, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" + "Rank": 3, + "CommandName": "Set-PnPAzureADGroup" }, { - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", - "Rank": 2, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"", "Id": 1291, - "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" + "Rank": 1, + "CommandName": "Set-PnPBrowserIdleSignout" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 1, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)", "Id": 1292, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" + "Rank": 2, + "CommandName": "Set-PnPBrowserIdleSignout" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 2, + "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false", "Id": 1293, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" + "Rank": 3, + "CommandName": "Set-PnPBrowserIdleSignout" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 3, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false", "Id": 1294, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" + "Rank": 1, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", - "Rank": 4, + "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true", "Id": 1295, - "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" + "Rank": 2, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility" }, { - "CommandName": "Set-PnPContentType", - "Rank": 1, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false", "Id": 1296, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "Rank": 1, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Set-PnPContentType", - "Rank": 2, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true", "Id": 1297, - "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" + "Rank": 2, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Set-PnPContentType", - "Rank": 3, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true", "Id": 1298, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" + "Rank": 3, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Set-PnPContentType", - "Rank": 4, + "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false", "Id": 1299, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "Rank": 4, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings" }, { - "CommandName": "Set-PnPContentType", - "Rank": 5, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Id": 1300, - "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" + "Rank": 1, + "CommandName": "Set-PnPContentType" }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 1, + "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden", "Id": 1301, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" + "Rank": 2, + "CommandName": "Set-PnPContentType" }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 2, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"", "Id": 1302, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" + "Rank": 3, + "CommandName": "Set-PnPContentType" }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 3, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Id": 1303, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" + "Rank": 4, + "CommandName": "Set-PnPContentType" }, { - "CommandName": "Set-PnPDefaultColumnValues", - "Rank": 4, + "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'", "Id": 1304, - "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" + "Rank": 5, + "CommandName": "Set-PnPContentType" }, { - "CommandName": "Set-PnPDefaultContentTypeToList", - "Rank": 1, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"", "Id": 1305, - "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" + "Rank": 1, + "CommandName": "Set-PnPDefaultColumnValues" }, { - "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 1, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"", "Id": 1306, - "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" + "Rank": 2, + "CommandName": "Set-PnPDefaultColumnValues" }, { - "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 2, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"", "Id": 1307, - "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" + "Rank": 3, + "CommandName": "Set-PnPDefaultColumnValues" }, { - "CommandName": "Set-PnPDefaultPageLayout", - "Rank": 3, + "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"", "Id": 1308, - "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" + "Rank": 4, + "CommandName": "Set-PnPDefaultColumnValues" }, { - "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 1, + "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"", "Id": 1309, - "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" + "Rank": 1, + "CommandName": "Set-PnPDefaultContentTypeToList" }, { - "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 2, + "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx", "Id": 1310, - "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Rank": 1, + "CommandName": "Set-PnPDefaultPageLayout" }, { - "CommandName": "Set-PnPDisableSpacesActivation", - "Rank": 3, + "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx", "Id": 1311, - "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" + "Rank": 2, + "CommandName": "Set-PnPDefaultPageLayout" }, { - "CommandName": "Set-PnPDocumentSetField", - "Rank": 1, + "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite", "Id": 1312, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" + "Rank": 3, + "CommandName": "Set-PnPDefaultPageLayout" }, { - "CommandName": "Set-PnPDocumentSetField", - "Rank": 2, + "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant", "Id": 1313, - "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" + "Rank": 1, + "CommandName": "Set-PnPDisableSpacesActivation" }, { - "CommandName": "Set-PnPField", - "Rank": 1, + "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Id": 1314, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" + "Rank": 2, + "CommandName": "Set-PnPDisableSpacesActivation" }, { - "CommandName": "Set-PnPField", - "Rank": 2, + "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"", "Id": 1315, - "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" + "Rank": 3, + "CommandName": "Set-PnPDisableSpacesActivation" }, { - "CommandName": "Set-PnPField", - "Rank": 3, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField", "Id": 1316, - "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" + "Rank": 1, + "CommandName": "Set-PnPDocumentSetField" }, { - "CommandName": "Set-PnPFileCheckedIn", - "Rank": 1, + "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField", "Id": 1317, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" + "Rank": 2, + "CommandName": "Set-PnPDocumentSetField" }, { - "CommandName": "Set-PnPFileCheckedIn", - "Rank": 2, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}", "Id": 1318, - "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" + "Rank": 1, + "CommandName": "Set-PnPField" }, { - "CommandName": "Set-PnPFileCheckedOut", - "Rank": 1, + "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists", "Id": 1319, - "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" + "Rank": 2, + "CommandName": "Set-PnPField" }, { - "CommandName": "Set-PnPFolderPermission", - "Rank": 1, + "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}", "Id": 1320, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" + "Rank": 3, + "CommandName": "Set-PnPField" }, { - "CommandName": "Set-PnPFolderPermission", - "Rank": 2, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"", "Id": 1321, - "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "Rank": 1, + "CommandName": "Set-PnPFileCheckedIn" }, { - "CommandName": "Set-PnPFolderPermission", - "Rank": 3, + "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"", "Id": 1322, - "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "Rank": 2, + "CommandName": "Set-PnPFileCheckedIn" }, { - "CommandName": "Set-PnPFooter", - "Rank": 1, + "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"", "Id": 1323, - "Command": "Set-PnPFooter -Enabled:$true" + "Rank": 1, + "CommandName": "Set-PnPFileCheckedOut" }, { - "CommandName": "Set-PnPFooter", - "Rank": 2, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'", "Id": 1324, - "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" + "Rank": 1, + "CommandName": "Set-PnPFolderPermission" }, { - "CommandName": "Set-PnPFooter", - "Rank": 3, + "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'", "Id": 1325, - "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" + "Rank": 2, + "CommandName": "Set-PnPFolderPermission" }, { - "CommandName": "Set-PnPFooter", - "Rank": 4, + "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", "Id": 1326, - "Command": "Set-PnPFooter -LogoUrl \"\"" + "Rank": 3, + "CommandName": "Set-PnPFolderPermission" }, { - "CommandName": "Set-PnPGraphSubscription", - "Rank": 1, + "Command": "Set-PnPFooter -Enabled:$true", "Id": 1327, - "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" + "Rank": 1, + "CommandName": "Set-PnPFooter" }, { - "CommandName": "Set-PnPGroup", - "Rank": 1, + "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral", "Id": 1328, - "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" + "Rank": 2, + "CommandName": "Set-PnPFooter" }, { - "CommandName": "Set-PnPGroup", - "Rank": 2, + "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"", "Id": 1329, - "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" + "Rank": 3, + "CommandName": "Set-PnPFooter" }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 1, + "Command": "Set-PnPFooter -LogoUrl \"\"", "Id": 1330, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" + "Rank": 4, + "CommandName": "Set-PnPFooter" }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 2, + "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"", "Id": 1331, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" + "Rank": 1, + "CommandName": "Set-PnPGraphSubscription" }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 3, + "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members", "Id": 1332, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" + "Rank": 1, + "CommandName": "Set-PnPGroup" }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 4, + "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'", "Id": 1333, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" + "Rank": 2, + "CommandName": "Set-PnPGroup" }, { - "CommandName": "Set-PnPGroupPermissions", - "Rank": 5, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute", "Id": 1334, - "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" + "Rank": 1, + "CommandName": "Set-PnPGroupPermissions" }, { - "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 1, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'", "Id": 1335, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" + "Rank": 2, + "CommandName": "Set-PnPGroupPermissions" }, { - "CommandName": "Set-PnPHideDefaultThemes", - "Rank": 2, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')", "Id": 1336, - "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" + "Rank": 3, + "CommandName": "Set-PnPGroupPermissions" }, { - "CommandName": "Set-PnPHomePage", - "Rank": 1, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')", "Id": 1337, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" + "Rank": 4, + "CommandName": "Set-PnPGroupPermissions" }, { - "CommandName": "Set-PnPHomePage", - "Rank": 2, + "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')", "Id": 1338, - "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" + "Rank": 5, + "CommandName": "Set-PnPGroupPermissions" }, { - "CommandName": "Set-PnPHomeSite", - "Rank": 1, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true", "Id": 1339, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" + "Rank": 1, + "CommandName": "Set-PnPHideDefaultThemes" }, { - "CommandName": "Set-PnPHomeSite", - "Rank": 2, + "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false", "Id": 1340, - "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" + "Rank": 2, + "CommandName": "Set-PnPHideDefaultThemes" }, { - "CommandName": "Set-PnPHubSite", - "Rank": 1, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx", "Id": 1341, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" + "Rank": 1, + "CommandName": "Set-PnPHomePage" }, { - "CommandName": "Set-PnPHubSite", - "Rank": 2, + "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx", "Id": 1342, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" + "Rank": 2, + "CommandName": "Set-PnPHomePage" }, { - "CommandName": "Set-PnPHubSite", - "Rank": 3, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"", "Id": 1343, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" + "Rank": 1, + "CommandName": "Set-PnPHomeSite" }, { - "CommandName": "Set-PnPHubSite", - "Rank": 4, + "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true", "Id": 1344, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" + "Rank": 2, + "CommandName": "Set-PnPHomeSite" }, { - "CommandName": "Set-PnPHubSite", - "Rank": 5, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"", "Id": 1345, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" + "Rank": 1, + "CommandName": "Set-PnPHubSite" }, { - "CommandName": "Set-PnPHubSite", - "Rank": 6, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"", "Id": 1346, - "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" + "Rank": 2, + "CommandName": "Set-PnPHubSite" }, { - "CommandName": "Set-PnPImageListItemColumn", - "Rank": 1, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745", "Id": 1347, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" + "Rank": 3, + "CommandName": "Set-PnPHubSite" }, { - "CommandName": "Set-PnPImageListItemColumn", - "Rank": 2, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"", "Id": 1348, - "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" + "Rank": 4, + "CommandName": "Set-PnPHubSite" }, { - "CommandName": "Set-PnPIndexedProperties", - "Rank": 1, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync", "Id": 1349, - "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" + "Rank": 5, + "CommandName": "Set-PnPHubSite" }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 1, + "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false", "Id": 1350, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" + "Rank": 6, + "CommandName": "Set-PnPHubSite" }, { - "CommandName": "Set-PnPInPlaceRecordsManagement", - "Rank": 2, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"", "Id": 1351, - "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" + "Rank": 1, + "CommandName": "Set-PnPImageListItemColumn" }, { - "CommandName": "Set-PnPKnowledgeHubSite", - "Rank": 1, + "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png", "Id": 1352, - "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" + "Rank": 2, + "CommandName": "Set-PnPImageListItemColumn" }, { - "CommandName": "Set-PnPLabel", - "Rank": 1, + "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName", "Id": 1353, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"" + "Rank": 1, + "CommandName": "Set-PnPIndexedProperties" }, { - "CommandName": "Set-PnPLabel", - "Rank": 2, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true", "Id": 1354, - "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" + "Rank": 1, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "CommandName": "Set-PnPList", - "Rank": 1, + "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false", "Id": 1355, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" + "Rank": 2, + "CommandName": "Set-PnPInPlaceRecordsManagement" }, { - "CommandName": "Set-PnPList", - "Rank": 2, + "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"", "Id": 1356, - "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" + "Rank": 1, + "CommandName": "Set-PnPKnowledgeHubSite" }, { - "CommandName": "Set-PnPList", - "Rank": 3, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\"", "Id": 1357, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" + "Rank": 1, + "CommandName": "Set-PnPLabel" }, { - "CommandName": "Set-PnPList", - "Rank": 4, + "Command": "Set-PnPLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true", "Id": 1358, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" + "Rank": 2, + "CommandName": "Set-PnPLabel" }, { - "CommandName": "Set-PnPList", - "Rank": 5, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true", "Id": 1359, - "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" + "Rank": 1, + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 6, + "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true", "Id": 1360, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" + "Rank": 2, + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 7, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true", "Id": 1361, - "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" + "Rank": 3, + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 8, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20", "Id": 1362, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" + "Rank": 4, + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 9, + "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5", "Id": 1363, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" + "Rank": 5, + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 10, + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true", "Id": 1364, - "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" + "Rank": 6, + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPList", - "Rank": 11, + "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"", "Id": 1365, - "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" + "Rank": 7, + "CommandName": "Set-PnPList" + }, + { + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true", + "Id": 1366, + "Rank": 8, + "CommandName": "Set-PnPList" + }, + { + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500", + "Id": 1367, + "Rank": 9, + "CommandName": "Set-PnPList" + }, + { + "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500", + "Id": 1368, + "Rank": 10, + "CommandName": "Set-PnPList" + }, + { + "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"", + "Id": 1369, + "Rank": 11, + "CommandName": "Set-PnPList" }, { - "CommandName": "Set-PnPListInformationRightsManagement", + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true", + "Id": 1370, "Rank": 1, - "Id": 1366, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" + "CommandName": "Set-PnPListInformationRightsManagement" }, { - "CommandName": "Set-PnPListInformationRightsManagement", + "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14", + "Id": 1371, "Rank": 2, - "Id": 1367, - "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" + "CommandName": "Set-PnPListInformationRightsManagement" }, { - "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1372, "Rank": 1, - "Id": 1368, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "CommandName": "Set-PnPListItem" }, { - "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1373, "Rank": 2, - "Id": 1369, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "CommandName": "Set-PnPListItem" }, { - "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}", + "Id": 1374, "Rank": 3, - "Id": 1370, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" + "CommandName": "Set-PnPListItem" }, { - "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"", + "Id": 1375, "Rank": 4, - "Id": 1371, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" + "CommandName": "Set-PnPListItem" }, { - "CommandName": "Set-PnPListItem", + "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion", + "Id": 1376, "Rank": 5, - "Id": 1372, - "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" + "CommandName": "Set-PnPListItem" }, { - "CommandName": "Set-PnPListItemAsRecord", + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4", + "Id": 1377, "Rank": 1, - "Id": 1373, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" + "CommandName": "Set-PnPListItemAsRecord" }, { - "CommandName": "Set-PnPListItemAsRecord", + "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date", + "Id": 1378, "Rank": 2, - "Id": 1374, - "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" + "CommandName": "Set-PnPListItemAsRecord" }, { - "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1379, "Rank": 1, - "Id": 1375, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" + "CommandName": "Set-PnPListItemPermission" }, { - "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1380, "Rank": 2, - "Id": 1376, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" + "CommandName": "Set-PnPListItemPermission" }, { - "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting", + "Id": 1381, "Rank": 3, - "Id": 1377, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" + "CommandName": "Set-PnPListItemPermission" }, { - "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions", + "Id": 1382, "Rank": 4, - "Id": 1378, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" + "CommandName": "Set-PnPListItemPermission" }, { - "CommandName": "Set-PnPListItemPermission", + "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"", + "Id": 1383, "Rank": 5, - "Id": 1379, - "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" + "CommandName": "Set-PnPListItemPermission" }, { - "CommandName": "Set-PnPListPermission", + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'", + "Id": 1384, "Rank": 1, - "Id": 1380, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" + "CommandName": "Set-PnPListPermission" }, { - "CommandName": "Set-PnPListPermission", + "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'", + "Id": 1385, "Rank": 2, - "Id": 1381, - "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" + "CommandName": "Set-PnPListPermission" }, { - "CommandName": "Set-PnPListRecordDeclaration", + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration", + "Id": 1386, "Rank": 1, - "Id": 1382, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" + "CommandName": "Set-PnPListRecordDeclaration" }, { - "CommandName": "Set-PnPListRecordDeclaration", + "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true", + "Id": 1387, "Rank": 2, - "Id": 1383, - "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" + "CommandName": "Set-PnPListRecordDeclaration" }, { - "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1388, "Rank": 1, - "Id": 1384, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "CommandName": "Set-PnPMasterPage" }, { - "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master", + "Id": 1389, "Rank": 2, - "Id": 1385, - "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" + "CommandName": "Set-PnPMasterPage" }, { - "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1390, "Rank": 3, - "Id": 1386, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "CommandName": "Set-PnPMasterPage" }, { - "CommandName": "Set-PnPMasterPage", + "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master", + "Id": 1391, "Rank": 4, - "Id": 1387, - "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" + "CommandName": "Set-PnPMasterPage" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"", + "Id": 1392, "Rank": 1, - "Id": 1388, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1393, "Rank": 2, - "Id": 1389, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsArchived", + "Id": 1394, "Rank": 3, - "Id": 1390, - "Command": "Set-PnPMessageCenterAnnouncementAsArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"", + "Id": 1395, "Rank": 1, - "Id": 1391, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1396, "Rank": 2, - "Id": 1392, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsFavorite", + "Id": 1397, "Rank": 3, - "Id": 1393, - "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"", + "Id": 1398, "Rank": 1, - "Id": 1394, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"", + "Id": 1399, "Rank": 2, - "Id": 1395, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived", + "Id": 1400, "Rank": 3, - "Id": 1396, - "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"", + "Id": 1401, "Rank": 1, - "Id": 1397, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"", + "Id": 1402, "Rank": 2, - "Id": 1398, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite", + "Id": 1403, "Rank": 3, - "Id": 1399, - "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"", + "Id": 1404, "Rank": 1, - "Id": 1400, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"", + "Id": 1405, "Rank": 2, - "Id": 1401, - "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", + "Command": "Set-PnPMessageCenterAnnouncementAsRead", + "Id": 1406, "Rank": 3, - "Id": 1402, - "Command": "Set-PnPMessageCenterAnnouncementAsRead" + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"", + "Id": 1407, "Rank": 1, - "Id": 1403, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"", + "Id": 1408, "Rank": 2, - "Id": 1404, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", + "Command": "Set-PnPMessageCenterAnnouncementAsUnread", + "Id": 1409, "Rank": 3, - "Id": 1405, - "Command": "Set-PnPMessageCenterAnnouncementAsUnread" + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread" }, { - "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"", + "Id": 1410, "Rank": 1, - "Id": 1406, - "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" + "CommandName": "Set-PnPMicrosoft365Group" }, { - "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"", + "Id": 1411, "Rank": 2, - "Id": 1407, - "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Descriptions \"My Description\" -DisplayName \"My DisplayName\"" + "CommandName": "Set-PnPMicrosoft365Group" }, { - "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"", + "Id": 1412, "Rank": 3, - "Id": 1408, - "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" + "CommandName": "Set-PnPMicrosoft365Group" }, { - "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false", + "Id": 1413, "Rank": 4, - "Id": 1409, - "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" + "CommandName": "Set-PnPMicrosoft365Group" }, { - "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com", + "Id": 1414, "Rank": 5, - "Id": 1410, - "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" + "CommandName": "Set-PnPMicrosoft365Group" }, { - "CommandName": "Set-PnPMicrosoft365Group", + "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"", + "Id": 1415, "Rank": 6, - "Id": 1411, - "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" + "CommandName": "Set-PnPMicrosoft365Group" }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}", + "Id": 1416, "Rank": 1, - "Id": 1412, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Set-PnPMicrosoft365GroupSettings", + "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId", + "Id": 1417, "Rank": 2, - "Id": 1413, - "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" + "CommandName": "Set-PnPMicrosoft365GroupSettings" }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", + "Command": "Set-PnPMinimalDownloadStrategy -Off", + "Id": 1418, "Rank": 1, - "Id": 1414, - "Command": "Set-PnPMinimalDownloadStrategy -Off" + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "CommandName": "Set-PnPMinimalDownloadStrategy", + "Command": "Set-PnPMinimalDownloadStrategy -On", + "Id": 1419, "Rank": 2, - "Id": 1415, - "Command": "Set-PnPMinimalDownloadStrategy -On" + "CommandName": "Set-PnPMinimalDownloadStrategy" }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"", + "Id": 1420, "Rank": 1, - "Id": 1416, - "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled", + "Id": 1421, "Rank": 2, - "Id": 1417, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false", + "Id": 1422, "Rank": 3, - "Id": 1418, - "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default", + "Id": 1423, "Rank": 4, - "Id": 1419, - "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None", + "Id": 1424, "Rank": 5, - "Id": 1420, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0", + "Id": 1425, "Rank": 6, - "Id": 1421, - "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)", + "Id": 1426, "Rank": 7, - "Id": 1422, - "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate", + "Id": 1427, "Rank": 8, - "Id": 1423, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043", + "Id": 1428, "Rank": 9, - "Id": 1424, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035", + "Id": 1429, "Rank": 10, - "Id": 1425, - "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPage", + "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish", + "Id": 1430, "Rank": 11, - "Id": 1426, - "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" + "CommandName": "Set-PnPPage" }, { - "CommandName": "Set-PnPPageTextPart", + "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"", + "Id": 1431, "Rank": 1, - "Id": 1427, - "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" + "CommandName": "Set-PnPPageTextPart" }, { - "CommandName": "Set-PnPPageWebPart", + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"", + "Id": 1432, "Rank": 1, - "Id": 1428, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" + "CommandName": "Set-PnPPageWebPart" }, { - "CommandName": "Set-PnPPageWebPart", + "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties", + "Id": 1433, "Rank": 2, - "Id": 1429, - "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" + "CommandName": "Set-PnPPageWebPart" }, { - "CommandName": "Set-PnPPlannerBucket", + "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"", + "Id": 1434, "Rank": 1, - "Id": 1430, - "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" + "CommandName": "Set-PnPPlannerBucket" }, { - "CommandName": "Set-PnPPlannerConfiguration", + "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true", + "Id": 1435, "Rank": 1, - "Id": 1431, - "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" + "CommandName": "Set-PnPPlannerConfiguration" }, { - "CommandName": "Set-PnPPlannerConfiguration", + "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false", + "Id": 1436, "Rank": 2, - "Id": 1432, - "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" + "CommandName": "Set-PnPPlannerConfiguration" }, { - "CommandName": "Set-PnPPlannerPlan", + "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"", + "Id": 1437, "Rank": 1, - "Id": 1433, - "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" + "CommandName": "Set-PnPPlannerPlan" }, { - "CommandName": "Set-PnPPlannerTask", + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01", + "Id": 1438, "Rank": 1, - "Id": 1434, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" + "CommandName": "Set-PnPPlannerTask" }, { - "CommandName": "Set-PnPPlannerTask", + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"", + "Id": 1439, "Rank": 2, - "Id": 1435, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" + "CommandName": "Set-PnPPlannerTask" }, { - "CommandName": "Set-PnPPlannerTask", + "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"", + "Id": 1440, "Rank": 3, - "Id": 1436, - "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" + "CommandName": "Set-PnPPlannerTask" }, { - "CommandName": "Set-PnPPlannerUserPolicy", + "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"", + "Id": 1441, "Rank": 1, - "Id": 1437, - "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" + "CommandName": "Set-PnPPlannerUserPolicy" }, { - "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue", + "Id": 1442, "Rank": 1, - "Id": 1438, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" + "CommandName": "Set-PnPPropertyBagValue" }, { - "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /", + "Id": 1443, "Rank": 2, - "Id": 1439, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" + "CommandName": "Set-PnPPropertyBagValue" }, { - "CommandName": "Set-PnPPropertyBagValue", + "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder", + "Id": 1444, "Rank": 3, - "Id": 1440, - "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" + "CommandName": "Set-PnPPropertyBagValue" }, { - "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com", + "Id": 1445, "Rank": 1, - "Id": 1441, - "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" + "CommandName": "Set-PnPRequestAccessEmails" }, { - "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Disabled", + "Id": 1446, "Rank": 2, - "Id": 1442, - "Command": "Set-PnPRequestAccessEmails -Disabled" + "CommandName": "Set-PnPRequestAccessEmails" }, { - "CommandName": "Set-PnPRequestAccessEmails", + "Command": "Set-PnPRequestAccessEmails -Disabled:$false", + "Id": 1447, "Rank": 3, - "Id": 1443, - "Command": "Set-PnPRequestAccessEmails -Disabled:$false" + "CommandName": "Set-PnPRequestAccessEmails" }, { - "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems", + "Id": 1448, "Rank": 1, - "Id": 1444, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" + "CommandName": "Set-PnPRoleDefinition" }, { - "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems", + "Id": 1449, "Rank": 2, - "Id": 1445, - "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" + "CommandName": "Set-PnPRoleDefinition" }, { - "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"", + "Id": 1450, "Rank": 3, - "Id": 1446, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" + "CommandName": "Set-PnPRoleDefinition" }, { - "CommandName": "Set-PnPRoleDefinition", + "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500", + "Id": 1451, "Rank": 4, - "Id": 1447, - "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" + "CommandName": "Set-PnPRoleDefinition" }, { - "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config", + "Id": 1452, "Rank": 1, - "Id": 1448, - "Command": "Set-PnPSearchConfiguration -Configuration $config" + "CommandName": "Set-PnPSearchConfiguration" }, { - "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site", + "Id": 1453, "Rank": 2, - "Id": 1449, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" + "CommandName": "Set-PnPSearchConfiguration" }, { - "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription", + "Id": 1454, "Rank": 3, - "Id": 1450, - "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" + "CommandName": "Set-PnPSearchConfiguration" }, { - "CommandName": "Set-PnPSearchConfiguration", + "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription", + "Id": 1455, "Rank": 4, - "Id": 1451, - "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" + "CommandName": "Set-PnPSearchConfiguration" }, { - "CommandName": "Set-PnPSearchExternalItem", + "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone", + "Id": 1456, "Rank": 1, - "Id": 1452, - "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone" + "CommandName": "Set-PnPSearchExternalItem" }, { - "CommandName": "Set-PnPSearchExternalItem", + "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"", + "Id": 1457, "Rank": 2, - "Id": 1453, - "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"" + "CommandName": "Set-PnPSearchExternalItem" }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site", + "Id": 1458, "Rank": 1, - "Id": 1454, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web", + "Id": 1459, "Rank": 2, - "Id": 1455, - "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"", + "Id": 1460, "Rank": 3, - "Id": 1456, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"", + "Id": 1461, "Rank": 4, - "Id": 1457, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site", + "Id": 1462, "Rank": 5, - "Id": 1458, - "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchScope Tenant", + "Id": 1463, "Rank": 6, - "Id": 1459, - "Command": "Set-PnPSearchSettings -SearchScope Tenant" + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSearchSettings", + "Command": "Set-PnPSearchSettings -SearchScope Hub", + "Id": 1464, "Rank": 7, - "Id": 1460, - "Command": "Set-PnPSearchSettings -SearchScope Hub" + "CommandName": "Set-PnPSearchSettings" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -Classification \"HBI\"", + "Id": 1465, "Rank": 1, - "Id": 1461, - "Command": "Set-PnPSite -Classification \"HBI\"" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -Classification $null", + "Id": 1466, "Rank": 2, - "Id": 1462, - "Command": "Set-PnPSite -Classification $null" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -DisableFlows", + "Id": 1467, "Rank": 3, - "Id": 1463, - "Command": "Set-PnPSite -DisableFlows" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -DisableFlows:$false", + "Id": 1468, "Rank": 4, - "Id": 1464, - "Command": "Set-PnPSite -DisableFlows:$false" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png", + "Id": 1469, "Rank": 5, - "Id": 1465, - "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -NoScriptSite $false", + "Id": 1470, "Rank": 6, - "Id": 1466, - "Command": "Set-PnPSite -NoScriptSite $false" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true", + "Id": 1471, "Rank": 7, - "Id": 1467, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200", + "Id": 1472, "Rank": 8, - "Id": 1468, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 10 -ExpireVersionsAfterDays 200" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0", + "Id": 1473, "Rank": 9, - "Id": 1469, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MinorVersions 20 -ExpireVersionsAfterDays 0" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs", + "Id": 1474, "Rank": 10, - "Id": 1470, - "Command": "Set-PnPSite -InheritTenantVPForNewDocLibs" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs", + "Id": 1475, "Rank": 11, - "Id": 1471, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForNewLibs" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs", + "Id": 1476, "Rank": 12, - "Id": 1472, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyForNewLibs" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs", + "Id": 1477, "Rank": 13, - "Id": 1473, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyForNewLibs" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs", + "Id": 1478, "Rank": 14, - "Id": 1474, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $true -ApplyForExistingLibs" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs", + "Id": 1479, "Rank": 15, - "Id": 1475, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyForExistingLibs" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs", + "Id": 1480, "Rank": 16, - "Id": 1476, - "Command": "Set-PnPSite -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyForExistingLibs" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSite", + "Command": "Set-PnPSite -CancelVPForExistingLibs", + "Id": 1481, "Rank": 17, - "Id": 1477, - "Command": "Set-PnPSite -CancelVPForExistingLibs" + "CommandName": "Set-PnPSite" }, { - "CommandName": "Set-PnPSiteClassification", + "Command": "Set-PnPSiteClassification -Identity \"LBI\"", + "Id": 1482, "Rank": 1, - "Id": 1478, - "Command": "Set-PnPSiteClassification -Identity \"LBI\"" + "CommandName": "Set-PnPSiteClassification" }, { - "CommandName": "Set-PnPSiteClosure", + "Command": "Set-PnPSiteClosure -State Open", + "Id": 1483, "Rank": 1, - "Id": 1479, - "Command": "Set-PnPSiteClosure -State Open" + "CommandName": "Set-PnPSiteClosure" }, { - "CommandName": "Set-PnPSiteClosure", + "Command": "Set-PnPSiteClosure -State Closed", + "Id": 1484, "Rank": 2, - "Id": 1480, - "Command": "Set-PnPSiteClosure -State Closed" + "CommandName": "Set-PnPSiteClosure" }, { - "CommandName": "Set-PnPSiteDesign", + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"", + "Id": 1485, "Rank": 1, - "Id": 1481, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" + "CommandName": "Set-PnPSiteDesign" }, { - "CommandName": "Set-PnPSiteDesign", + "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Company Design\" -Description \"My description\" -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"", + "Id": 1486, "Rank": 2, - "Id": 1482, - "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Company Design\" -Description \"My description\" -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"" + "CommandName": "Set-PnPSiteDesign" }, { - "CommandName": "Set-PnPSiteGroup", + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"", + "Id": 1487, "Rank": 1, - "Id": 1483, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" + "CommandName": "Set-PnPSiteGroup" }, { - "CommandName": "Set-PnPSiteGroup", + "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com", + "Id": 1488, "Rank": 2, - "Id": 1484, - "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" + "CommandName": "Set-PnPSiteGroup" }, { - "CommandName": "Set-PnPSitePolicy", + "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"", + "Id": 1489, "Rank": 1, - "Id": 1485, - "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" + "CommandName": "Set-PnPSitePolicy" }, { - "CommandName": "Set-PnPSiteScript", + "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1490, "Rank": 1, - "Id": 1486, - "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "CommandName": "Set-PnPSiteScript" }, { - "CommandName": "Set-PnPSiteScriptPackage", + "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"", + "Id": 1491, "Rank": 1, - "Id": 1487, - "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" + "CommandName": "Set-PnPSiteScriptPackage" }, { - "CommandName": "Set-PnPSiteSensitivityLabel", + "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"", + "Id": 1492, "Rank": 1, - "Id": 1488, - "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" + "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "CommandName": "Set-PnPSiteSensitivityLabel", + "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7", + "Id": 1493, "Rank": 2, - "Id": 1489, - "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" + "CommandName": "Set-PnPSiteSensitivityLabel" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1494, "Rank": 1, - "Id": 1490, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"", + "Id": 1495, "Rank": 2, - "Id": 1491, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1496, "Rank": 3, - "Id": 1492, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"", + "Id": 1497, "Rank": 4, - "Id": 1493, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1498, "Rank": 5, - "Id": 1494, - "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "CommandName": "Set-PnPSiteTemplateMetadata", + "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}", + "Id": 1499, "Rank": 6, - "Id": 1495, - "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" + "CommandName": "Set-PnPSiteTemplateMetadata" }, { - "CommandName": "Set-PnPStorageEntity", + "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1500, "Rank": 1, - "Id": 1496, - "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "CommandName": "Set-PnPStorageEntity" }, { - "CommandName": "Set-PnPStorageEntity", + "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"", + "Id": 1501, "Rank": 2, - "Id": 1497, - "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" + "CommandName": "Set-PnPStorageEntity" }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1502, "Rank": 1, - "Id": 1498, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", + "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"", + "Id": 1503, "Rank": 2, - "Id": 1499, - "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" + "CommandName": "Set-PnPStructuralNavigationCacheSiteState" }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1504, "Rank": 1, - "Id": 1500, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "CommandName": "Set-PnPStructuralNavigationCacheWebState", + "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"", + "Id": 1505, "Rank": 2, - "Id": 1501, - "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" + "CommandName": "Set-PnPStructuralNavigationCacheWebState" }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true", + "Id": 1506, "Rank": 1, - "Id": 1502, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$true" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "CommandName": "Set-PnPSubscribeSharePointNewsDigest", + "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false", + "Id": 1507, "Rank": 2, - "Id": 1503, - "Command": "Set-PnPSubscribeSharePointNewsDigest -Account 'user@domain.com' -Enabled:$false" + "CommandName": "Set-PnPSubscribeSharePointNewsDigest" }, { - "CommandName": "Set-PnPTaxonomyFieldValue", + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c", + "Id": 1508, "Rank": 1, - "Id": 1504, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" + "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "CommandName": "Set-PnPTaxonomyFieldValue", + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'", + "Id": 1509, "Rank": 2, - "Id": 1505, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" + "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "CommandName": "Set-PnPTaxonomyFieldValue", + "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}", + "Id": 1510, "Rank": 3, - "Id": 1506, - "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" + "CommandName": "Set-PnPTaxonomyFieldValue" }, { - "CommandName": "Set-PnPTeamifyPromptHidden", + "Command": "Set-PnPTeamifyPromptHidden", + "Id": 1511, "Rank": 1, - "Id": 1507, - "Command": "Set-PnPTeamifyPromptHidden" + "CommandName": "Set-PnPTeamifyPromptHidden" }, { - "CommandName": "Set-PnPTeamsChannel", + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"", + "Id": 1512, "Rank": 1, - "Id": 1508, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" + "CommandName": "Set-PnPTeamsChannel" }, { - "CommandName": "Set-PnPTeamsChannel", + "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true", + "Id": 1513, "Rank": 2, - "Id": 1509, - "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" + "CommandName": "Set-PnPTeamsChannel" }, { - "CommandName": "Set-PnpTeamsChannelUser", + "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner", + "Id": 1514, "Rank": 1, - "Id": 1510, - "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" + "CommandName": "Set-PnpTeamsChannelUser" }, { - "CommandName": "Set-PnpTeamsChannelUser", + "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member", + "Id": 1515, "Rank": 2, - "Id": 1511, - "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" + "CommandName": "Set-PnpTeamsChannelUser" }, { - "CommandName": "Set-PnPTeamsTab", + "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"", + "Id": 1516, "Rank": 1, - "Id": 1512, - "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" + "CommandName": "Set-PnPTeamsTab" }, { - "CommandName": "Set-PnPTeamsTag", + "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"", + "Id": 1517, "Rank": 1, - "Id": 1513, - "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" + "CommandName": "Set-PnPTeamsTag" }, { - "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'", + "Id": 1518, "Rank": 1, - "Id": 1514, - "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" + "CommandName": "Set-PnPTeamsTeam" }, { - "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public", + "Id": 1519, "Rank": 2, - "Id": 1515, - "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" + "CommandName": "Set-PnPTeamsTeam" }, { - "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false", + "Id": 1520, "Rank": 3, - "Id": 1516, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" + "CommandName": "Set-PnPTeamsTeam" }, { - "CommandName": "Set-PnPTeamsTeam", + "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate", + "Id": 1521, "Rank": 4, - "Id": 1517, - "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" + "CommandName": "Set-PnPTeamsTeam" }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true", + "Id": 1522, "Rank": 1, - "Id": 1518, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false", + "Id": 1523, "Rank": 2, - "Id": 1519, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "CommandName": "Set-PnPTeamsTeamArchivedState", + "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true", + "Id": 1524, "Rank": 3, - "Id": 1520, - "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" + "CommandName": "Set-PnPTeamsTeamArchivedState" }, { - "CommandName": "Set-PnPTeamsTeamPicture", + "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"", + "Id": 1525, "Rank": 1, - "Id": 1521, - "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" + "CommandName": "Set-PnPTeamsTeamPicture" }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Command": "Set-PnPTemporarilyDisableAppBar $true", + "Id": 1526, "Rank": 1, - "Id": 1522, - "Command": "Set-PnPTemporarilyDisableAppBar $true" + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "CommandName": "Set-PnPTemporarilyDisableAppBar", + "Command": "Set-PnPTemporarilyDisableAppBar $false", + "Id": 1527, "Rank": 2, - "Id": 1523, - "Command": "Set-PnPTemporarilyDisableAppBar $false" + "CommandName": "Set-PnPTemporarilyDisableAppBar" }, { - "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"", + "Id": 1528, "Rank": 1, - "Id": 1524, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" + "CommandName": "Set-PnPTenant" }, { - "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false", + "Id": 1529, "Rank": 2, - "Id": 1525, - "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" + "CommandName": "Set-PnPTenant" }, { - "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -ShowAllUsersClaim $false", + "Id": 1530, "Rank": 3, - "Id": 1526, - "Command": "Set-PnPTenant -ShowAllUsersClaim $false" + "CommandName": "Set-PnPTenant" }, { - "CommandName": "Set-PnPTenant", + "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true", + "Id": 1531, "Rank": 4, - "Id": 1527, - "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" + "CommandName": "Set-PnPTenant" }, { - "CommandName": "Set-PnPTenantAppCatalogUrl", + "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"", + "Id": 1532, "Rank": 1, - "Id": 1528, - "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" + "CommandName": "Set-PnPTenantAppCatalogUrl" }, { - "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true", + "Id": 1533, "Rank": 1, - "Id": 1529, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" + "CommandName": "Set-PnPTenantCdnEnabled" }, { - "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false", + "Id": 1534, "Rank": 2, - "Id": 1530, - "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" + "CommandName": "Set-PnPTenantCdnEnabled" }, { - "CommandName": "Set-PnPTenantCdnEnabled", + "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins", + "Id": 1535, "Rank": 3, - "Id": 1531, - "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" + "CommandName": "Set-PnPTenantCdnEnabled" }, { - "CommandName": "Set-PnPTenantCdnPolicy", + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"", + "Id": 1536, "Rank": 1, - "Id": 1532, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" + "CommandName": "Set-PnPTenantCdnPolicy" }, { - "CommandName": "Set-PnPTenantCdnPolicy", + "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"", + "Id": 1537, "Rank": 2, - "Id": 1533, - "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" + "CommandName": "Set-PnPTenantCdnPolicy" }, { - "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled", + "Id": 1538, "Rank": 1, - "Id": 1534, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" + "CommandName": "Set-PnPTenantSite" }, { - "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000", + "Id": 1539, "Rank": 2, - "Id": 1535, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" + "CommandName": "Set-PnPTenantSite" }, { - "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"", + "Id": 1540, "Rank": 3, - "Id": 1536, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" + "CommandName": "Set-PnPTenantSite" }, { - "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")", + "Id": 1541, "Rank": 4, - "Id": 1537, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" + "CommandName": "Set-PnPTenantSite" }, { - "CommandName": "Set-PnPTenantSite", + "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false", + "Id": 1542, "Rank": 5, - "Id": 1538, - "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" + "CommandName": "Set-PnPTenantSite" }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", + "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false", + "Id": 1543, "Rank": 1, - "Id": 1539, - "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "CommandName": "Set-PnPTenantSyncClientRestriction", + "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"", + "Id": 1544, "Rank": 2, - "Id": 1540, - "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" + "CommandName": "Set-PnPTenantSyncClientRestriction" }, { - "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"", + "Id": 1545, "Rank": 1, - "Id": 1541, - "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" + "CommandName": "Set-PnPTerm" }, { - "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1546, "Rank": 2, - "Id": 1542, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" + "CommandName": "Set-PnPTerm" }, { - "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}", + "Id": 1547, "Rank": 3, - "Id": 1543, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" + "CommandName": "Set-PnPTerm" }, { - "CommandName": "Set-PnPTerm", + "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true", + "Id": 1548, "Rank": 4, - "Id": 1544, - "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" + "CommandName": "Set-PnPTerm" }, { - "CommandName": "Set-PnPTermGroup", + "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"", + "Id": 1549, "Rank": 1, - "Id": 1545, - "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" + "CommandName": "Set-PnPTermGroup" }, { - "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"", + "Id": 1550, "Rank": 1, - "Id": 1546, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" + "CommandName": "Set-PnPTermSet" }, { - "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true", + "Id": 1551, "Rank": 2, - "Id": 1547, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" + "CommandName": "Set-PnPTermSet" }, { - "CommandName": "Set-PnPTermSet", + "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false", + "Id": 1552, "Rank": 3, - "Id": 1548, - "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" + "CommandName": "Set-PnPTermSet" }, { - "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme", + "Id": 1553, "Rank": 1, - "Id": 1549, - "Command": "Set-PnPTheme" + "CommandName": "Set-PnPTheme" }, { - "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor", + "Id": 1554, "Rank": 2, - "Id": 1550, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" + "CommandName": "Set-PnPTheme" }, { - "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'", + "Id": 1555, "Rank": 3, - "Id": 1551, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" + "CommandName": "Set-PnPTheme" }, { - "CommandName": "Set-PnPTheme", + "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit", + "Id": 1556, "Rank": 4, - "Id": 1552, - "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" + "CommandName": "Set-PnPTheme" }, { - "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt", + "Id": 1557, "Rank": 1, - "Id": 1553, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt" + "CommandName": "Set-PnPTraceLog" }, { - "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug", + "Id": 1558, "Rank": 2, - "Id": 1554, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug" + "CommandName": "Set-PnPTraceLog" }, { - "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"", + "Id": 1559, "Rank": 3, - "Id": 1555, - "Command": "Set-PnPTraceLog -On -LogFile traceoutput.txt -Level Debug -Delimiter \",\"" + "CommandName": "Set-PnPTraceLog" }, { - "CommandName": "Set-PnPTraceLog", + "Command": "Set-PnPTraceLog -Off", + "Id": 1560, "Rank": 4, - "Id": 1556, - "Command": "Set-PnPTraceLog -Off" + "CommandName": "Set-PnPTraceLog" }, { - "CommandName": "Set-PnPUserOneDriveQuota", + "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208", + "Id": 1561, "Rank": 1, - "Id": 1557, - "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" + "CommandName": "Set-PnPUserOneDriveQuota" }, { - "CommandName": "Set-PnPUserProfileProperty", + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'", + "Id": 1562, "Rank": 1, - "Id": 1558, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" + "CommandName": "Set-PnPUserProfileProperty" }, { - "CommandName": "Set-PnPUserProfileProperty", + "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'", + "Id": 1563, "Rank": 2, - "Id": 1559, - "Command": "Set-PnPUserProfileProperty -Account 'user@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" + "CommandName": "Set-PnPUserProfileProperty" }, { - "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}", + "Id": 1564, "Rank": 1, - "Id": 1560, - "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" + "CommandName": "Set-PnPView" }, { - "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"", + "Id": 1565, "Rank": 2, - "Id": 1561, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" + "CommandName": "Set-PnPView" }, { - "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"", + "Id": 1566, "Rank": 3, - "Id": 1562, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" + "CommandName": "Set-PnPView" }, { - "CommandName": "Set-PnPView", + "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}", + "Id": 1567, "Rank": 4, - "Id": 1563, - "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" + "CommandName": "Set-PnPView" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4 -CardSize Large -PropertiesJSON $myProperties", + "Id": 1568, "Rank": 1, - "Id": 1564, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4 -CardSize Large -PropertiesJSON $myProperties" + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"", + "Id": 1569, "Rank": 2, - "Id": 1565, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4", + "Id": 1570, "Rank": 3, - "Id": 1566, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4" + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Set-PnPVivaConnectionsDashboardACE", + "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large", + "Id": 1571, "Rank": 4, - "Id": 1567, - "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" + "CommandName": "Set-PnPVivaConnectionsDashboardACE" }, { - "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true", + "Id": 1572, "Rank": 1, - "Id": 1568, - "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" + "CommandName": "Set-PnPWeb" }, { - "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -QuickLaunchEnabled:$false", + "Id": 1573, "Rank": 2, - "Id": 1569, - "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" + "CommandName": "Set-PnPWeb" }, { - "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact", + "Id": 1574, "Rank": 3, - "Id": 1570, - "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" + "CommandName": "Set-PnPWeb" }, { - "CommandName": "Set-PnPWeb", + "Command": "Set-PnPWeb -NoCrawl:$true", + "Id": 1575, "Rank": 4, - "Id": 1571, - "Command": "Set-PnPWeb -NoCrawl:$true" + "CommandName": "Set-PnPWeb" }, { - "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended", + "Id": 1576, "Rank": 1, - "Id": 1572, - "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" + "CommandName": "Set-PnPWebHeader" }, { - "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -HeaderEmphasis Strong", + "Id": 1577, "Rank": 2, - "Id": 1573, - "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" + "CommandName": "Set-PnPWebHeader" }, { - "CommandName": "Set-PnPWebHeader", + "Command": "Set-PnPWebHeader -LogoAlignment Middle", + "Id": 1578, "Rank": 3, - "Id": 1574, - "Command": "Set-PnPWebHeader -LogoAlignment Middle" + "CommandName": "Set-PnPWebHeader" }, { - "CommandName": "Set-PnPWebhookSubscription", + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook", + "Id": 1579, "Rank": 1, - "Id": 1575, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" + "CommandName": "Set-PnPWebhookSubscription" }, { - "CommandName": "Set-PnPWebhookSubscription", + "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"", + "Id": 1580, "Rank": 2, - "Id": 1576, - "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" + "CommandName": "Set-PnPWebhookSubscription" }, { - "CommandName": "Set-PnPWebPartProperty", + "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"", + "Id": 1581, "Rank": 1, - "Id": 1577, - "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" + "CommandName": "Set-PnPWebPartProperty" }, { - "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1582, "Rank": 1, - "Id": 1578, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" + "CommandName": "Set-PnPWebPermission" }, { - "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"", + "Id": 1583, "Rank": 2, - "Id": 1579, - "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" + "CommandName": "Set-PnPWebPermission" }, { - "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"", + "Id": 1584, "Rank": 3, - "Id": 1580, - "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" + "CommandName": "Set-PnPWebPermission" }, { - "CommandName": "Set-PnPWebPermission", + "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"", + "Id": 1585, "Rank": 4, - "Id": 1581, - "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" + "CommandName": "Set-PnPWebPermission" }, { - "CommandName": "Set-PnPWebTheme", + "Command": "Set-PnPWebTheme -Theme MyTheme", + "Id": 1586, "Rank": 1, - "Id": 1582, - "Command": "Set-PnPWebTheme -Theme MyTheme" + "CommandName": "Set-PnPWebTheme" }, { - "CommandName": "Set-PnPWebTheme", + "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb", + "Id": 1587, "Rank": 2, - "Id": 1583, - "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" + "CommandName": "Set-PnPWebTheme" }, { - "CommandName": "Set-PnPWikiPageContent", + "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html", + "Id": 1588, "Rank": 1, - "Id": 1584, - "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" + "CommandName": "Set-PnPWikiPageContent" }, { - "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"finance\"", + "Id": 1589, "Rank": 1, - "Id": 1585, - "Command": "Submit-PnPSearchQuery -Query \"finance\"" + "CommandName": "Submit-PnPSearchQuery" }, { - "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10", + "Id": 1590, "Rank": 2, - "Id": 1586, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" + "CommandName": "Submit-PnPSearchQuery" }, { - "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All", + "Id": 1591, "Rank": 3, - "Id": 1587, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" + "CommandName": "Submit-PnPSearchQuery" }, { - "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"", + "Id": 1592, "Rank": 4, - "Id": 1588, - "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" + "CommandName": "Submit-PnPSearchQuery" }, { - "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All", + "Id": 1593, "Rank": 5, - "Id": 1589, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" + "CommandName": "Submit-PnPSearchQuery" }, { - "CommandName": "Submit-PnPSearchQuery", + "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All", + "Id": 1594, "Rank": 6, - "Id": 1590, - "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All" + "CommandName": "Submit-PnPSearchQuery" }, { - "CommandName": "Submit-PnPTeamsChannelMessage", + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"", + "Id": 1595, "Rank": 1, - "Id": 1591, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" + "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "CommandName": "Submit-PnPTeamsChannelMessage", + "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html", + "Id": 1596, "Rank": 2, - "Id": 1592, - "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" + "CommandName": "Submit-PnPTeamsChannelMessage" }, { - "CommandName": "Sync-PnPAppToTeams", + "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1597, "Rank": 1, - "Id": 1593, - "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "CommandName": "Sync-PnPAppToTeams" }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}", + "Id": 1598, "Rank": 1, - "Id": 1594, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"", + "Id": 1599, "Rank": 2, - "Id": 1595, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", + "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose", + "Id": 1600, "Rank": 3, - "Id": 1596, - "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory" }, { - "CommandName": "Test-PnPListItemIsRecord", + "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4", + "Id": 1601, "Rank": 1, - "Id": 1597, - "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" + "CommandName": "Test-PnPListItemIsRecord" }, { - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", + "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"", + "Id": 1602, "Rank": 1, - "Id": 1598, - "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed" }, { - "CommandName": "Test-PnPSite", + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"", + "Id": 1603, "Rank": 1, - "Id": 1599, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" + "CommandName": "Test-PnPSite" }, { - "CommandName": "Test-PnPSite", + "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"", + "Id": 1604, "Rank": 2, - "Id": 1600, - "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" + "CommandName": "Test-PnPSite" }, { - "CommandName": "Test-PnPTenantTemplate", + "Command": "Test-PnPTenantTemplate -Template $myTemplate", + "Id": 1605, "Rank": 1, - "Id": 1601, - "Command": "Test-PnPTenantTemplate -Template $myTemplate" + "CommandName": "Test-PnPTenantTemplate" }, { - "CommandName": "Undo-PnPFileCheckedOut", + "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"", + "Id": 1606, "Rank": 1, - "Id": 1602, - "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" + "CommandName": "Undo-PnPFileCheckedOut" }, { - "CommandName": "Uninstall-PnPApp", + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1607, "Rank": 1, - "Id": 1603, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "CommandName": "Uninstall-PnPApp" }, { - "CommandName": "Uninstall-PnPApp", + "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1608, "Rank": 2, - "Id": 1604, - "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "CommandName": "Uninstall-PnPApp" }, { - "CommandName": "Unpublish-PnPApp", + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1609, "Rank": 1, - "Id": 1605, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "CommandName": "Unpublish-PnPApp" }, { - "CommandName": "Unpublish-PnPApp", + "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1610, "Rank": 2, - "Id": 1606, - "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "CommandName": "Unpublish-PnPApp" }, { - "CommandName": "Unpublish-PnPContentType", + "Command": "Unpublish-PnPContentType -ContentType 0x0101", + "Id": 1611, "Rank": 1, - "Id": 1607, - "Command": "Unpublish-PnPContentType -ContentType 0x0101" + "CommandName": "Unpublish-PnPContentType" }, { - "CommandName": "Unpublish-PnPSyntexModel", + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"", + "Id": 1612, "Rank": 1, - "Id": 1608, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" + "CommandName": "Unpublish-PnPSyntexModel" }, { - "CommandName": "Unpublish-PnPSyntexModel", + "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch", + "Id": 1613, "Rank": 2, - "Id": 1609, - "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" + "CommandName": "Unpublish-PnPSyntexModel" }, { - "CommandName": "Unregister-PnPHubSite", + "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"", + "Id": 1614, "Rank": 1, - "Id": 1610, - "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" + "CommandName": "Unregister-PnPHubSite" }, { - "CommandName": "Update-PnPApp", + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", + "Id": 1615, "Rank": 1, - "Id": 1611, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" + "CommandName": "Update-PnPApp" }, { - "CommandName": "Update-PnPApp", + "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site", + "Id": 1616, "Rank": 2, - "Id": 1612, - "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" + "CommandName": "Update-PnPApp" }, { - "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"", + "Id": 1617, "Rank": 1, - "Id": 1613, - "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" + "CommandName": "Update-PnPAvailableSiteClassification" }, { - "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"", + "Id": 1618, "Rank": 2, - "Id": 1614, - "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" + "CommandName": "Update-PnPAvailableSiteClassification" }, { - "CommandName": "Update-PnPAvailableSiteClassification", + "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp", + "Id": 1619, "Rank": 3, - "Id": 1615, - "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" + "CommandName": "Update-PnPAvailableSiteClassification" }, { - "CommandName": "Update-PnPSiteDesignFromWeb", + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll", + "Id": 1620, "Rank": 1, - "Id": 1616, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" + "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "CommandName": "Update-PnPSiteDesignFromWeb", + "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)", + "Id": 1621, "Rank": 2, - "Id": 1617, - "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" + "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "CommandName": "Update-PnPSiteDesignFromWeb", + "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"", + "Id": 1622, "Rank": 3, - "Id": 1618, - "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" + "CommandName": "Update-PnPSiteDesignFromWeb" }, { - "CommandName": "Update-PnPTeamsApp", + "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip", + "Id": 1623, "Rank": 1, - "Id": 1619, - "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" + "CommandName": "Update-PnPTeamsApp" }, { - "CommandName": "Update-PnPTeamsUser", + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner", + "Id": 1624, "Rank": 1, - "Id": 1620, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" + "CommandName": "Update-PnPTeamsUser" }, { - "CommandName": "Update-PnPTeamsUser", + "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member", + "Id": 1625, "Rank": 2, - "Id": 1621, - "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" + "CommandName": "Update-PnPTeamsUser" }, { - "CommandName": "Update-PnPTeamsUser", + "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force", + "Id": 1626, "Rank": 3, - "Id": 1622, - "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" + "CommandName": "Update-PnPTeamsUser" }, { - "CommandName": "Update-PnPUserType", + "Command": "Update-PnPUserType -LoginName jdoe@contoso.com", + "Id": 1627, "Rank": 1, - "Id": 1623, - "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" + "CommandName": "Update-PnPUserType" } ] diff --git a/src/Commands/Admin/GetContainerTypeConfiguration.cs b/src/Commands/Admin/GetContainerTypeConfiguration.cs index 679196cfd..8f10df1e3 100644 --- a/src/Commands/Admin/GetContainerTypeConfiguration.cs +++ b/src/Commands/Admin/GetContainerTypeConfiguration.cs @@ -19,7 +19,7 @@ protected override void ExecuteCmdlet() throw new ArgumentException($"Identity {Identity} value is invalid"); } ClientResult sPOContainerTypeConfigurationByContainerTypeId = Tenant.GetSPOContainerTypeConfigurationByContainerTypeId(Identity); - AdminContext.ExecuteQuery(); + AdminContext.ExecuteQueryRetry(); if (sPOContainerTypeConfigurationByContainerTypeId != null && sPOContainerTypeConfigurationByContainerTypeId.Value != null) { WriteObject(new Model.SharePoint.SPContainerTypeConfigurationPropertiesObj(sPOContainerTypeConfigurationByContainerTypeId.Value)); diff --git a/src/Commands/InformationManagement/ResetLabel.cs b/src/Commands/InformationManagement/ResetLabel.cs deleted file mode 100644 index e8d180501..000000000 --- a/src/Commands/InformationManagement/ResetLabel.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System.Management.Automation; -using Microsoft.SharePoint.Client; - -using PnP.PowerShell.Commands.Base.PipeBinds; - -namespace PnP.PowerShell.Commands.InformationManagement -{ - [Cmdlet(VerbsCommon.Reset, "PnPLabel")] - public class ResetLabel : PnPSharePointCmdlet - { - [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0)] - public ListPipeBind List; - - [Parameter(Mandatory = false)] - public bool SyncToItems; - - protected override void ExecuteCmdlet() - { - var list = List.GetList(PnPContext); - if (list != null) - { - list.SetComplianceTag(string.Empty, false, false, SyncToItems); - } - else - { - WriteWarning("List or library not found."); - } - } - } -} \ No newline at end of file diff --git a/src/Commands/InformationManagement/ResetRetentionLabel.cs b/src/Commands/InformationManagement/ResetRetentionLabel.cs new file mode 100644 index 000000000..59f15f02f --- /dev/null +++ b/src/Commands/InformationManagement/ResetRetentionLabel.cs @@ -0,0 +1,87 @@ +using System.Management.Automation; +using Microsoft.SharePoint.Client; +using PnP.PowerShell.Commands.Base.PipeBinds; +using System; +using System.ComponentModel.DataAnnotations; +using System.Collections.Generic; + + +namespace PnP.PowerShell.Commands.InformationManagement +{ + [Cmdlet(VerbsCommon.Reset, "PnPRetentionLabel", DefaultParameterSetName = ParamSet_List)] + [Alias("Reset-PnPLabel")] + public class ResetRetentionLabel : PnPSharePointCmdlet + { + private const int MAXBATCHSIZE = 25; + + private const string ParamSet_List = "Reset on a list"; + private const string ParamSet_BulkItems = "Reset on items in bulk"; + + [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0, ParameterSetName = ParameterAttribute.AllParameterSets)] + public ListPipeBind List; + + [Parameter(Mandatory = true, ParameterSetName = ParamSet_BulkItems)] + public List ItemIds; + + [Parameter(Mandatory = false, ParameterSetName = ParamSet_BulkItems)] + [Range(0, MAXBATCHSIZE)] + public int BatchSize = MAXBATCHSIZE; + + [Parameter(Mandatory = false, ParameterSetName = ParamSet_List)] + public bool SyncToItems; + + protected override void ExecuteCmdlet() + { + if (ParameterSetName == ParamSet_BulkItems) + { + if (BatchSize > MAXBATCHSIZE) + { + BatchSize = MAXBATCHSIZE; + WriteVerbose($"Overriding batch size"); + } + + if (ItemIds == null) + { + WriteWarning("No items provided"); + return; + } + } + + var list = List.GetList(PnPContext); + if (list != null) + { + if (ParameterSetName == ParamSet_BulkItems) + { + PnPContext.Web.LoadAsync(i => i.Url); + list.LoadAsync(i => i.RootFolder); + + var rootUrl = PnPContext.Web.Url.GetLeftPart(UriPartial.Authority); + + var rangeIndex = 0; + + while(ItemIds.Count > 0) + { + rangeIndex++; + var itemsToProcess = (ItemIds.Count > BatchSize) ? BatchSize : ItemIds.Count; + + var range = ItemIds.GetRange(0, itemsToProcess); + + WriteVerbose($"Clearing retention label on batch {rangeIndex} of items"); + Microsoft.SharePoint.Client.CompliancePolicy.SPPolicyStoreProxy.SetComplianceTagOnBulkItems(ClientContext, range, rootUrl + list.RootFolder.ServerRelativeUrl, string.Empty); + ClientContext.ExecuteQuery(); + + ItemIds.RemoveRange(0, itemsToProcess); + } + } + else + { + list.SetComplianceTag(string.Empty, false, false, SyncToItems); + } + } + else + { + WriteWarning("List or library not found."); + } + } + } +} \ No newline at end of file diff --git a/src/Commands/InformationManagement/SetLabel.cs b/src/Commands/InformationManagement/SetLabel.cs deleted file mode 100644 index f38efa1af..000000000 --- a/src/Commands/InformationManagement/SetLabel.cs +++ /dev/null @@ -1,52 +0,0 @@ -using System.Management.Automation; -using Microsoft.SharePoint.Client; -using PnP.PowerShell.Commands.Base.PipeBinds; -using System.Linq; -using System; - -namespace PnP.PowerShell.Commands.InformationManagement -{ - [Cmdlet(VerbsCommon.Set, "PnPLabel")] - public class SetLabel : PnPSharePointCmdlet - { - [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0)] - public ListPipeBind List; - - [Parameter(Mandatory = true)] - public string Label; - - [Parameter(Mandatory = false)] - public bool SyncToItems; - - [Obsolete("Overriding Purview retention label settings has been deprecated in SharePoint Online. This parameter will be removed in the next major release.")] - [Parameter(Mandatory = false)] - public bool BlockDeletion; - - [Obsolete("Overriding Purview retention label settings has been deprecated in SharePoint Online. This parameter will be removed in the next major release.")] - [Parameter(Mandatory = false)] - public bool BlockEdit; - - protected override void ExecuteCmdlet() - { - var list = List.GetList(PnPContext); - var availableTags = PnPContext.Site.GetAvailableComplianceTags(); - - if (list != null) - { - var availableTag = availableTags.FirstOrDefault(tag => tag.TagName.ToString() == Label); - if (availableTag != null) - { - list.SetComplianceTag(Label, availableTag.BlockDelete, availableTag.BlockEdit, SyncToItems); - } - else - { - WriteWarning("The provided label is not available in the site."); - } - } - else - { - WriteWarning("List or library not found."); - } - } - } -} \ No newline at end of file diff --git a/src/Commands/InformationManagement/SetRetentionLabel.cs b/src/Commands/InformationManagement/SetRetentionLabel.cs new file mode 100644 index 000000000..27584b4b1 --- /dev/null +++ b/src/Commands/InformationManagement/SetRetentionLabel.cs @@ -0,0 +1,110 @@ +using System.Management.Automation; +using Microsoft.SharePoint.Client; +using PnP.PowerShell.Commands.Base.PipeBinds; +using System.Linq; +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; + + +namespace PnP.PowerShell.Commands.InformationManagement +{ + [Cmdlet(VerbsCommon.Set, "PnPRetentionLabel", DefaultParameterSetName = ParamSet_List)] + [Alias("Set-PnPLabel")] + public class SetRetentionLabel : PnPSharePointCmdlet + { + private const string ParamSet_List = "Set on a list"; + private const string ParamSet_BulkItems = "Set on items in bulk"; + + private const int MAXBATCHSIZE = 25; + + [Parameter(Mandatory = false, ParameterSetName = ParamSet_BulkItems)] + [Range(0, MAXBATCHSIZE)] + public int BatchSize = MAXBATCHSIZE; + + [Parameter(Mandatory = true, ParameterSetName = ParamSet_BulkItems)] + public List ItemIds; + + [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0, ParameterSetName = ParameterAttribute.AllParameterSets)] + public ListPipeBind List; + + [Parameter(Mandatory = true, ParameterSetName = ParameterAttribute.AllParameterSets)] + public string Label; + + [Parameter(Mandatory = false, ParameterSetName = ParamSet_List)] + public bool SyncToItems; + + [Obsolete("Overriding Purview retention label settings has been deprecated in SharePoint Online. This parameter will be removed in the next major release.")] + [Parameter(Mandatory = false, ParameterSetName = ParamSet_List)] + public bool BlockDeletion; + + [Obsolete("Overriding Purview retention label settings has been deprecated in SharePoint Online. This parameter will be removed in the next major release.")] + [Parameter(Mandatory = false, ParameterSetName = ParamSet_List)] + public bool BlockEdit; + + protected override void ExecuteCmdlet() + { + if (ParameterSetName == ParamSet_BulkItems) + { + if (BatchSize > MAXBATCHSIZE) + { + BatchSize = MAXBATCHSIZE; + WriteVerbose($"Overriding batch size"); + } + + if (ItemIds == null) + { + WriteWarning("No items provided"); + return; + } + } + + + var list = List.GetList(PnPContext); + var availableTags = PnPContext.Site.GetAvailableComplianceTags(); + + if (list != null) + { + var availableTag = availableTags.FirstOrDefault(tag => tag.TagName.ToString() == Label); + if (availableTag != null) + { + if (ParameterSetName == ParamSet_BulkItems) + { + PnPContext.Web.LoadAsync(i => i.Url); + list.LoadAsync(i => i.RootFolder); + + + var rootUrl = PnPContext.Web.Url.GetLeftPart(UriPartial.Authority); + + var rangeIndex = 0; + + while(ItemIds.Count > 0) + { + rangeIndex++; + var itemsToProcess = (ItemIds.Count > BatchSize) ? BatchSize : ItemIds.Count; + + var range = ItemIds.GetRange(0, itemsToProcess); + + WriteVerbose($"Setting retention label to batch {rangeIndex} of items"); + Microsoft.SharePoint.Client.CompliancePolicy.SPPolicyStoreProxy.SetComplianceTagOnBulkItems(ClientContext, range, rootUrl + list.RootFolder.ServerRelativeUrl, Label); + ClientContext.ExecuteQuery(); + ItemIds.RemoveRange(0, itemsToProcess); + } + } + else + { + list.SetComplianceTag(Label, availableTag.BlockDelete, availableTag.BlockEdit, SyncToItems); + } + } + else + { + WriteWarning("The provided label is not available in the site."); + } + } + else + { + WriteWarning("List or library not found."); + } + } + } +} \ No newline at end of file diff --git a/src/Commands/Model/SharePoint/SetVersionPolicyProgressClient.cs b/src/Commands/Model/SharePoint/SetVersionPolicyProgressClient.cs new file mode 100644 index 000000000..d5108b016 --- /dev/null +++ b/src/Commands/Model/SharePoint/SetVersionPolicyProgressClient.cs @@ -0,0 +1,75 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace PnP.PowerShell.Commands.Model.SharePoint +{ + /// + /// The progress for the request that settting version policy for existing document libraries of the site + /// + public class SetVersionPolicyProgressClient + { + /// + /// Site Url + /// + public string Url { get; set; } + + /// + /// The workitem Id related to the request + /// + public string WorkItemId { get; set; } + + /// + /// The request status + /// + public string Status { get; set; } + + /// + /// The UTC time user sent the request + /// + public string RequestTimeInUTC { get; set; } + + /// + /// The UTC time the server last processed the request + /// + public string LastProcessTimeInUTC { get; set; } + + /// + /// The UTC time the request completes + /// + public string CompleteTimeInUTC { get; set; } + + /// + /// The Libraries processed count + /// + public string LibrariesProcessedInTotal { get; set; } + + /// + /// The Libraries failed to process count + /// + public string LibrariesFailedInTotal { get; set; } + + /// + /// Set version policy as AutoExpiration or not + /// + public string EnableAutomaticMode { get; set; } + + /// + /// The time limit if the version policy is ExpireAfter + /// + public string ExpireAfterDays { get; set; } + + /// + /// MajorVersionLimit for the versions + /// + public string MajorVersionLimit { get; set; } + + /// + /// MajorWithMinorVersionsLimit for the versions + /// if minor version is enabled + /// + public string MajorWithMinorVersionsLimit { get; set; } + } +} diff --git a/src/Commands/Purview/GetRetentionLabel.cs b/src/Commands/Purview/GetTenantRetentionLabel.cs similarity index 74% rename from src/Commands/Purview/GetRetentionLabel.cs rename to src/Commands/Purview/GetTenantRetentionLabel.cs index b712d56c9..1efc898af 100644 --- a/src/Commands/Purview/GetRetentionLabel.cs +++ b/src/Commands/Purview/GetTenantRetentionLabel.cs @@ -7,19 +7,20 @@ namespace PnP.PowerShell.Commands.Purview { - [Cmdlet(VerbsCommon.Get, "PnPRetentionLabel")] + [Cmdlet(VerbsCommon.Get, "PnPTenantRetentionLabel")] [OutputType(typeof(IEnumerable))] [OutputType(typeof(Model.Graph.Purview.RetentionLabel))] [RequiredMinimalApiPermissions("RecordsManagement.Read.All")] - public class GetAvailableRetentionLabel : PnPGraphCmdlet + [WriteAliasWarning("Get-PnPRetentionLabel will be renamed to Get-PnPTenantRetentionLabel in a future version, please update your scripts now already to use this cmdlet name instead")] + [Alias("Get-PnPRetentionLabel")] + public class GetTenantRetentionLabel : PnPGraphCmdlet { [Parameter(Mandatory = false)] public Guid Identity; protected override void ExecuteCmdlet() { - string url; - url = "/beta/security/labels/retentionLabels"; + string url = "/beta/security/labels/retentionLabels"; if (ParameterSpecified(nameof(Identity))) { diff --git a/src/Commands/Site/GetSetVersionPolicyProgress.cs b/src/Commands/Site/GetSetVersionPolicyProgress.cs index 036e6e1d0..c8eb1477c 100644 --- a/src/Commands/Site/GetSetVersionPolicyProgress.cs +++ b/src/Commands/Site/GetSetVersionPolicyProgress.cs @@ -8,8 +8,8 @@ namespace PnP.PowerShell.Commands.Site { - [Cmdlet(VerbsCommon.Get, "PnPSiteSetVersionPolicyProgress")] - [OutputType(typeof(PnP.PowerShell.Commands.Model.SharePoint.SetVersionPolicyProgress))] + [Cmdlet(VerbsCommon.Get, "PnPSiteVersionPolicyProgress")] + [OutputType(typeof(PnP.PowerShell.Commands.Model.SharePoint.SetVersionPolicyProgressClient))] public class GetSetVersionPolicyProgress : PnPSharePointCmdlet { protected override void ExecuteCmdlet() @@ -32,7 +32,24 @@ protected override void ExecuteCmdlet() progress.CompleteTimeInUTC = string.Empty; } - WriteObject(progress); + // Display different property names in the results using Client object + var progressClient = new SetVersionPolicyProgressClient() + { + Url = progress.Url, + WorkItemId = progress.WorkItemId, + Status = progress.Status, + RequestTimeInUTC = progress.RequestTimeInUTC, + LastProcessTimeInUTC = progress.LastProcessTimeInUTC, + CompleteTimeInUTC = progress.CompleteTimeInUTC, + LibrariesProcessedInTotal = progress.ListsProcessedInTotal, + LibrariesFailedInTotal = progress.ListsFailedInTotal, + EnableAutomaticMode = progress.EnableAutoTrim, + ExpireAfterDays = progress.ExpireAfterDays, + MajorVersionLimit = progress.MajorVersionLimit, + MajorWithMinorVersionsLimit = progress.MajorWithMinorVersionsLimit + }; + + WriteObject(progressClient); } } } diff --git a/src/Commands/Site/GetSiteVersionPolicy.cs b/src/Commands/Site/GetSiteVersionPolicy.cs index a1f676293..a7d91d6e2 100644 --- a/src/Commands/Site/GetSiteVersionPolicy.cs +++ b/src/Commands/Site/GetSiteVersionPolicy.cs @@ -13,16 +13,16 @@ public class GetSiteVersionPolicy : PnPSharePointCmdlet { protected override void ExecuteCmdlet() { - ClientContext.Load(ClientContext.Site, s => s.Url, s => s.VersionPolicyForNewLibrariesTemplate, s => s.VersionPolicyForNewLibrariesTemplate.VersionPolicies); + ClientContext.Load(ClientContext.Site, s => s.Url, s => s.VersionPolicyForNewLibrariesTemplate, s => s.VersionPolicyForNewLibrariesTemplate.MajorVersionLimit); ClientContext.ExecuteQueryRetry(); var site = ClientContext.Site; var vp = new SiteVersionPolicy(); vp.Url = site.Url; - if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.ServerObjectIsNull == true) + if (site.VersionPolicyForNewLibrariesTemplate.MajorVersionLimit == -1) { - vp.Description = "No Site Level Policy Set"; + vp.Description = "No Site Level Policy Set for new document libraries"; } else { @@ -32,18 +32,18 @@ protected override void ExecuteCmdlet() if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode == VersionPolicyTrimMode.AutoExpiration) { - vp.Description = "Site has Automatic Policy Set"; + vp.Description = "Site has Automatic Policy Set for new document libraries"; } else { if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode == VersionPolicyTrimMode.ExpireAfter) { vp.DefaultExpireAfterDays = site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultExpireAfterDays.ToString(); - vp.Description = "Site has Manual settings with specific count and time limits"; + vp.Description = "Site has Manual settings with specific count and time limits for new document libraries"; } else if (site.VersionPolicyForNewLibrariesTemplate.VersionPolicies.DefaultTrimMode == VersionPolicyTrimMode.NoExpiration) { - vp.Description = "Site has Manual settings with specific version count limit and no time limits"; + vp.Description = "Site has Manual settings with specific version count limit and no time limits for new document libraries"; } vp.MajorVersionLimit = site.VersionPolicyForNewLibrariesTemplate.MajorVersionLimit.ToString(); } diff --git a/src/Commands/Site/SetSite.cs b/src/Commands/Site/SetSite.cs index 498ee3dd0..9e6043da0 100644 --- a/src/Commands/Site/SetSite.cs +++ b/src/Commands/Site/SetSite.cs @@ -127,30 +127,6 @@ public class SetSite : PnPSharePointCmdlet [Parameter(Mandatory = false, ParameterSetName = ParameterSet_LOCKSTATE)] public SwitchParameter Wait; - [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] - public bool EnableAutoExpirationVersionTrim; - - [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] - public int ExpireVersionsAfterDays; - - [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] - public int MajorVersions; - - [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] - public int MinorVersions; - - [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] - public SwitchParameter InheritTenantVPForNewDocLibs; - - [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] - public SwitchParameter ApplyForNewLibs; - - [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] - public SwitchParameter ApplyForExistingLibs; - - [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] - public SwitchParameter CancelVPForExistingLibs; - protected override void ExecuteCmdlet() { var context = ClientContext; @@ -259,150 +235,6 @@ protected override void ExecuteCmdlet() } } - if (ParameterSpecified(nameof(InheritTenantVPForNewDocLibs))) - { - if (ParameterSpecified(nameof(EnableAutoExpirationVersionTrim)) || - ParameterSpecified(nameof(ExpireVersionsAfterDays)) || - ParameterSpecified(nameof(MajorVersions)) || - ParameterSpecified(nameof(MinorVersions)) || - ParameterSpecified(nameof(ApplyForNewLibs)) || - ParameterSpecified(nameof(ApplyForExistingLibs)) || - ParameterSpecified(nameof(CancelVPForExistingLibs))) - { - throw new PSArgumentException($"Don't specify version policy related parameters (EnableAutoExpirationVersionTrim, ExpireVersionsAfterDays, MajorVersions, MinorVersions, ApplyForNewLibs, ApplyForExistingLibs, CancelVPForExistingLibs) when InheritTenantVPForNewDocLibs is specified."); - } - - site.EnsureProperty(s => s.VersionPolicyForNewLibrariesTemplate); - site.VersionPolicyForNewLibrariesTemplate.InheritTenantSettings(); - context.ExecuteQueryRetry(); - } - else - { - if (ParameterSpecified(nameof(CancelVPForExistingLibs))) - { - if (ParameterSpecified(nameof(ApplyForNewLibs)) || - ParameterSpecified(nameof(ApplyForExistingLibs)) || - ParameterSpecified(nameof(EnableAutoExpirationVersionTrim)) || - ParameterSpecified(nameof(ExpireVersionsAfterDays)) || - ParameterSpecified(nameof(MajorVersions)) || - ParameterSpecified(nameof(MinorVersions))) - { - throw new PSArgumentException($"Don't specify the version policy related parameters (ApplyForNewLibs, ApplyForExistingLibs, EnableAutoExpirationVersionTrim, ExpireVersionsAfterDays, MajorVersions) when CancelVPForExistingLibs is specified."); - } - - site.CancelSetVersionPolicyForDocLibs(); - context.ExecuteQueryRetry(); - } - else - { - // There are 4 scenarios for parameters ApplyForNewLibs and ApplyForExistingLibs - // Scenario 1: ApplyForNewLibs only - // Scenario 2: ApplyForExistingLibs only - // Scenario 3: Both ApplyForNewLibs and ApplyForExistingLibs - // Scenario 4: Neither ApplyForNewLibs or ApplyForExistingLibs - // For Scenario 3 & 4, they should be the same, set both new doc libs and existing doc libs - // Only scenario 1 does not require MinorVersions when EnableAutoExpirationVersionTrim is false because minor version is disabled on new doc libs - - if (ParameterSpecified(nameof(EnableAutoExpirationVersionTrim))) - { - // Validate parameters when EnableAutoExpirationVersionTrim is specified - if (EnableAutoExpirationVersionTrim) - { - if (ParameterSpecified(nameof(ExpireVersionsAfterDays)) || - ParameterSpecified(nameof(MajorVersions)) || - ParameterSpecified(nameof(MinorVersions))) - { - throw new PSArgumentException($"Don't specify ExpireVersionsAfterDays, MajorVersions and MinorVersions when EnableAutoExpirationVersionTrim is true."); - } - } - else - { - if (ParameterSpecified(nameof(ApplyForNewLibs)) && - !ParameterSpecified(nameof(ApplyForExistingLibs))) - { - // If Scenario 1: ApplyForNewLibs only - // MinorVerions is not needed - if (!ParameterSpecified(nameof(ExpireVersionsAfterDays)) || - !ParameterSpecified(nameof(MajorVersions)) || - ParameterSpecified(nameof(MinorVersions))) - { - throw new PSArgumentException($"You must specify ExpireVersionsAfterDays, MajorVersions and don't specify MinorVersions when EnableAutoExpirationVersionTrim is false for new document libraries only."); - } - } - else - { - if (!ParameterSpecified(nameof(ExpireVersionsAfterDays)) || - !ParameterSpecified(nameof(MajorVersions)) || - !ParameterSpecified(nameof(MinorVersions))) - { - throw new PSArgumentException($"You must specify ExpireVersionsAfterDays, MajorVersions and MinorVersions when EnableAutoExpirationVersionTrim is false for document libraries that including existing ones."); - } - } - } - - // Do setting when EnableAutoExpirationVersionTrim is specified - if (!(!ParameterSpecified(nameof(ApplyForNewLibs)) && - ParameterSpecified(nameof(ApplyForExistingLibs)))) - { - // If NOT "Scenario 2: ApplyForExistingLibs only" - // Do setting for new doc libs - if (EnableAutoExpirationVersionTrim) - { - site.EnsureProperty(s => s.VersionPolicyForNewLibrariesTemplate); - site.VersionPolicyForNewLibrariesTemplate.SetAutoExpiration(); - context.ExecuteQueryRetry(); - } - else - { - site.EnsureProperty(s => s.VersionPolicyForNewLibrariesTemplate); - if (ExpireVersionsAfterDays == 0) - { - site.VersionPolicyForNewLibrariesTemplate.SetNoExpiration(MajorVersions); - context.ExecuteQueryRetry(); - } - else - { - site.VersionPolicyForNewLibrariesTemplate.SetExpireAfter(MajorVersions, ExpireVersionsAfterDays); - context.ExecuteQueryRetry(); - } - } - } - - if (!(ParameterSpecified(nameof(ApplyForNewLibs)) && - !ParameterSpecified(nameof(ApplyForExistingLibs)))) - { - // If NOT "Scenario 1: ApplyForNewLibs only" - // Create setting request for existing doc libs - if (EnableAutoExpirationVersionTrim) - { - site.StartSetVersionPolicyForDocLibs(true, -1, -1, -1); - context.ExecuteQueryRetry(); - } - else - { - site.StartSetVersionPolicyForDocLibs(false, MajorVersions, MinorVersions, ExpireVersionsAfterDays); - context.ExecuteQueryRetry(); - } - } - } - else - { - if (ParameterSpecified(nameof(ApplyForNewLibs)) || - ParameterSpecified(nameof(ApplyForExistingLibs)) ) - { - throw new PSArgumentException($"You must specify EnableAutoExpirationVersionTrim and other version policy related parameters (ExpireVersionsAfterDays, MajorVersions, MinorVersions) when ApplyForNewLibs or ApplyForExistingLibs is specified."); - } - - if (ParameterSpecified(nameof(ExpireVersionsAfterDays)) || - ParameterSpecified(nameof(MajorVersions)) || - ParameterSpecified(nameof(MinorVersions))) - { - throw new PSArgumentException($"You must specify EnableAutoExpirationVersionTrim when ExpireVersionsAfterDays, MajorVersions or MinorVersions is specified."); - } - } - } - } - if (IsTenantProperty()) { var tenantAdminUrl = UrlUtilities.GetTenantAdministrationUrl(context.Url); diff --git a/src/Commands/Site/SetSiteVersionPolicy.cs b/src/Commands/Site/SetSiteVersionPolicy.cs new file mode 100644 index 000000000..c027c7d88 --- /dev/null +++ b/src/Commands/Site/SetSiteVersionPolicy.cs @@ -0,0 +1,193 @@ +using Microsoft.SharePoint.Client; + +using System; +using System.Linq.Expressions; +using System.Management.Automation; +using PnP.PowerShell.Commands.Model.SharePoint; + +namespace PnP.PowerShell.Commands.Site +{ + [Cmdlet(VerbsCommon.Set, "PnPSiteVersionPolicy")] + [OutputType(typeof(void))] + public class SetSiteVersionPolicy : PnPSharePointCmdlet + { + [Parameter(Mandatory = false)] + public bool EnableAutoExpirationVersionTrim; + + [Parameter(Mandatory = false)] + public int ExpireVersionsAfterDays; + + [Parameter(Mandatory = false)] + public int MajorVersions; + + [Parameter(Mandatory = false)] + public int MajorWithMinorVersions; + + [Parameter(Mandatory = false)] + public SwitchParameter InheritFromTenant; + + [Parameter(Mandatory = false)] + public SwitchParameter ApplyToNewDocumentLibraries; + + [Parameter(Mandatory = false)] + public SwitchParameter ApplyToExistingDocumentLibraries; + + [Parameter(Mandatory = false)] + public SwitchParameter CancelForExistingDocumentLibraries; + + protected override void ExecuteCmdlet() + { + var context = ClientContext; + var site = ClientContext.Site; + + if (ParameterSpecified(nameof(InheritFromTenant))) + { + if (ParameterSpecified(nameof(EnableAutoExpirationVersionTrim)) || + ParameterSpecified(nameof(ExpireVersionsAfterDays)) || + ParameterSpecified(nameof(MajorVersions)) || + ParameterSpecified(nameof(MajorWithMinorVersions)) || + ParameterSpecified(nameof(ApplyToNewDocumentLibraries)) || + ParameterSpecified(nameof(ApplyToExistingDocumentLibraries)) || + ParameterSpecified(nameof(CancelForExistingDocumentLibraries))) + { + throw new PSArgumentException($"Don't specify version policy related parameters (EnableAutoExpirationVersionTrim, ExpireVersionsAfterDays, MajorVersions, MajorWithMinorVersions, ApplyToNewDocumentLibraries, ApplyToExistingDocumentLibraries, CancelForExistingDocumentLibraries) when InheritFromTenant is specified."); + } + + site.EnsureProperty(s => s.VersionPolicyForNewLibrariesTemplate); + site.VersionPolicyForNewLibrariesTemplate.InheritTenantSettings(); + context.ExecuteQueryRetry(); + WriteWarning("The setting for new document libraries takes effect immediately. Please run Get-PnPSiteVersionPolicy to display the newly set values."); + } + else + { + if (ParameterSpecified(nameof(CancelForExistingDocumentLibraries))) + { + if (ParameterSpecified(nameof(ApplyToNewDocumentLibraries)) || + ParameterSpecified(nameof(ApplyToExistingDocumentLibraries)) || + ParameterSpecified(nameof(EnableAutoExpirationVersionTrim)) || + ParameterSpecified(nameof(ExpireVersionsAfterDays)) || + ParameterSpecified(nameof(MajorVersions)) || + ParameterSpecified(nameof(MajorWithMinorVersions))) + { + throw new PSArgumentException($"Don't specify the version policy related parameters (ApplyToNewDocumentLibraries, ApplyToExistingDocumentLibraries, EnableAutoExpirationVersionTrim, ExpireVersionsAfterDays, MajorVersions) when CancelForExistingDocumentLibraries is specified."); + } + + site.CancelSetVersionPolicyForDocLibs(); + context.ExecuteQueryRetry(); + } + else + { + // There are 4 scenarios for parameters ApplyToNewDocumentLibraries and ApplyToExistingDocumentLibraries + // Scenario 1: ApplyToNewDocumentLibraries only + // Scenario 2: ApplyToExistingDocumentLibraries only + // Scenario 3: Both ApplyToNewDocumentLibraries and ApplyToExistingDocumentLibraries + // Scenario 4: Neither ApplyToNewDocumentLibraries or ApplyToExistingDocumentLibraries + // For Scenario 3 & 4, they should be the same, set both new document libraries and existing document libraries + // Only scenario 1 does not require MajorWithMinorVersions when EnableAutoExpirationVersionTrim is false because minor version is disabled on new document libraries + + if (ParameterSpecified(nameof(EnableAutoExpirationVersionTrim))) + { + // Validate parameters when EnableAutoExpirationVersionTrim is specified + if (EnableAutoExpirationVersionTrim) + { + if (ParameterSpecified(nameof(ExpireVersionsAfterDays)) || + ParameterSpecified(nameof(MajorVersions)) || + ParameterSpecified(nameof(MajorWithMinorVersions))) + { + throw new PSArgumentException($"Don't specify ExpireVersionsAfterDays, MajorVersions and MajorWithMinorVersions when EnableAutoExpirationVersionTrim is true."); + } + } + else + { + if (ParameterSpecified(nameof(ApplyToNewDocumentLibraries)) && + !ParameterSpecified(nameof(ApplyToExistingDocumentLibraries))) + { + // If Scenario 1: ApplyToNewDocumentLibraries only + // MinorVerions is not needed + if (!ParameterSpecified(nameof(ExpireVersionsAfterDays)) || + !ParameterSpecified(nameof(MajorVersions)) || + ParameterSpecified(nameof(MajorWithMinorVersions))) + { + throw new PSArgumentException($"You must specify ExpireVersionsAfterDays, MajorVersions and don't specify MajorWithMinorVersions when EnableAutoExpirationVersionTrim is false for new document libraries only."); + } + } + else + { + if (!ParameterSpecified(nameof(ExpireVersionsAfterDays)) || + !ParameterSpecified(nameof(MajorVersions)) || + !ParameterSpecified(nameof(MajorWithMinorVersions))) + { + throw new PSArgumentException($"You must specify ExpireVersionsAfterDays, MajorVersions and MajorWithMinorVersions when EnableAutoExpirationVersionTrim is false for document libraries that including existing ones."); + } + } + } + + // Do setting when EnableAutoExpirationVersionTrim is specified + if (!(!ParameterSpecified(nameof(ApplyToNewDocumentLibraries)) && + ParameterSpecified(nameof(ApplyToExistingDocumentLibraries)))) + { + // If NOT "Scenario 2: ApplyToExistingDocumentLibraries only" + // Do setting for new document libraries + if (EnableAutoExpirationVersionTrim) + { + site.EnsureProperty(s => s.VersionPolicyForNewLibrariesTemplate); + site.VersionPolicyForNewLibrariesTemplate.SetAutoExpiration(); + context.ExecuteQueryRetry(); + } + else + { + site.EnsureProperty(s => s.VersionPolicyForNewLibrariesTemplate); + if (ExpireVersionsAfterDays == 0) + { + site.VersionPolicyForNewLibrariesTemplate.SetNoExpiration(MajorVersions); + context.ExecuteQueryRetry(); + } + else + { + site.VersionPolicyForNewLibrariesTemplate.SetExpireAfter(MajorVersions, ExpireVersionsAfterDays); + context.ExecuteQueryRetry(); + } + } + + WriteWarning("The setting for new libraries takes effect immediately. Please run Get-PnPSiteVersionPolicy to display the newly set values."); + } + + if (!(ParameterSpecified(nameof(ApplyToNewDocumentLibraries)) && + !ParameterSpecified(nameof(ApplyToExistingDocumentLibraries)))) + { + // If NOT "Scenario 1: ApplyToNewDocumentLibraries only" + // Create setting request for existing document libraries + if (EnableAutoExpirationVersionTrim) + { + site.StartSetVersionPolicyForDocLibs(true, -1, -1, -1); + context.ExecuteQueryRetry(); + } + else + { + site.StartSetVersionPolicyForDocLibs(false, MajorVersions, MajorWithMinorVersions, ExpireVersionsAfterDays); + context.ExecuteQueryRetry(); + } + + WriteWarning("The setting for existing libraries takes at least 24 hours to take effect. Please run Get-PnPSiteVersionPolicyProgress to check the progress."); + } + } + else + { + if (ParameterSpecified(nameof(ApplyToNewDocumentLibraries)) || + ParameterSpecified(nameof(ApplyToExistingDocumentLibraries)) ) + { + throw new PSArgumentException($"You must specify EnableAutoExpirationVersionTrim and other version policy related parameters (ExpireVersionsAfterDays, MajorVersions, MajorWithMinorVersions) when ApplyToNewDocumentLibraries or ApplyToExistingDocumentLibraries is specified."); + } + + if (ParameterSpecified(nameof(ExpireVersionsAfterDays)) || + ParameterSpecified(nameof(MajorVersions)) || + ParameterSpecified(nameof(MajorWithMinorVersions))) + { + throw new PSArgumentException($"You must specify EnableAutoExpirationVersionTrim when ExpireVersionsAfterDays, MajorVersions or MajorWithMinorVersions is specified."); + } + } + } + } + } + } +} diff --git a/src/Commands/Teams/AddTeamsChannel.cs b/src/Commands/Teams/AddTeamsChannel.cs index 2ef379906..b458da3e8 100644 --- a/src/Commands/Teams/AddTeamsChannel.cs +++ b/src/Commands/Teams/AddTeamsChannel.cs @@ -40,6 +40,7 @@ public class AddTeamsChannel : PnPGraphCmdlet [Parameter(Mandatory = true, ParameterSetName = ParameterSET_PRIVATE)] public string OwnerUPN; + [Obsolete("It is not supported by Microsoft Graph API now. It will be removed in the next major release.")] [Parameter(Mandatory = false, ParameterSetName = ParameterSET_SPECIFIC)] [Parameter(Mandatory = false, ParameterSetName = ParameterSET_STANDARD)] public bool IsFavoriteByDefault; diff --git a/src/Commands/Utilities/PagesUtility.cs b/src/Commands/Utilities/PagesUtility.cs index 5730abfd0..7637299ba 100644 --- a/src/Commands/Utilities/PagesUtility.cs +++ b/src/Commands/Utilities/PagesUtility.cs @@ -10,12 +10,13 @@ namespace PnP.PowerShell.Commands.Utilities internal static class PagesUtility { private static readonly Expression>[] getPagesLibraryExpression = new Expression>[] {p => p.Title, p => p.TemplateType, p => p.Id, - p => p.RootFolder.QueryProperties(p => p.Properties, p => p.ServerRelativeUrl), p => p.Fields }; + p => p.RootFolder.QueryProperties(p => p.Properties, p => p.ServerRelativeUrl), p => p.Fields, p => p.ListItemEntityTypeFullName }; internal static IList GetModernPagesLibrary(IWeb web) { IList pagesLibrary = null; var libraries = web.Lists.QueryProperties(getPagesLibraryExpression) .Where(p => p.TemplateType == ListTemplateType.WebPageLibrary) + .Where(p => p.ListItemEntityTypeFullName == "SP.Data.SitePagesItem") .ToListAsync() .GetAwaiter().GetResult(); @@ -27,7 +28,7 @@ internal static IList GetModernPagesLibrary(IWeb web) { foreach (var list in libraries) { - if (list.IsPropertyAvailable(p => p.Fields) && list.Fields.AsRequested().FirstOrDefault(p => p.InternalName == "CanvasContent1") != null) + if (list.ListItemEntityTypeFullName == "SP.Data.SitePagesItem" && list.IsPropertyAvailable(p => p.Fields) && list.Fields.AsRequested().FirstOrDefault(p => p.InternalName == "CanvasContent1") != null) { pagesLibrary = list; break; diff --git a/src/Commands/Utilities/TeamsUtility.cs b/src/Commands/Utilities/TeamsUtility.cs index 78b53c1f9..a5cd0d376 100644 --- a/src/Commands/Utilities/TeamsUtility.cs +++ b/src/Commands/Utilities/TeamsUtility.cs @@ -676,7 +676,7 @@ public static async Task AddChannelAsync(string accessToken, PnPCon } else { - channel.IsFavoriteByDefault = isFavoriteByDefault; + channel.IsFavoriteByDefault = null; return await GraphHelper.PostAsync(connection, $"v1.0/teams/{groupId}/channels", channel, accessToken); } } diff --git a/src/Commands/Web/GetWebPermission.cs b/src/Commands/Web/GetWebPermission.cs new file mode 100644 index 000000000..55c6dda65 --- /dev/null +++ b/src/Commands/Web/GetWebPermission.cs @@ -0,0 +1,46 @@ +using System.Linq; +using System.Management.Automation; +using Microsoft.SharePoint.Client; + +using PnP.Core.Model.Security; +using PnP.PowerShell.Commands.Base.PipeBinds; + +namespace PnP.PowerShell.Commands.Principals +{ + [Cmdlet(VerbsCommon.Get, "PnPWebPermission")] + [OutputType(typeof(IRoleDefinition))] + public class GetWebPermission : PnPWebCmdlet + { + [Parameter(Mandatory = false, Position = 0, ValueFromPipeline = true, ParameterSetName = "ByName")] + public WebPipeBind Identity; + + [Parameter(Mandatory = true)] + public int PrincipalId; + + protected override void ExecuteCmdlet() + { + + Web web = CurrentWeb; + if (ParameterSpecified(nameof(Identity))) + { + web = Identity.GetWeb(ClientContext); + } + + var roleAssignments = web.RoleAssignments; + web.Context.Load(roleAssignments); + web.Context.ExecuteQueryRetry(); + + RoleAssignment roleAssignment = roleAssignments.FirstOrDefault((RoleAssignment ra) => ra.PrincipalId.Equals(PrincipalId)); + if (roleAssignment != null) + { + web.Context.Load(roleAssignment.RoleDefinitionBindings); + web.Context.ExecuteQueryRetry(); + + if (roleAssignment.RoleDefinitionBindings.Count > 0) + { + WriteObject(roleAssignment.RoleDefinitionBindings, true); + } + } + } + } +} diff --git a/src/Commands/Web/SetWeb.cs b/src/Commands/Web/SetWeb.cs index a8af56398..00344fc46 100644 --- a/src/Commands/Web/SetWeb.cs +++ b/src/Commands/Web/SetWeb.cs @@ -56,6 +56,8 @@ public class SetWeb : PnPWebCmdlet [Parameter(Mandatory = false)] public SwitchParameter HideTitleInHeader; + [Parameter(Mandatory = false)] + public SwitchParameter HorizontalQuickLaunch; protected override void ExecuteCmdlet() { var dirty = false; @@ -160,6 +162,12 @@ protected override void ExecuteCmdlet() dirty = true; break; } + case nameof(HorizontalQuickLaunch): + { + CurrentWeb.HorizontalQuickLaunch = HorizontalQuickLaunch.ToBool(); + dirty = true; + break; + } } } diff --git a/src/Tests/InformationManagement/ResetPnPLabelTests.cs b/src/Tests/InformationManagement/ResetPnPRetentionLabelTests.cs similarity index 68% rename from src/Tests/InformationManagement/ResetPnPLabelTests.cs rename to src/Tests/InformationManagement/ResetPnPRetentionLabelTests.cs index f007a6f37..452dd8f82 100644 --- a/src/Tests/InformationManagement/ResetPnPLabelTests.cs +++ b/src/Tests/InformationManagement/ResetPnPRetentionLabelTests.cs @@ -1,11 +1,12 @@ using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Management.Automation.Runspaces; +using System.Collections.Generic; namespace PnP.PowerShell.Tests.InformationManagement { [TestClass] - public class ResetLabelTests + public class ResetRetentionLabelTest { #region Test Setup/CleanUp [ClassInitialize] @@ -56,7 +57,7 @@ public void Cleanup() #region Scaffolded Cmdlet Tests //TODO: This is a scaffold of the cmdlet - complete the unit test //[TestMethod] - public void ResetPnPLabelTest() + public void ResetPnPRetentionLabel_ListTest() { using (var scope = new PSTestScope(true)) { @@ -68,13 +69,36 @@ public void ResetPnPLabelTest() // From Cmdlet Help: Reset label on existing items in the library var syncToItems = ""; - var results = scope.ExecuteCommand("Reset-PnPLabel", + var results = scope.ExecuteCommand("Reset-PnPRetentionLabel", new CommandParameter("List", list), new CommandParameter("SyncToItems", syncToItems)); Assert.IsNotNull(results); } } + + //TODO: This is a scaffold of the cmdlet - complete the unit test + //[TestMethod] + public void ResetPnPRetentionLabel_BulkItemsTest() + { + using (var scope = new PSTestScope(true)) + { + // Complete writing cmd parameters + + // This is a mandatory parameter + // From Cmdlet Help: The ID, Title or Url of the list. + var list = ""; + // This is a mandatory parameter + // From Cmdlet Help: List of iist item IDs. + var itemIds = new List(); + + var results = scope.ExecuteCommand("Reset-PnPRetentionLabel", + new CommandParameter("List", list), + new CommandParameter("ItemIds", itemIds)); + + Assert.IsNotNull(results); + } + } #endregion } } diff --git a/src/Tests/InformationManagement/SetPnPLabelTests.cs b/src/Tests/InformationManagement/SetPnPRetentionLabelTests.cs similarity index 68% rename from src/Tests/InformationManagement/SetPnPLabelTests.cs rename to src/Tests/InformationManagement/SetPnPRetentionLabelTests.cs index 58cb48a91..758116b54 100644 --- a/src/Tests/InformationManagement/SetPnPLabelTests.cs +++ b/src/Tests/InformationManagement/SetPnPRetentionLabelTests.cs @@ -1,11 +1,12 @@ using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Management.Automation.Runspaces; +using System.Collections.Generic; namespace PnP.PowerShell.Tests.InformationManagement { [TestClass] - public class SetLabelTests + public class SetRetentionLabelTests { #region Test Setup/CleanUp [ClassInitialize] @@ -56,7 +57,7 @@ public void Cleanup() #region Scaffolded Cmdlet Tests //TODO: This is a scaffold of the cmdlet - complete the unit test //[TestMethod] - public void SetPnPLabelTest() + public void SetPnPRetentionLabel_ListTest() { using (var scope = new PSTestScope(true)) { @@ -75,7 +76,7 @@ public void SetPnPLabelTest() // From Cmdlet Help: Block editing of items in the library var blockEdit = ""; - var results = scope.ExecuteCommand("Set-PnPLabel", + var results = scope.ExecuteCommand("Set-PnPRetentionLabel", new CommandParameter("List", list), new CommandParameter("Label", label), new CommandParameter("SyncToItems", syncToItems), @@ -85,6 +86,33 @@ public void SetPnPLabelTest() Assert.IsNotNull(results); } } + + //TODO: This is a scaffold of the cmdlet - complete the unit test + //[TestMethod] + public void SetPnPRetentionLabel_BulkItemsTest() + { + using (var scope = new PSTestScope(true)) + { + // Complete writing cmd parameters + + // This is a mandatory parameter + // From Cmdlet Help: The ID, Title or Url of the list. + var list = ""; + // This is a mandatory parameter + // From Cmdlet Help: List of iist item IDs. + var itemIds = new List(); + // This is a mandatory parameter + // From Cmdlet Help: Name of retention label to be set. + var label = ""; + + var results = scope.ExecuteCommand("Reset-PnPRetentionLabel", + new CommandParameter("List", list), + new CommandParameter("ItemIds", itemIds), + new CommandParameter("Label", label)); + + Assert.IsNotNull(results); + } + } #endregion } } diff --git a/version.txt b/version.txt index e2ae09b83..28113d90b 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.3.31 \ No newline at end of file +2.3.50 \ No newline at end of file