diff --git a/.github/workflows/nightlydockerimages.yml b/.github/workflows/nightlydockerimages.yml new file mode 100644 index 000000000..c03523a2b --- /dev/null +++ b/.github/workflows/nightlydockerimages.yml @@ -0,0 +1,84 @@ +name: Nightly Release to Docker Hub + +on: + workflow_dispatch: + schedule: + - cron: '0 3 * * *' + +permissions: read-all + +jobs: + publish-docker-windows-amd64: + runs-on: windows-2025 + steps: + - uses: actions/checkout@v4 + - name: Build an image + run: | + $VERSION="$(cat ./version.txt)-nightly" + docker build --platform windows/amd64 ./docker -f ./docker/windows-amd64.dockerfile --tag ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-windows-amd64 + - name: Push the image + run: | + $VERSION="$(cat ./version.txt)-nightly" + docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' + docker push "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-windows-amd64" + publish-docker-linux-arm32: + runs-on: ubuntu-22.04 + if: false + steps: + - uses: actions/checkout@v4 + - name: Build an image + run: | + VERSION="$(cat ./version.txt)-nightly" + docker build --build-arg "PNP_MODULE_VERSION=$VERSION" --build-arg "BASE_IMAGE_SUFFIX=ubuntu-22.04-arm32" --build-arg "INSTALL_USER=root" --build-arg "SKIP_PUBLISHER_CHECK=False" ./docker -f ./docker/pnppowershell.dockerFile --tag ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-ubuntu-22.04-arm32; + - name: Push the image + run: | + VERSION="$(cat ./version.txt)-nightly" + docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' + docker push "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-ubuntu-22.04-arm32" + publish-docker-linux-arm64: + runs-on: ubuntu-24.04-arm + steps: + - uses: actions/checkout@v4 + - name: Build an image + run: | + VERSION="$(cat ./version.txt)-nightly" + docker build --platform linux/arm64/v8 ./docker -f ./docker/linux-arm64.dockerfile --tag ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-arm64 + - name: Push the image + run: | + VERSION="$(cat ./version.txt)-nightly" + docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' + docker push "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-arm64" + publish-docker-linux-amd64: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Build an image + run: | + - name: Build an image + run: | + VERSION="$(cat ./version.txt)-nightly" + docker build --platform linux/amd64 ./docker -f ./docker/linux-amd64.dockerfile --tag ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-amd64 + - name: Push the image + run: | + VERSION="$(cat ./version.txt)-nightly" + docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' + docker push "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-amd64" + publish-docker-manifest: + runs-on: ubuntu-latest + needs: [ publish-docker-linux-arm64, publish-docker-linux-amd64, publish-docker-windows-amd64 ] + steps: + - uses: actions/checkout@v4 + - name: Publish manifest + run: | + VERSION="$(cat ./version.txt)-nightly" + docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' + docker manifest create ${{ secrets.DOCKER_ORG }}/powershell:$VERSION \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-amd64 \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-arm64 \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-windows-amd64 + docker manifest push ${{ secrets.DOCKER_ORG }}/powershell:$VERSION + docker manifest create ${{ secrets.DOCKER_ORG }}/powershell:nightly \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-amd64 \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-arm64 \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-windows-amd64 + docker manifest push ${{ secrets.DOCKER_ORG }}/powershell:nightly diff --git a/.github/workflows/nightlyrelease.yml b/.github/workflows/nightlyrelease.yml index 9f746b3ee..6f4ccf634 100644 --- a/.github/workflows/nightlyrelease.yml +++ b/.github/workflows/nightlyrelease.yml @@ -1,5 +1,4 @@ -name: Nightly Release to PowerShell Gallery and Docker Hub - +name: Nightly Release to PowerShell Gallery on: workflow_dispatch: schedule: @@ -13,7 +12,7 @@ jobs: runs-on: windows-latest steps: - - name: Setup .NET Core + - name: Setup .NET uses: actions/setup-dotnet@v4 with: dotnet-version: | @@ -39,80 +38,4 @@ jobs: with: message: 'Nightly publish to PowerShell Gallery' tag: '${{env.BUILDVERSION}}-nightly --force' - push: true - publish-docker-windows-2022: - runs-on: windows-2022 - needs: [ build ] - steps: - - uses: actions/checkout@v4 - - name: Build an image - run: | - $VERSION="$(cat ./version.txt)-nightly" - docker build --build-arg "PNP_MODULE_VERSION=$VERSION" --build-arg "BASE_IMAGE_SUFFIX=lts-nanoserver-ltsc2022" --build-arg "INSTALL_USER=ContainerAdministrator" --build-arg "SKIP_PUBLISHER_CHECK=True" ./docker -f ./docker/pnppowershell.dockerFile --tag "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-lts-nanoserver-ltsc2022"; - - name: Push the image - run: | - $VERSION="$(cat ./version.txt)-nightly" - docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' - docker push "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-lts-nanoserver-ltsc2022" - publish-docker-windows-2019: - runs-on: windows-2019 - needs: [ build ] - steps: - - uses: actions/checkout@v4 - - name: Build an image - run: | - $VERSION="$(cat ./version.txt)-nightly" - docker build --build-arg "PNP_MODULE_VERSION=$VERSION" --build-arg "BASE_IMAGE_SUFFIX=lts-nanoserver-1809" --build-arg "INSTALL_USER=ContainerAdministrator" --build-arg "SKIP_PUBLISHER_CHECK=True" ./docker -f ./docker/pnppowershell.dockerFile --tag "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-lts-nanoserver-1809"; - - name: Push the image - run: | - $VERSION="$(cat ./version.txt)-nightly" - docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' - docker push "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-lts-nanoserver-1809" - publish-docker-arm32: - runs-on: ubuntu-22.04 - if: false - needs: [ build ] - steps: - - uses: actions/checkout@v4 - - name: Build an image - run: | - VERSION="$(cat ./version.txt)-nightly" - docker build --build-arg "PNP_MODULE_VERSION=$VERSION" --build-arg "BASE_IMAGE_SUFFIX=ubuntu-22.04-arm32" --build-arg "INSTALL_USER=root" --build-arg "SKIP_PUBLISHER_CHECK=False" ./docker -f ./docker/pnppowershell.dockerFile --tag ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-ubuntu-22.04-arm32; - - name: Push the image - run: | - VERSION="$(cat ./version.txt)-nightly" - docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' - docker push "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-ubuntu-22.04-arm32" - publish-docker-arm64: - runs-on: ubuntu-24.04-arm - needs: [ build ] - steps: - - uses: actions/checkout@v4 - - name: Build an image - run: | - VERSION="$(cat ./version.txt)-nightly" - docker build --build-arg "PNP_MODULE_VERSION=$VERSION" --build-arg "BASE_IMAGE_SUFFIX=azurelinux-3.0-arm64" --build-arg "INSTALL_USER=root" --build-arg "SKIP_PUBLISHER_CHECK=False" ./docker -f ./docker/pnppowershell.dockerFile --tag ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-azurelinux-3.0-arm64; - - name: Push the image - run: | - VERSION="$(cat ./version.txt)-nightly" - docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' - docker push "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-azurelinux-3.0-arm64" - publish-docker-linux: - runs-on: ubuntu-latest - needs: [ build ] - steps: - - uses: actions/checkout@v4 - - name: Build an image - run: | - VERSION=$(cat ./version.txt)-nightly - docker build --build-arg "PNP_MODULE_VERSION=$VERSION" --build-arg "BASE_IMAGE_SUFFIX=alpine-3.20" --build-arg "INSTALL_USER=root" --build-arg "SKIP_PUBLISHER_CHECK=False" ./docker -f ./docker/pnppowershell.dockerFile --tag ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-alpine-3.20; - - name: Tag the image - run: | - VERSION=$(cat ./version.txt)-nightly - docker image tag ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-alpine-3.20 ${{ secrets.DOCKER_ORG }}/powershell:nightly - - name: Push the image - run: | - VERSION=$(cat ./version.txt)-nightly - docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' - docker push ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-alpine-3.20 - docker push ${{ secrets.DOCKER_ORG }}/powershell:nightly + push: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 66409c01b..000000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Release to Docker Hub - -on: - workflow_dispatch: - schedule: - - cron: '30 3 * * *' - -permissions: read-all - -jobs: - publish-docker-windows-2022: - runs-on: windows-2022 - steps: - - uses: actions/checkout@v4 - - name: Build and Publish All - shell: pwsh - run: | - $securedPassword = ConvertTo-SecureString "${{ secrets.DOCKER_PASSWORD }}" -AsPlainText -Force - ./docker/Publish-UnpublishedImage.ps1 PnP.PowerShell ${{ secrets.DOCKER_USERNAME }} ${{ secrets.DOCKER_ORG }} powershell $securedPassword "ContainerAdministrator" $true "lts-nanoserver-ltsc2022" - publish-docker-windows-2019: - runs-on: windows-2019 - steps: - - uses: actions/checkout@v4 - - name: Build and Publish All - shell: pwsh - run: | - $securedPassword = ConvertTo-SecureString "${{ secrets.DOCKER_PASSWORD }}" -AsPlainText -Force - ./docker/Publish-UnpublishedImage.ps1 PnP.PowerShell ${{ secrets.DOCKER_USERNAME }} ${{ secrets.DOCKER_ORG }} powershell $securedPassword "ContainerAdministrator" $true "lts-nanoserver-1809" - publish-docker-linux: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Build and Publish All - shell: pwsh - run: | - $securedPassword = ConvertTo-SecureString "${{ secrets.DOCKER_PASSWORD }}" -AsPlainText -Force - ./docker/Publish-UnpublishedImage.ps1 PnP.PowerShell ${{ secrets.DOCKER_USERNAME }} ${{ secrets.DOCKER_ORG }} powershell $securedPassword "root" $false "alpine-3.20" diff --git a/.github/workflows/stabledockerimages.yml b/.github/workflows/stabledockerimages.yml new file mode 100644 index 000000000..5631af429 --- /dev/null +++ b/.github/workflows/stabledockerimages.yml @@ -0,0 +1,97 @@ +name: Stable Release to Docker Hub + +on: + workflow_dispatch: + +permissions: read-all + +jobs: + publish-docker-windows-amd64: + runs-on: windows-2025 + steps: + - name: Checkout main branch + uses: actions/checkout@v4 + with: + ref: main + - name: Build an image + run: | + $VERSION="$(cat ./version.txt)" + docker build --build-arg PNP_VERSION=$VERSION --platform windows/amd64 ./docker -f ./docker/windows-amd64.dockerfile --tag ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-stable-windows-amd64 + - name: Push the image + run: | + $VERSION="$(cat ./version.txt)" + docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' + docker push "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-stable-windows-amd64" + publish-docker-linux-arm32: + runs-on: ubuntu-22.04 + if: false + steps: + - uses: actions/checkout@v4 + - name: Build an image + run: | + VERSION="$(cat ./version.txt)" + docker build --build-arg PNP_VERSION=$VERSION ./docker -f ./docker/pnppowershell.dockerFile --tag ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-stable-ubuntu-22.04-arm32; + - name: Push the image + run: | + VERSION="$(cat ./version.txt)" + docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' + docker push "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-stable-ubuntu-22.04-arm32" + publish-docker-linux-arm64: + runs-on: ubuntu-24.04-arm + steps: + - name: Checkout main branch + uses: actions/checkout@v4 + with: + ref: main + - name: Build an image + run: | + VERSION="$(cat ./version.txt)" + docker build --build-arg PNP_VERSION=$VERSION --platform linux/arm64/v8 ./docker -f ./docker/linux-arm64.dockerfile --tag ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-stable-linux-arm64 + - name: Push the image + run: | + VERSION="$(cat ./version.txt)" + docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' + docker push "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-stable-linux-arm64" + publish-docker-linux-amd64: + runs-on: ubuntu-latest + steps: + - name: Checkout main branch + uses: actions/checkout@v4 + with: + ref: main + - name: Build an image + run: | + VERSION="$(cat ./version.txt)" + docker build --build-arg PNP_VERSION=$VERSION --platform linux/amd64 ./docker -f ./docker/linux-amd64.dockerfile --tag ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-stable-linux-amd64 + - name: Push the image + run: | + VERSION="$(cat ./version.txt)" + docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' + docker push "${{ secrets.DOCKER_ORG }}/powershell:$VERSION-stable-linux-amd64" + publish-docker-manifest: + runs-on: ubuntu-latest + needs: [ publish-docker-linux-arm64, publish-docker-linux-amd64, publish-docker-windows-amd64 ] + steps: + - name: Checkout main branch + uses: actions/checkout@v4 + with: + ref: main + - name: Publish manifest + run: | + VERSION="$(cat ./version.txt)-stable" + docker login -u ${{ secrets.DOCKER_USERNAME }} -p '${{ secrets.DOCKER_PASSWORD }}' + docker manifest create ${{ secrets.DOCKER_ORG }}/powershell:$VERSION \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-amd64 \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-arm64 \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-windows-amd64 + docker manifest push ${{ secrets.DOCKER_ORG }}/powershell:$VERSION + docker manifest create ${{ secrets.DOCKER_ORG }}/powershell:stable \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-amd64 \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-arm64 \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-windows-amd64 + docker manifest push ${{ secrets.DOCKER_ORG }}/powershell:stable + docker manifest create ${{ secrets.DOCKER_ORG }}/powershell:latest \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-amd64 \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-linux-arm64 \ + --amend ${{ secrets.DOCKER_ORG }}/powershell:$VERSION-windows-amd64 + docker manifest push ${{ secrets.DOCKER_ORG }}/powershell:latest diff --git a/CHANGELOG.md b/CHANGELOG.md index fe3fb2c51..210d41633 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fix `Add/Publish/Unpublish/Remove-PnPApp` cmdlets to properly handle the issue in no-script sites. - Fix `Get-PnPHubSiteChild` cmdlet to handle vanity domains. [#4965](https://github.com/pnp/powershell/pull/4965) - Fix `Connect-PnPOnline` not working correctly with `-DeviceLogin` in Azure Cloud Shell. +- Fix `Connect-PnPOnline` not working correctly with `-DeviceLogin` in desktop-less environments, such as on a Raspberry Pi [#5058](https://github.com/pnp/powershell/pull/5058) +- Fix `Get-PnPTenantRestrictedSearchMode` throwing an error in some cases [#5042](https://github.com/pnp/powershell/pull/5042) ### Removed diff --git a/dependencies.json b/dependencies.json index a9b4587be..a890be6e1 100644 --- a/dependencies.json +++ b/dependencies.json @@ -1,6 +1,6 @@ { - "Updated": "20250728-031105", - "PnPPowerShell": "76a2d96fa593adbd04900675f127627f1f1a2a6b", - "PnPFramework": "8b8fcad5d43eda75fcb229607562e4a714a73329", - "PnPCore": "bb7e78e610ad0f29e8280687304551b096177b63" + "Updated": "20250820-025702", + "PnPPowerShell": "9e011d3e12ef1388536686db8fc00f771343a2ce", + "PnPFramework": "a1eea6a109d6532b955d103233c5a89399d1e7a9", + "PnPCore": "58c2307eed1946a2b8999217ea641fcd5e0f1ce2" } diff --git a/docker/README.md b/docker/README.md deleted file mode 100644 index ce675fc8f..000000000 --- a/docker/README.md +++ /dev/null @@ -1,64 +0,0 @@ -# Publish manually in Windows - -1. Set `DOCKER_USERNAME`, `DOCKER_ORG` and `DOCKER_PASSWORD` variables - -2. Run - -```powershell -$securedPassword = ConvertTo-SecureString $DOCKER_PASSWORD -AsPlainText -Force -./docker/Publish-UnpublishedImage.ps1 PnP.PowerShell $DOCKER_USERNAME $DOCKER_ORG powershell $securedPassword "ContainerAdministrator" $true "nanoserver-1809" -``` - -# Publish manually in Linux - -1. Set `DOCKER_USERNAME`, `DOCKER_ORG` and `DOCKER_PASSWORD` variables - -2. Run - -```powershell -$securedPassword = ConvertTo-SecureString $DOCKER_PASSWORD -AsPlainText -Force -./docker/Publish-UnpublishedImage.ps1 PnP.PowerShell $DOCKER_USERNAME $DOCKER_ORG powershell $securedPassword $false "root" "alpine-3.16.5" -``` - -# Publish with prereleases manually in Windows - -1. Set `DOCKER_USERNAME`, `DOCKER_ORG` and `DOCKER_PASSWORD` variables - -2. Run - -```PowerShell -$VERSION="$(cat ./version.txt)-nightly" -docker build --build-arg "PNP_MODULE_VERSION=$VERSION" --build-arg "BASE_IMAGE_SUFFIX=nanoserver-ltsc2022" --build-arg "INSTALL_USER=ContainerAdministrator" --build-arg "SKIP_PUBLISHER_CHECK=True" ./docker -f ./docker/pnppowershell.dockerFile --tag "$DOCKER_ORG/powershell:$VERSION-nanoserver-ltsc2022"; -$VERSION="$(cat ./version.txt)-nightly" -docker login -u $DOCKER_USERNAME -p "$DOCKER_PASSWORD" -docker push "$DOCKER_ORG/powershell:$VERSION-nanoserver-ltsc2022" -``` - -or - -```PowerShell -$VERSION="$(cat ./version.txt)-nightly" -docker build --build-arg "PNP_MODULE_VERSION=$VERSION" --build-arg "BASE_IMAGE_SUFFIX=nanoserver-1809" --build-arg "INSTALL_USER=ContainerAdministrator" --build-arg "SKIP_PUBLISHER_CHECK=True" ./docker -f ./docker/pnppowershell.dockerFile --tag "$DOCKER_ORG/powershell:$VERSION-nanoserver-1809"; -$VERSION="$(cat ./version.txt)-nightly" -docker login -u $DOCKER_USERNAME -p "$DOCKER_PASSWORD" -docker push "$DOCKER_ORG/powershell:$VERSION-nanoserver-1809" -``` - -# Publish with prereleases manually in Linux - -1. Set `DOCKER_USERNAME`, `DOCKER_ORG` and `DOCKER_PASSWORD` variables - -2. Run - -```bash -VERSION=$(cat ./version.txt)-nightly -docker build --build-arg "PNP_MODULE_VERSION=$VERSION" --build-arg "BASE_IMAGE_SUFFIX=alpine-3.16.5" --build-arg "INSTALL_USER=root" --build-arg "SKIP_PUBLISHER_CHECK=False" ./docker -f ./docker/pnppowershell.dockerFile --tag $DOCKER_ORG/powershell:$VERSION-alpine-3.16.5; -docker image tag $DOCKER_ORG/powershell:$VERSION-alpine-3.16.5 $DOCKER_ORG/powershell:nightly -docker login -u $DOCKER_USERNAME -p "$DOCKER_PASSWORD" -docker push $DOCKER_ORG/powershell:$VERSION-alpine-3.16.5 -docker push $DOCKER_ORG/powershell:nightly -``` - -# Publish automatically with Github Actions - -Set `DOCKER_USERNAME`, `DOCKER_ORG` and `DOCKER_PASSWORD` variables in Github Actions Secrets diff --git a/docker/linux-amd64.dockerfile b/docker/linux-amd64.dockerfile new file mode 100644 index 000000000..864e353ec --- /dev/null +++ b/docker/linux-amd64.dockerfile @@ -0,0 +1,20 @@ +# --platform linux/amd64 +FROM debian:bullseye-slim + +# Install dependencies +RUN apt-get update && apt-get install -y curl libicu67 libssl1.1 libunwind8 + +# Download and install PowerShell +RUN curl -L -o powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-linux-x64.tar.gz \ + && mkdir -p /opt/microsoft/powershell/7 \ + && tar -xvf powershell.tar.gz -C /opt/microsoft/powershell/7 \ + && rm powershell.tar.gz \ + && chmod +x /opt/microsoft/powershell/7/pwsh \ + && ln -s /opt/microsoft/powershell/7/pwsh /usr/bin/pwsh + +# Install PnP.PowerShell module +SHELL ["pwsh", "-command"] +ARG PNP_VERSION +RUN Install-Module -Name PnP.PowerShell -RequiredVersion $env:PNP_VERSION -Force -Scope AllUsers -AllowPrerelease -SkipPublisherCheck + +ENTRYPOINT ["pwsh"] diff --git a/docker/linux-arm64.dockerfile b/docker/linux-arm64.dockerfile new file mode 100644 index 000000000..e72d99c55 --- /dev/null +++ b/docker/linux-arm64.dockerfile @@ -0,0 +1,20 @@ +# --platform linux/arm64/v8 +FROM debian:bullseye-slim + +# Install dependencies +RUN apt-get update && apt-get install -y curl libicu67 libssl1.1 libunwind8 + +# Download and install PowerShell +RUN curl -L -o powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/powershell-7.5.2-linux-arm64.tar.gz \ + && mkdir -p /opt/microsoft/powershell/7 \ + && tar -xzf powershell.tar.gz -C /opt/microsoft/powershell/7 \ + && rm powershell.tar.gz \ + && chmod +x /opt/microsoft/powershell/7/pwsh \ + && ln -s /opt/microsoft/powershell/7/pwsh /usr/bin/pwsh + +# Install PnP.PowerShell module +SHELL ["pwsh", "-command"] +ARG PNP_VERSION +RUN Install-Module -Name PnP.PowerShell -RequiredVersion $env:PNP_VERSION -Force -Scope AllUsers -AllowPrerelease -SkipPublisherCheck + +ENTRYPOINT ["pwsh"] diff --git a/docker/pnppowershell.dockerFile b/docker/pnppowershell.dockerFile deleted file mode 100644 index 0b513d87d..000000000 --- a/docker/pnppowershell.dockerFile +++ /dev/null @@ -1,15 +0,0 @@ -ARG BASE_IMAGE_SUFFIX=alpine-3.20 -ARG BASE_IMAGE=mcr.microsoft.com/powershell:$BASE_IMAGE_SUFFIX -FROM $BASE_IMAGE - -SHELL ["pwsh", "-command"] -ARG INSTALL_USER=ContainerAdministrator -USER $INSTALL_USER -ARG PNP_MODULE_VERSION -ARG SKIP_PUBLISHER_CHECK=TRUE -RUN if ( $env:SKIP_PUBLISHER_CHECK -eq $true ) { \ - Write-Host "SKIP_PUBLISHER_CHECK"; \ - Install-Module -Name PnP.PowerShell -RequiredVersion $env:PNP_MODULE_VERSION -Force -AllowPrerelease -Scope AllUsers -SkipPublisherCheck; \ - } else { \ - Install-Module -Name PnP.PowerShell -RequiredVersion $env:PNP_MODULE_VERSION -Force -AllowPrerelease -Scope AllUsers; \ - } diff --git a/docker/windows-amd64.dockerfile b/docker/windows-amd64.dockerfile new file mode 100644 index 000000000..b958bcdd5 --- /dev/null +++ b/docker/windows-amd64.dockerfile @@ -0,0 +1,26 @@ +FROM mcr.microsoft.com/windows/nanoserver:ltsc2025 + +RUN mkdir C:\\pwsh +WORKDIR C:\\pwsh + +# Download and install PowerShell 7 +RUN curl.exe -L -o pwsh.zip https://github.com/PowerShell/PowerShell/releases/download/v7.5.2/PowerShell-7.5.2-win-x64.zip +RUN tar -xf pwsh.zip -C C:\pwsh +RUN del pwsh.zip + +# Add PowerShell to PATH +ENV PATH="C:\\pwsh;${PATH}" + +# Install PnP.PowerShell module +SHELL ["pwsh", "-command"] +ARG PNP_VERSION +USER ContainerAdministrator +RUN Install-Module -Name PnP.PowerShell -RequiredVersion $env:PNP_VERSION -Force -Scope AllUsers -AllowPrerelease -SkipPublisherCheck + +# Start PowerShell +CMD ["pwsh"] + + + + + diff --git a/documentation/Connect-PnPOnline.md b/documentation/Connect-PnPOnline.md index 64cde55ac..5fd971abb 100644 --- a/documentation/Connect-PnPOnline.md +++ b/documentation/Connect-PnPOnline.md @@ -56,7 +56,7 @@ Connect-PnPOnline [-ReturnConnection] [-Url] [-CreateDrive] [-DriveName ### DeviceLogin ```powershell -Connect-PnPOnline [-ReturnConnection] [-Url] [-PersistLogin] [-CreateDrive] [-DriveName ] [-DeviceLogin] -Tenant +Connect-PnPOnline [-ReturnConnection] [-Url] [-PersistLogin] [-CreateDrive] [-DriveName ] -DeviceLogin -Tenant [-ClientId ] [-AzureEnvironment ] [-ValidateConnection] [-MicrosoftGraphEndPoint ] [-AzureADLoginEndPoint ] [-Connection ] diff --git a/documentation/Remove-PnPTermLabel.md b/documentation/Remove-PnPTermLabel.md index 41bba1c91..4a94d4df4 100644 --- a/documentation/Remove-PnPTermLabel.md +++ b/documentation/Remove-PnPTermLabel.md @@ -22,7 +22,7 @@ Remove-PnPTermLabel -Lcid [-TermStore ] [-Connection ] - [-Confirm] + [-Force] ``` @@ -36,7 +36,7 @@ Remove-PnPTermLabel -TermGroup [-TermStore ] [-Connection ] - [-Confirm] + [-Force] ``` @@ -60,13 +60,12 @@ Removes the Swedish label from the specified term. ## PARAMETERS -### -Confirm -Prompts you for confirmation before running the cmdlet. +### -Force +Specifying the Force parameter will skip the confirmation question. ```yaml Type: SwitchParameter Parameter Sets: (All) -Aliases: cf Required: False Position: Named diff --git a/documentation/Set-PnPManagedAppId.md b/documentation/Set-PnPManagedAppId.md index 3248cd38a..221fdbf8a 100644 --- a/documentation/Set-PnPManagedAppId.md +++ b/documentation/Set-PnPManagedAppId.md @@ -28,7 +28,7 @@ If you add a Credential with a name of "https://yourtenant.sharepoint.com" it wi ### EXAMPLE 1 ```powershell -Set-PnPManagedAppId -Name "https://tenant.sharepoint.com" -AppId d96c0a07-770d-46f4-bb38-a54084254bf7 +Set-PnPManagedAppId -Url "https://tenant.sharepoint.com" -AppId d96c0a07-770d-46f4-bb38-a54084254bf7 ``` This will add an entry for the specified App Id to be use when connecting with Connect-PnPOnline to the URL specified. diff --git a/documentation/Set-PnPTenantSite.md b/documentation/Set-PnPTenantSite.md index d819a825a..19d7c52cd 100644 --- a/documentation/Set-PnPTenantSite.md +++ b/documentation/Set-PnPTenantSite.md @@ -43,6 +43,7 @@ Set-PnPTenantSite [-Identity] [-Title ] [-LocaleId ] [- [-RequestFilesLinkExpirationInDays ] [-RequestFilesLinkEnabled ] [-OverrideSharingCapability ] [-RestrictedAccessControl ] [-ClearRestrictedAccessControl ] [-RestrictedAccessControlGroups ] [-AddRestrictedAccessControlGroups ] [-RemoveRestrictedAccessControlGroups ][-InheritVersionPolicyFromTenant ] + [-AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled ] [-Wait] [-Connection ] ``` @@ -986,6 +987,19 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled +Enables or disables adding and updating web property bag values when the DenyAddAndCustomizePages is enabled. + +```yaml +Type: Boolean +Parameter Sets: Set Properties + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` ### -Wait Wait for the operation to complete diff --git a/pages/articles/docker.md b/pages/articles/docker.md index d0c56abc2..a65806537 100644 --- a/pages/articles/docker.md +++ b/pages/articles/docker.md @@ -2,13 +2,19 @@ Using Docker allows you to use any software inside virtual environments, without having to install this software directly on your laptop or server. These virtual environments are containers, which might be imagined as lightweight virtual machines. Having their own virtual disks, memory and processes, containers are rationally isolated from your laptop operating system, providing you a great way of experimenting and using any version of PnP.PowerShell without installing it. -![Using software in virtual environments, called containers](./../images/docker/dockercontainers.png) +## Why should I run PnP PowerShell in Docker -The good news is that you will not even need to install PnP.PowerShell in containers by your own: PnP team is already publishing Docker container images for each supported and nightly release, [here](https://hub.docker.com/r/m365pnp/powershell). You will however need to install docker runtime. +The main advantage of running PnP PowerShell in Docker containers is that you will always have the exact same environment in which your scripts run, guaranteed. This in contrary to when you run it directly within your operating system. Updates to the operation system, file structure, PowerShell version, the .NET Framework, security and system patches, they all can have an impact on the successfull execution of your script. With Docker you are guaranteed that every time you run your script, it runs in exactly the same environment as where you built and tested it, so you know it will always work. + +Another advantage is that it becomes easier to work with different versions of PnP PowerShell on one environment. Say you build and test a script with PnP PowerShell 2.12.0 and then schedule it to run unattended every night. Few month later you start on another project which you're going to base on PnP PowerShell 3.1.0 because you want to leverage some new features in that release. You ideally don't want to just upgrade to 3.1.0 and assume your 2.12.0 script will still work in it. Even more so because a new major version, going from 2.x to 3.x in this case, means there are likely breaking changes. In particular with this sample, the underlying .NET Framework has changed and the PowerShell 7 version it requires has changed. So you either have to thoroughly test and potentially rewrite all your older scripts, or, use Docker so you can keep running your 2.12.0 script in 2.12.0 with the appropriate .NET Framework version and PowerShell version you built it against, while writing, testing and eventually running your new script in 3.1.0 with the new .NET Framework, the new PowerShell 7 version, both on the same machine, with no conflicts and no risks. + +## How can I use it + +The good news is that you will not even need to install PnP.PowerShell in containers by your own: the PnP team is already publishing Docker container images for each stable and nightly release, [here](https://hub.docker.com/r/m365pnp/powershell). You will however need to install docker runtime. If you use Windows, we would recommend you using Linux containers with help of WSL. Alternatively, even though it is not the most common way, you might want to run PnP.PowerShell in Windows containers. Mind you that some use cases might be limited when using Windows containers. If you use Mac OS or Linux, the easiest way is to use Linux containers. -## Play with PnP.PowerShell online +### Play with PnP.PowerShell online You can try using m365pnp/powershell Docker containers online, without installing anything on your desktop/laptop. @@ -28,7 +34,16 @@ You can try using m365pnp/powershell Docker containers online, without installin After that you can start running commands like `Connect-PnPOnline`. -## Installing Docker locally +### Installing Docker locally + +- Windows: + + ```powershell + iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) + choco install -y docker-engine + ``` + + Or just download and install Docker manually from [here](https://www.docker.com/get-started/). - Mac OS: @@ -79,13 +94,6 @@ After that you can start running commands like `Connect-PnPOnline`. newgrp docker ``` -- Windows: - - ```powershell - iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) - choco install -y docker-engine - ``` - ## Using PnP.PowerShell Sometimes you want to run inline PnP.PowerShell commands. @@ -156,42 +164,36 @@ Please see [Docker documentation](https://docs.docker.com/engine/reference/run/) ### Latest -* latest: The latest stable image +* latest: The latest stable image (i.e. 3.1.0) - * alpine-3.17 - * `docker pull m365pnp/powershell` or `docker pull m365pnp/powershell:latest` + * `docker pull m365pnp/powershell:stable` or `docker pull m365pnp/powershell:latest` or even more simple just `docker pull m365pnp/powershell` ### Nightly -* nightly: The latest nightly image +* nightly: The latest nightly image (i.e. 3.1.127-nightly) - * alpine-3.20 * `docker pull m365pnp/powershell:nightly` ## Tag explanation Tags names mean the following: -`(-nightly)-` +`[-nightly/-stable]-` -Currently supported platforms: +Currently supported architectures: -* nanoserver-ltsc2022 (Windows 2022) -* nanoserver-1809 (Windows 2019) -* alpine-3.20 (Linux 64 bits) -* ubuntu-focal-arm32 (ARM 32 bits, i.e. Raspberry Pi < 4) -* azurelinux-3.0-arm64 (ARM 64 bits, i.e. Raspberry Pi >= 4) +* [windows-amd64](/pnp/powershell/blob/dev/docker/windows-amd64.dockerfile): Windows NanoServer LTSC 2025 64 bits +* [linux-arm64](/pnp/powershell/blob/dev/docker/linux-arm64.dockerfile): Linux Debian Bullseye Slim 64 bits for ARM devices (i.e. Raspberry Pi 4 or later) +* [linux-amd64](/pnp/powershell/blob/dev/docker/linux-amd64.dockerfile): Linux Debian Bullseye Slim 64 bits Tag name examples: -* 2.99.114-nightly-azurelinux-3.0-arm64 -* 2.99.112-nightly-alpine-3.20 -* 2.12.0-lts-alpine-3.17 -* 2.12.0-nanoserver-ltsc2022 -* 1.8.0-nanoserver-ltsc2022 -* 1.9.0-nanoserver-ltsc2022 -* 1.10.0-nanoserver-1809 -* 1.10.0-alpine-3.16.5 -* 1.10.26-nightly-nanoserver-ltsc2022 - -To find the version numbers please visit https://www.powershellgallery.com/packages/PnP.PowerShell or https://hub.docker.com/r/m365pnp/powershell/tags +* nightly - auto picks the correct architecture with the latest available nightly build +* stable - auto picks the correct architecture with the latest available stable build (same as latest) +* latest - auto picks the correct architecture with the latest available stable build (same as stable) +* 3.1.127-nightly - auto picks the correct architecture with the 3.1.127 nightly build +* 3.1.127-nightly-windows-amd64 - forces the Windows 64 bit architecture with the 3.1.127 nightly build +* 3.1.0-stable - auto picks the correct architecture with the 3.1.0 stable build +* 3.1.0-stable-linux-amd64 - forces the Linux 64 bit architecture with the 3.1.0 stable build + +To find an overview of all the available tags please visit ttps://hub.docker.com/r/m365pnp/powershell/tags diff --git a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json index cf0a1f78e..d583691c7 100644 --- a/resources/predictor/PnP.PowerShell.Suggestions.nightly.json +++ b/resources/predictor/PnP.PowerShell.Suggestions.nightly.json @@ -1,10928 +1,10928 @@ [ { "Id": 1, - "CommandName": "Add-PnPAlert", "Rank": 1, + "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -List \"Demo List\"" }, { "Id": 2, - "CommandName": "Add-PnPAlert", "Rank": 2, + "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -Title \"Daily summary\" -List \"Demo List\" -Frequency Daily -ChangeType All -Time (Get-Date -Hour 11 -Minute 00 -Second 00)" }, { "Id": 3, - "CommandName": "Add-PnPAlert", "Rank": 3, + "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { "Id": 4, - "CommandName": "Add-PnPAlert", "Rank": 4, + "CommandName": "Add-PnPAlert", "Command": "Add-PnPAlert -Title \"Alert for user\" -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\" -Frequency Daily -Time ((Get-Date).AddDays(1))" }, { "Id": 5, - "CommandName": "Add-PnPApp", "Rank": 1, + "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg" }, { "Id": 6, - "CommandName": "Add-PnPApp", "Rank": 2, + "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish" }, { "Id": 7, - "CommandName": "Add-PnPApp", "Rank": 3, + "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Scope Site -Publish" }, { "Id": 8, - "CommandName": "Add-PnPApp", "Rank": 4, + "CommandName": "Add-PnPApp", "Command": "Add-PnPApp -Path ./myapp.sppkg -Publish -SkipFeatureDeployment" }, { "Id": 9, - "CommandName": "Add-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Add-PnPApplicationCustomizer", "Command": "Add-PnPApplicationCustomizer -Title \"CollabFooter\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}" }, { "Id": 10, - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\"" }, { "Id": 11, - "CommandName": "Add-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Add-PnPAvailableSiteClassification", "Command": "Add-PnPAvailableSiteClassification -Classifications \"Top Secret\",\"HBI\"" }, { "Id": 12, - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { "Id": 13, - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 2, + "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { "Id": 14, - "CommandName": "Add-PnPAzureADGroupMember", "Rank": 3, + "CommandName": "Add-PnPAzureADGroupMember", "Command": "Add-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { "Id": 15, - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { "Id": 16, - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 2, + "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { "Id": 17, - "CommandName": "Add-PnPAzureADGroupOwner", "Rank": 3, + "CommandName": "Add-PnPAzureADGroupOwner", "Command": "Add-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"125eaa87-7b54-41fd-b30f-2adfa68c4afe\"" }, { "Id": 18, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 1, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"Directory.Read.All\" -BuiltInType MicrosoftGraph" }, { "Id": 19, - "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Rank": 2, + "CommandName": "Add-PnPAzureADServicePrincipalAppRole", "Command": "Add-PnPAzureADServicePrincipalAppRole -Principal \"62614f96-cb78-4534-bf12-1f6693e8237c\" -AppRole \"MyApplication.Read\" -Resource \"b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e\"" }, { "Id": 20, - "CommandName": "Add-PnPBrandCenterFont", "Rank": 1, + "CommandName": "Add-PnPBrandCenterFont", "Command": "Add-PnPBrandCenterFont -Path c:\\temp\\MyAwesomeFont.ttf" }, { "Id": 21, - "CommandName": "Add-PnPBrandCenterFont", "Rank": 2, + "CommandName": "Add-PnPBrandCenterFont", "Command": "Add-PnPBrandCenterFont -Path c:\\temp\\MyAwesomeFont.ttf -Visible:$false" }, { "Id": 22, - "CommandName": "Add-PnPBrandCenterFontPackage", "Rank": 1, + "CommandName": "Add-PnPBrandCenterFontPackage", "Command": "Add-PnPBrandCenterFontPackage -Name \"My Font Package\" -Store Tenant -DisplayFont \"My font\" -ContentFont \"My other font\" -TitleFont \"My font\" -TitleFontStyle \"Normal\" -HeadlineFont \"My font\" -HeadlineFontStyle \"Normal\" -BodyFont \"My other font\" -BodyFontStyle \"Regular\" -InteractiveFont \"My other font\" -InteractiveFontStyle \"Regular\"" }, { "Id": 23, - "CommandName": "Add-PnPContentType", "Rank": 1, + "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType $ct" }, { "Id": 24, - "CommandName": "Add-PnPContentType", "Rank": 2, + "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ParentContentType (Get-PnPContentType -Identity 0x0101) -DocumentTemplate \"/_cts/Project Document/template.docx\"" }, { "Id": 25, - "CommandName": "Add-PnPContentType", "Rank": 3, + "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\"" }, { "Id": 26, - "CommandName": "Add-PnPContentType", "Rank": 4, + "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Item\"" }, { "Id": 27, - "CommandName": "Add-PnPContentType", "Rank": 5, + "CommandName": "Add-PnPContentType", "Command": "Add-PnPContentType -Name \"Project Document\" -Description \"Use for Contoso projects\" -Group \"Contoso Content Types\" -ContentTypeId 0x010100CD5BDB7DDE03324794E155CE37E4B6BB" }, { "Id": 28, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 1, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x0101\", \"0x01\"" }, { "Id": 29, - "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Rank": 2, + "CommandName": "Add-PnPContentTypesFromContentTypeHub", "Command": "Add-PnPContentTypesFromContentTypeHub -ContentTypes \"0x010057C83E557396744783531D80144BD08D\" -Site https://tenant.sharepoint.com/sites/HR" }, { "Id": 30, - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 1, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { "Id": 31, - "CommandName": "Add-PnPContentTypeToDocumentSet", "Rank": 2, + "CommandName": "Add-PnPContentTypeToDocumentSet", "Command": "Add-PnPContentTypeToDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { "Id": 32, - "CommandName": "Add-PnPContentTypeToList", "Rank": 1, + "CommandName": "Add-PnPContentTypeToList", "Command": "Add-PnPContentTypeToList -List \"Documents\" -ContentType \"Project Document\" -DefaultContentType" }, { "Id": 33, - "CommandName": "Add-PnPCustomAction", "Rank": 1, + "CommandName": "Add-PnPCustomAction", "Command": "Add-PnPCustomAction -Title \"CollabFooter\" -Name \"CollabFooter\" -Location \"ClientSideExtension.ApplicationCustomizer\" -ClientSideComponentId c0ab3b94-8609-40cf-861e-2a1759170b43 -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { "Id": 34, - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Fields 'Title','Choice'" }, { "Id": 35, - "CommandName": "Add-PnPDataRowsToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPDataRowsToSiteTemplate", "Command": "Add-PnPDataRowsToSiteTemplate -Path template.pnp -List 'PnPTestList' -Query '' -Fields 'Title','Choice' -IncludeSecurity" }, { "Id": 36, - "CommandName": "Add-PnPDocumentSet", "Rank": 1, + "CommandName": "Add-PnPDocumentSet", "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\"" }, { "Id": 37, - "CommandName": "Add-PnPDocumentSet", "Rank": 2, + "CommandName": "Add-PnPDocumentSet", "Command": "Add-PnPDocumentSet -List \"Documents\" -ContentType \"Test Document Set\" -Name \"Test\" -Folder \"Documents/Projects/Europe\"" }, { "Id": 38, - "CommandName": "Add-PnPEventReceiver", "Rank": 1, + "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -List \"ProjectList\" -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ItemAdded -Synchronization Asynchronous" }, { "Id": 39, - "CommandName": "Add-PnPEventReceiver", "Rank": 2, + "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType WebAdding -Synchronization Synchronous" }, { "Id": 40, - "CommandName": "Add-PnPEventReceiver", "Rank": 3, + "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListAdding -Synchronization Synchronous -Scope Site" }, { "Id": 41, - "CommandName": "Add-PnPEventReceiver", "Rank": 4, + "CommandName": "Add-PnPEventReceiver", "Command": "Add-PnPEventReceiver -Name \"TestEventReceiver\" -Url https://yourserver.azurewebsites.net/eventreceiver.svc -EventReceiverType ListDeleted -Synchronization Asynchronous -Scope Web" }, { "Id": 42, - "CommandName": "Add-PnPField", "Rank": 1, + "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -InternalName \"C1\" -DisplayName \"C1\" -Formula \"=[Title]\"" }, { "Id": 43, - "CommandName": "Add-PnPField", "Rank": 2, + "CommandName": "Add-PnPField", "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Location\" -InternalName \"SPSLocation\" -Type Choice -Group \"Demo Group\" -AddToDefaultView -Choices \"Stockholm\",\"Helsinki\",\"Oslo\"" }, { "Id": 44, - "CommandName": "Add-PnPField", "Rank": 3, + "CommandName": "Add-PnPField", "Command": "Add-PnPField -List \"Demo list\" -DisplayName \"Speakers\" -InternalName \"SPSSpeakers\" -Type MultiChoice -Group \"Demo Group\" -AddToDefaultView -Choices \"Obiwan Kenobi\",\"Darth Vader\", \"Anakin Skywalker\"" }, { "Id": 45, - "CommandName": "Add-PnPField", "Rank": 4, + "CommandName": "Add-PnPField", "Command": "Add-PnPField -List \"Demo List\" -Field \"MyTestCol\"" }, { "Id": 46, - "CommandName": "Add-PnPField", "Rank": 5, + "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Choice -Choices \"PnP\",\"Parker\",\"Sharing Is Caring\" -DisplayName \"My Test Column\" -InternalName \"MyTestCol\"" }, { "Id": 47, - "CommandName": "Add-PnPField", "Rank": 6, + "CommandName": "Add-PnPField", "Command": "Add-PnPField -Type Calculated -ResultType Number -DisplayName \"My Calculated Column\" -InternalName \"MyCalcCol\" -Formula \"=Today()\"" }, { "Id": 48, - "CommandName": "Add-PnPFieldToContentType", "Rank": 1, + "CommandName": "Add-PnPFieldToContentType", "Command": "Add-PnPFieldToContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { "Id": 49, - "CommandName": "Add-PnPFile", "Rank": 1, + "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path c:\\temp\\company.master -Folder \"_catalogs/masterpage\"" }, { "Id": 50, - "CommandName": "Add-PnPFile", "Rank": 2, + "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\displaytemplate.html -Folder \"_catalogs/masterpage/display templates/test\"" }, { "Id": 51, - "CommandName": "Add-PnPFile", "Rank": 3, + "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path .\\sample.doc -Folder \"Shared Documents\" -Values @{Modified=\"12/28/2023\"}" }, { "Id": 52, - "CommandName": "Add-PnPFile", "Rank": 4, + "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.doc -Folder \"Shared Documents\" -Stream $fileStream -Values @{Modified=\"12/28/2023\"}" }, { "Id": 53, - "CommandName": "Add-PnPFile", "Rank": 5, + "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.doc -Folder \"Shared Documents\" -ContentType \"Document\" -Values @{Modified=\"12/28/2023\"}" }, { "Id": 54, - "CommandName": "Add-PnPFile", "Rank": 6, + "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -Values @{Modified=\"12/28/2016\"; Created=\"12/28/2023\"; Editor=23}" }, { "Id": 55, - "CommandName": "Add-PnPFile", "Rank": 7, + "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -Path sample.docx -Folder \"Documents\" -NewFileName \"differentname.docx\"" }, { "Id": 56, - "CommandName": "Add-PnPFile", "Rank": 8, + "CommandName": "Add-PnPFile", "Command": "Add-PnPFile -FileName sample.txt -Folder \"Shared Documents\" -Content '{ \"Test\": \"Value\" }'" }, { "Id": 57, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { "Id": 58, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Password \"PnPRocks!\"" }, { "Id": 59, - "CommandName": "Add-PnPFileAnonymousSharingLink", "Rank": 3, + "CommandName": "Add-PnPFileAnonymousSharingLink", "Command": "Add-PnPFileAnonymousSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type View -ExpirationDateTime (Get-Date).AddDays(15)" }, { "Id": 60, - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { "Id": 61, - "CommandName": "Add-PnPFileOrganizationalSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileOrganizationalSharingLink", "Command": "Add-PnPFileOrganizationalSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit" }, { "Id": 62, - "CommandName": "Add-PnPFileSensitivityLabel", "Rank": 1, + "CommandName": "Add-PnPFileSensitivityLabel", "Command": "Add-PnPFileSensitivityLabel -Identity \"/sites/Marketing/Shared Documents/Report.pptx\" -SensitivityLabelId \"b5b11b04-05b3-4fe4-baa9-b7f5f65b8b64\" -JustificationText \"Previous label no longer applies\" -AssignmentMethod Privileged" }, { "Id": 63, - "CommandName": "Add-PnPFileSensitivityLabel", "Rank": 2, + "CommandName": "Add-PnPFileSensitivityLabel", "Command": "Add-PnPFileSensitivityLabel -Identity \"/sites/Marketing/Shared Documents/Report.pptx\" -SensitivityLabelId \"\" -JustificationText \"Previous label no longer applies\" -AssignmentMethod Privileged" }, { "Id": 64, - "CommandName": "Add-PnPFileSharingInvite", "Rank": 1, + "CommandName": "Add-PnPFileSharingInvite", "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { "Id": 65, - "CommandName": "Add-PnPFileSharingInvite", "Rank": 2, + "CommandName": "Add-PnPFileSharingInvite", "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { "Id": 66, - "CommandName": "Add-PnPFileSharingInvite", "Rank": 3, + "CommandName": "Add-PnPFileSharingInvite", "Command": "Add-PnPFileSharingInvite -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" }, { "Id": 67, - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"Instructions.docx\" -Folder \"Shared Documents\"" }, { "Id": 68, - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path c:\\temp\\template.pnp -Source \"c:\\temp\\Sample.pptx\" -Folder \"Shared Documents\\Samples\"" }, { "Id": 69, - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 3, + "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source \"./myfile.png\" -Folder \"folderinsite\" -FileLevel Published -FileOverwrite:$false" }, { "Id": 70, - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 4, + "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -Source $sourceFilePath -Folder $targetFolder -Container $container" }, { "Id": 71, - "CommandName": "Add-PnPFileToSiteTemplate", "Rank": 5, + "CommandName": "Add-PnPFileToSiteTemplate", "Command": "Add-PnPFileToSiteTemplate -Path template.pnp -SourceUrl \"Shared%20Documents/ProjectStatus.docx\"" }, { "Id": 72, - "CommandName": "Add-PnPFileUserSharingLink", "Rank": 1, + "CommandName": "Add-PnPFileUserSharingLink", "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { "Id": 73, - "CommandName": "Add-PnPFileUserSharingLink", "Rank": 2, + "CommandName": "Add-PnPFileUserSharingLink", "Command": "Add-PnPFileUserSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Type Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { "Id": 74, - "CommandName": "Add-PnPFlowOwner", "Rank": 1, + "CommandName": "Add-PnPFlowOwner", "Command": "Add-PnPFlowOwner -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -Role CanEdit" }, { "Id": 75, - "CommandName": "Add-PnPFlowOwner", "Rank": 2, + "CommandName": "Add-PnPFlowOwner", "Command": "Add-PnPFlowOwner -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanView" }, { "Id": 76, - "CommandName": "Add-PnPFlowOwner", "Rank": 3, + "CommandName": "Add-PnPFlowOwner", "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04 -Role CanViewWithShare" }, { "Id": 77, - "CommandName": "Add-PnPFlowOwner", "Rank": 4, + "CommandName": "Add-PnPFlowOwner", "Command": "Add-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Role CanEdit" }, { "Id": 78, - "CommandName": "Add-PnPFolder", "Rank": 1, + "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { "Id": 79, - "CommandName": "Add-PnPFolder", "Rank": 2, + "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents\"" }, { "Id": 80, - "CommandName": "Add-PnPFolder", "Rank": 3, + "CommandName": "Add-PnPFolder", "Command": "Add-PnPFolder -Name NewFolder -Folder \"Shared Documents/Folder\"" }, { "Id": 81, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { "Id": 82, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\"" }, { "Id": 83, - "CommandName": "Add-PnPFolderAnonymousSharingLink", "Rank": 3, + "CommandName": "Add-PnPFolderAnonymousSharingLink", "Command": "Add-PnPFolderAnonymousSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit -Password \"PnPRocks!\" -ExpirationDateTime (Get-Date).AddDays(15)" }, { "Id": 84, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { "Id": 85, - "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderOrganizationalSharingLink", "Command": "Add-PnPFolderOrganizationalSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Type Edit" }, { "Id": 86, - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 1, + "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn" }, { "Id": 87, - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 2, + "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -SendInvitation -Role Owner" }, { "Id": 88, - "CommandName": "Add-PnPFolderSharingInvite", "Rank": 3, + "CommandName": "Add-PnPFolderSharingInvite", "Command": "Add-PnPFolderSharingInvite -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\" -RequireSignIn -ExpirationDate (Get-Date).AddDays(15)" }, { "Id": 89, - "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 1, + "CommandName": "Add-PnPFolderUserSharingLink", "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { "Id": 90, - "CommandName": "Add-PnPFolderUserSharingLink", "Rank": 2, + "CommandName": "Add-PnPFolderUserSharingLink", "Command": "Add-PnPFolderUserSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -ShareType Edit -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { "Id": 91, - "CommandName": "Add-PnPGroupMember", "Rank": 1, + "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { "Id": 92, - "CommandName": "Add-PnPGroupMember", "Rank": 2, + "CommandName": "Add-PnPGroupMember", "Command": "Add-PnPGroupMember -LoginName user@company.com -Group 5" }, { "Id": 93, - "CommandName": "Add-PnPHomeSite", "Rank": 1, + "CommandName": "Add-PnPHomeSite", "Command": "Add-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { "Id": 94, - "CommandName": "Add-PnPHtmlPublishingPageLayout", "Rank": 1, + "CommandName": "Add-PnPHtmlPublishingPageLayout", "Command": "Add-PnPHtmlPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" }, { "Id": 95, - "CommandName": "Add-PnPHubSiteAssociation", "Rank": 1, + "CommandName": "Add-PnPHubSiteAssociation", "Command": "Add-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\" -HubSite \"https://tenant.sharepoint.com/sites/hubsite\"" }, { "Id": 96, - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 1, + "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -Source 6638bd4c-d88d-447c-9eb2-c84f28ba8b15 -Target 0b70f9de-2b98-46e9-862f-ba5700aa2443" }, { "Id": 97, - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 2, + "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/targethub\"" }, { "Id": 98, - "CommandName": "Add-PnPHubToHubAssociation", "Rank": 3, + "CommandName": "Add-PnPHubToHubAssociation", "Command": "Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/toplevelhub\"\r ; Add-PnPHubToHubAssociation -SourceUrl \"https://yourtenant.sharepoint.com/sites/thirdlevelhub\" -TargetUrl \"https://yourtenant.sharepoint.com/sites/secondlevelhub\"" }, { "Id": 99, - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 1, + "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script '' -Sequence 9999 -Scope Site" }, { "Id": 100, - "CommandName": "Add-PnPJavaScriptBlock", "Rank": 2, + "CommandName": "Add-PnPJavaScriptBlock", "Command": "Add-PnPJavaScriptBlock -Name myAction -script ''" }, { "Id": 101, - "CommandName": "Add-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js -Sequence 9999 -Scope Site" }, { "Id": 102, - "CommandName": "Add-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Add-PnPJavaScriptLink", "Command": "Add-PnPJavaScriptLink -Name jQuery -Url https://code.jquery.com/jquery.min.js" }, { "Id": 103, - "CommandName": "Add-PnPListDesign", "Rank": 1, + "CommandName": "Add-PnPListDesign", "Command": "Add-PnPListDesign -Title \"My Custom List\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\"" }, { "Id": 104, - "CommandName": "Add-PnPListDesign", "Rank": 2, + "CommandName": "Add-PnPListDesign", "Command": "Add-PnPListDesign -Title \"My Company Design\" -SiteScriptIds \"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -ListColor Orange -ListIcon BullseyeTarget -ThumbnailUrl \"https://contoso.sharepoint.com/SiteAssets/site-thumbnail.png\"" }, { "Id": 105, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList'" }, { "Id": 106, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 2, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive" }, { "Id": 107, - "CommandName": "Add-PnPListFoldersToSiteTemplate", "Rank": 3, + "CommandName": "Add-PnPListFoldersToSiteTemplate", "Command": "Add-PnPListFoldersToSiteTemplate -Path template.pnp -List 'PnPTestList' -Recursive -IncludeSecurity" }, { "Id": 108, - "CommandName": "Add-PnPListItem", "Rank": 1, + "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { "Id": 109, - "CommandName": "Add-PnPListItem", "Rank": 2, + "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { "Id": 110, - "CommandName": "Add-PnPListItem", "Rank": 3, + "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"MultiUserField\"=\"user1@domain.com\",\"user2@domain.com\"}" }, { "Id": 111, - "CommandName": "Add-PnPListItem", "Rank": 4, + "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Folder \"projects/europe\"" }, { "Id": 112, - "CommandName": "Add-PnPListItem", "Rank": 5, + "CommandName": "Add-PnPListItem", "Command": "Add-PnPListItem -List \"Demo List\" -Values @{\"Title\"=\"Sales Report\"} -Label \"Public\"" }, { "Id": 113, - "CommandName": "Add-PnPListItemAttachment", "Rank": 1, + "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path c:\\temp\\test.mp4" }, { "Id": 114, - "CommandName": "Add-PnPListItemAttachment", "Rank": 2, + "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.txt\" -Content '{ \"Test\": \"Value\" }'" }, { "Id": 115, - "CommandName": "Add-PnPListItemAttachment", "Rank": 3, + "CommandName": "Add-PnPListItemAttachment", "Command": "Add-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName \"test.mp4\" -Stream $fileStream" }, { "Id": 116, - "CommandName": "Add-PnPListItemComment", "Rank": 1, + "CommandName": "Add-PnPListItemComment", "Command": "Add-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"Hello world\"" }, { "Id": 117, - "CommandName": "Add-PnPMasterPage", "Rank": 1, + "CommandName": "Add-PnPMasterPage", "Command": "Add-PnPMasterPage -SourceFilePath \"page.master\" -Title \"MasterPage\" -Description \"MasterPage for Web\" -DestinationFolderHierarchy \"SubFolder\"" }, { "Id": 118, - "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { "Id": 119, - "CommandName": "Add-PnPMicrosoft365GroupMember", "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupMember", "Command": "Add-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { "Id": 120, - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { "Id": 121, - "CommandName": "Add-PnPMicrosoft365GroupOwner", "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupOwner", "Command": "Add-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\" -RemoveExisting" }, { "Id": 122, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 1, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url \"https://contoso.sharepoint.com/sites/FinanceTeamsite\" -Alias \"FinanceTeamsite\" -DisplayName \"My finance team site group\"" }, { "Id": 123, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 2, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Alias \"HRTeamsite\" -DisplayName \"My HR team site group\"" }, { "Id": 124, - "CommandName": "Add-PnPMicrosoft365GroupToSite", "Rank": 3, + "CommandName": "Add-PnPMicrosoft365GroupToSite", "Command": "Add-PnPMicrosoft365GroupToSite -Url $SiteURL -Alias $GroupAlias -DisplayName $GroupName -IsPublic -KeepOldHomePage" }, { "Id": 125, - "CommandName": "Add-PnPNavigationNode", "Rank": 1, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\"" }, { "Id": 126, - "CommandName": "Add-PnPNavigationNode", "Rank": 2, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso USA\" -Url \"http://contoso.sharepoint.com/sites/contoso/usa/\" -Location \"QuickLaunch\" -Parent 2012" }, { "Id": 127, - "CommandName": "Add-PnPNavigationNode", "Rank": 3, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -First" }, { "Id": 128, - "CommandName": "Add-PnPNavigationNode", "Rank": 4, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso Pharmaceuticals\" -Url \"http://contoso.sharepoint.com/sites/contosopharma/\" -Location \"QuickLaunch\" -External" }, { "Id": 129, - "CommandName": "Add-PnPNavigationNode", "Rank": 5, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\"" }, { "Id": 130, - "CommandName": "Add-PnPNavigationNode", "Rank": 6, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Label\" -Location \"TopNavigationBar\" -Url \"http://linkless.header/\"" }, { "Id": 131, - "CommandName": "Add-PnPNavigationNode", "Rank": 7, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Wiki\" -Location \"QuickLaunch\" -Url \"wiki/\" -PreviousNode 2012" }, { "Id": 132, - "CommandName": "Add-PnPNavigationNode", "Rank": 8, + "CommandName": "Add-PnPNavigationNode", "Command": "Add-PnPNavigationNode -Title \"Contoso\" -Url \"http://contoso.sharepoint.com/sites/contoso/\" -Location \"QuickLaunch\" -OpenInNewTab" }, { "Id": 133, - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\"" }, { "Id": 134, - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 2, + "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"" }, { "Id": 135, - "CommandName": "Add-PnPOrgAssetsLibrary", "Rank": 3, + "CommandName": "Add-PnPOrgAssetsLibrary", "Command": "Add-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -CdnType Private" }, { "Id": 136, - "CommandName": "Add-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Add-PnPOrgNewsSite", "Command": "Add-PnPOrgNewsSite -OrgNewsSiteUrl \"https://yourtenant.sharepoint.com/sites/news\"" }, { "Id": 137, - "CommandName": "Add-PnPPage", "Rank": 1, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\"" }, { "Id": 138, - "CommandName": "Add-PnPPage", "Rank": 2, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Title \"Welcome to my page\"" }, { "Id": 139, - "CommandName": "Add-PnPPage", "Rank": 3, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -ContentType \"MyPageContentType\"" }, { "Id": 140, - "CommandName": "Add-PnPPage", "Rank": 4, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPageTemplate\" -PromoteAs Template" }, { "Id": 141, - "CommandName": "Add-PnPPage", "Rank": 5, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"Folder/NewPage\"" }, { "Id": 142, - "CommandName": "Add-PnPPage", "Rank": 6, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -HeaderLayoutType ColorBlock" }, { "Id": 143, - "CommandName": "Add-PnPPage", "Rank": 7, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" Article -ScheduledPublishDate (Get-Date).AddHours(1)" }, { "Id": 144, - "CommandName": "Add-PnPPage", "Rank": 8, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate" }, { "Id": 145, - "CommandName": "Add-PnPPage", "Rank": 9, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043" }, { "Id": 146, - "CommandName": "Add-PnPPage", "Rank": 10, + "CommandName": "Add-PnPPage", "Command": "Add-PnPPage -Name \"NewPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { "Id": 147, - "CommandName": "Add-PnPPageImageWebPart", "Rank": 1, + "CommandName": "Add-PnPPageImageWebPart", "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/siteassets/test.png\"" }, { "Id": 148, - "CommandName": "Add-PnPPageImageWebPart", "Rank": 2, + "CommandName": "Add-PnPPageImageWebPart", "Command": "Add-PnPPageImageWebPart -Page \"MyPage\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -ImageWidth 400 -ImageHeight 200 -Caption \"Caption text\" -AlternativeText \"Alt text\" -Link \"https://pnp.github.io\"" }, { "Id": 149, - "CommandName": "Add-PnPPageSection", "Rank": 1, + "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate OneColumn" }, { "Id": 150, - "CommandName": "Add-PnPPageSection", "Rank": 2, + "CommandName": "Add-PnPPageSection", "Command": "Add-PnPPageSection -Page \"MyPage\" -SectionTemplate ThreeColumn -Order 10" }, { "Id": 151, - "CommandName": "Add-PnPPageTextPart", "Rank": 1, + "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\"" }, { "Id": 152, - "CommandName": "Add-PnPPageTextPart", "Rank": 2, + "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\"" }, { "Id": 153, - "CommandName": "Add-PnPPageTextPart", "Rank": 3, + "CommandName": "Add-PnPPageTextPart", "Command": "Add-PnPPageTextPart -Page \"MyPage\" -Text \"Hello World!\" -ImageUrl \"/sites/contoso/SiteAssets/test.png\" -TextBeforeImage \"Text before\" -TextAfterImage \"Text after\"" }, { "Id": 154, - "CommandName": "Add-PnPPageWebPart", "Rank": 1, + "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -DefaultWebPartType BingMap" }, { "Id": 155, - "CommandName": "Add-PnPPageWebPart", "Rank": 2, + "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\"" }, { "Id": 156, - "CommandName": "Add-PnPPageWebPart", "Rank": 3, + "CommandName": "Add-PnPPageWebPart", "Command": "Add-PnPPageWebPart -Page \"MyPage\" -Component \"HelloWorld\" -Section 1 -Column 2" }, { "Id": 157, - "CommandName": "Add-PnPPlannerBucket", "Rank": 1, + "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -Group \"My Group\" -Plan \"My Plan\" -Name \"Project Todos\"" }, { "Id": 158, - "CommandName": "Add-PnPPlannerBucket", "Rank": 2, + "CommandName": "Add-PnPPlannerBucket", "Command": "Add-PnPPlannerBucket -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Name \"Project Todos\"" }, { "Id": 159, - "CommandName": "Add-PnPPlannerRoster", "Rank": 1, + "CommandName": "Add-PnPPlannerRoster", "Command": "Add-PnPPlannerRoster" }, { "Id": 160, - "CommandName": "Add-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Add-PnPPlannerRosterMember", "Command": "Add-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { "Id": 161, - "CommandName": "Add-PnPPlannerTask", "Rank": 1, + "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AppliedCategories @{\"Category1\"=$true,\"Category3\"=$true}" }, { "Id": 162, - "CommandName": "Add-PnPPlannerTask", "Rank": 2, + "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\" -Bucket \"Todos\" -Title \"Design booth layout\" -AppliedCategories @{\"Category1\"=$true,\"Category3\"=$true}" }, { "Id": 163, - "CommandName": "Add-PnPPlannerTask", "Rank": 3, + "CommandName": "Add-PnPPlannerTask", "Command": "Add-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\" -Bucket \"Todos\" -Title \"Design booth layout\" -AssignedTo \"user@contoso.com\",\"manager@contoso.com\" -AppliedCategories @{\"Category1\"=$true,\"Category3\"=$true}" }, { "Id": 164, - "CommandName": "Add-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Add-PnPPublishingImageRendition", "Command": "Add-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { "Id": 165, - "CommandName": "Add-PnPPublishingPage", "Rank": 1, + "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft'" }, { "Id": 166, - "CommandName": "Add-PnPPublishingPage", "Rank": 2, + "CommandName": "Add-PnPPublishingPage", "Command": "Add-PnPPublishingPage -PageName 'OurNewPage' -Title 'Our new page' -PageTemplateName 'ArticleLeft' -Folder '/Pages/folder'" }, { "Id": 167, - "CommandName": "Add-PnPPublishingPageLayout", "Rank": 1, + "CommandName": "Add-PnPPublishingPageLayout", "Command": "Add-PnPPublishingPageLayout -Title 'Our custom page layout' -SourceFilePath 'customlayout.aspx' -Description 'A custom page layout' -AssociatedContentTypeID 0x01010901" }, { "Id": 168, - "CommandName": "Add-PnPRoleDefinition", "Rank": 1, + "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"CustomPerm\"" }, { "Id": 169, - "CommandName": "Add-PnPRoleDefinition", "Rank": 2, + "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"NoDelete\" -Clone \"Contribute\" -Exclude DeleteListItems" }, { "Id": 170, - "CommandName": "Add-PnPRoleDefinition", "Rank": 3, + "CommandName": "Add-PnPRoleDefinition", "Command": "Add-PnPRoleDefinition -RoleName \"AddOnly\" -Clone \"Contribute\" -Exclude DeleteListItems, EditListItems" }, { "Id": 171, - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { "Id": 172, - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { "Id": 173, - "CommandName": "Add-PnPSiteCollectionAdmin", "Rank": 3, + "CommandName": "Add-PnPSiteCollectionAdmin", "Command": "Add-PnPSiteCollectionAdmin -PrimarySiteCollectionAdmin \"user@contoso.onmicrosoft.com\"" }, { "Id": 174, - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog" }, { "Id": 175, - "CommandName": "Add-PnPSiteCollectionAppCatalog", "Rank": 2, + "CommandName": "Add-PnPSiteCollectionAppCatalog", "Command": "Add-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { "Id": 176, - "CommandName": "Add-PnPSiteDesign", "Rank": 1, + "CommandName": "Add-PnPSiteDesign", "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite" }, { "Id": 177, - "CommandName": "Add-PnPSiteDesign", "Rank": 2, + "CommandName": "Add-PnPSiteDesign", "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl https://contoso.sharepoint.com/sites/templates/siteassets/logo.png" }, { "Id": 178, - "CommandName": "Add-PnPSiteDesign", "Rank": 3, + "CommandName": "Add-PnPSiteDesign", "Command": "Add-PnPSiteDesign -Title \"My Company Design\" -SiteScriptIds \"e84dcb46-3ab9-4456-a136-66fc6ae3d3c5\",\"6def687f-0e08-4f1e-999c-791f3af9a600\" -Description \"My description\" -WebTemplate TeamSite -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"" }, { "Id": 179, - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 1, + "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll" }, { "Id": 180, - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 2, + "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { "Id": 181, - "CommandName": "Add-PnPSiteDesignFromWeb", "Rank": 3, + "CommandName": "Add-PnPSiteDesignFromWeb", "Command": "Add-PnPSiteDesignFromWeb -Title \"My Company Design\" -Description \"My description\" -WebTemplate TeamSite -Lists \"/lists/Issue list\" -ThumbnailUrl https://contoso.sharepoint.com/SiteAssets/logo.png" }, { "Id": 182, - "CommandName": "Add-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82" }, { "Id": 183, - "CommandName": "Add-PnPSiteDesignTask", "Rank": 2, + "CommandName": "Add-PnPSiteDesignTask", "Command": "Add-PnPSiteDesignTask -SiteDesignId 501z8c32-4147-44d4-8607-26c2f67cae82 -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { "Id": 184, - "CommandName": "Add-PnPSiteScript", "Rank": 1, + "CommandName": "Add-PnPSiteScript", "Command": "Add-PnPSiteScript -Title \"My Site Script\" -Description \"A more detailed description\" -Content $script" }, { "Id": 185, - "CommandName": "Add-PnPSiteScriptPackage", "Rank": 1, + "CommandName": "Add-PnPSiteScriptPackage", "Command": "Add-PnPSiteScriptPackage -Title \"My Site Script Package\" -Description \"A more detailed description\" -ContentPath \"c:\\package.zip\"" }, { "Id": 186, - "CommandName": "Add-PnPSiteTemplate", "Rank": 1, + "CommandName": "Add-PnPSiteTemplate", "Command": "Add-PnPSiteTemplate -TenantTemplate $tenanttemplate -SiteTemplate $sitetemplate" }, { "Id": 187, - "CommandName": "Add-PnPStoredCredential", "Rank": 1, + "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com" }, { "Id": 188, - "CommandName": "Add-PnPStoredCredential", "Rank": 2, + "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { "Id": 189, - "CommandName": "Add-PnPStoredCredential", "Rank": 3, + "CommandName": "Add-PnPStoredCredential", "Command": "Add-PnPStoredCredential -Name \"https://tenant.sharepoint.com\" -Username yourname@tenant.onmicrosoft.com -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)\r ; Connect-PnPOnline -Url \"https://tenant.sharepoint.com/sites/mydemosite\"" }, { "Id": 190, - "CommandName": "Add-PnPTaxonomyField", "Rank": 1, + "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TermSetPath \"TestTermGroup|TestTermSet\"" }, { "Id": 191, - "CommandName": "Add-PnPTaxonomyField", "Rank": 2, + "CommandName": "Add-PnPTaxonomyField", "Command": "Add-PnPTaxonomyField -DisplayName \"Test\" -InternalName \"Test\" -TaxonomyItemId \"0e5fe3c6-3e6a-4d25-9f48-82a655f15992\"" }, { "Id": 192, - "CommandName": "Add-PnPTeamsChannel", "Rank": 1, + "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -DisplayName \"My Channel\" -IsFavoriteByDefault $true" }, { "Id": 193, - "CommandName": "Add-PnPTeamsChannel", "Rank": 2, + "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"My Team\" -DisplayName \"My standard channel\"" }, { "Id": 194, - "CommandName": "Add-PnPTeamsChannel", "Rank": 3, + "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"HR\" -DisplayName \"My private channel\" -ChannelType Private -OwnerUPN user1@domain.com" }, { "Id": 195, - "CommandName": "Add-PnPTeamsChannel", "Rank": 4, + "CommandName": "Add-PnPTeamsChannel", "Command": "Add-PnPTeamsChannel -Team \"Logistical Department\" -DisplayName \"My shared channel\" -ChannelType Shared -OwnerUPN user1@domain.com" }, { "Id": 196, - "CommandName": "Add-PnpTeamsChannelUser", "Rank": 1, + "CommandName": "Add-PnpTeamsChannelUser", "Command": "Add-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -User john@doe.com -Role Owner" }, { "Id": 197, - "CommandName": "Add-PnpTeamsChannelUser", "Rank": 2, + "CommandName": "Add-PnpTeamsChannelUser", "Command": "Add-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -User john@doe.com -Role Member" }, { "Id": 198, - "CommandName": "Add-PnPTeamsTab", "Rank": 1, + "CommandName": "Add-PnPTeamsTab", "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type WebSite -ContentUrl \"https://aka.ms/m365pnp\"" }, { "Id": 199, - "CommandName": "Add-PnPTeamsTab", "Rank": 2, + "CommandName": "Add-PnPTeamsTab", "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type PDF -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/General/MyFile.pdf\" -EntityId \"null\"" }, { "Id": 200, - "CommandName": "Add-PnPTeamsTab", "Rank": 3, + "CommandName": "Add-PnPTeamsTab", "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Tab Name\" -Type SharePointPageAndList -WebSiteUrl \"https://contoso.sharepoint.com/sites/Marketing/SitePages/Home.aspx\"" }, { "Id": 201, - "CommandName": "Add-PnPTeamsTab", "Rank": 4, + "CommandName": "Add-PnPTeamsTab", "Command": "Add-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -DisplayName \"My Excel Tab\" -Type Excel -ContentUrl \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/My Excel File.csv\" -EntityId 6" }, { "Id": 202, - "CommandName": "Add-PnPTeamsTeam", "Rank": 1, + "CommandName": "Add-PnPTeamsTeam", "Command": "Add-PnPTeamsTeam" }, { "Id": 203, - "CommandName": "Add-PnPTeamsUser", "Rank": 1, + "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { "Id": 204, - "CommandName": "Add-PnPTeamsUser", "Rank": 2, + "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { "Id": 205, - "CommandName": "Add-PnPTeamsUser", "Rank": 3, + "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\" -Role Member" }, { "Id": 206, - "CommandName": "Add-PnPTeamsUser", "Rank": 4, + "CommandName": "Add-PnPTeamsUser", "Command": "Add-PnPTeamsUser -Team MyTeam -User \"jane@doe.com\" -Role Member -Channel Private" }, { "Id": 207, - "CommandName": "Add-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Add-PnPTenantCdnOrigin", "Command": "Add-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { "Id": 208, - "CommandName": "Add-PnPTenantRestrictedSearchAllowedList", "Rank": 1, + "CommandName": "Add-PnPTenantRestrictedSearchAllowedList", "Command": "Add-PnPTenantRestrictedSearchAllowedList -SitesListFileUrl \"C:\\temp\\sitelist.csv\" -ContainsHeader" }, { "Id": 209, - "CommandName": "Add-PnPTenantRestrictedSearchAllowedList", "Rank": 2, + "CommandName": "Add-PnPTenantRestrictedSearchAllowedList", "Command": "Add-PnPTenantRestrictedSearchAllowedList -SitesListFileUrl \"C:\\temp\\sitelist.csv\"" }, { "Id": 210, - "CommandName": "Add-PnPTenantRestrictedSearchAllowedList", "Rank": 3, + "CommandName": "Add-PnPTenantRestrictedSearchAllowedList", "Command": "Add-PnPTenantRestrictedSearchAllowedList -SitesList @(\"https://contoso.sharepoint.com/sites/Company311\",\"https://contoso.sharepoint.com/sites/contosoportal\")" }, { "Id": 211, - "CommandName": "Add-PnPTenantSequence", "Rank": 1, + "CommandName": "Add-PnPTenantSequence", "Command": "Add-PnPTenantSequence -Template $mytemplate -Sequence $mysequence" }, { "Id": 212, - "CommandName": "Add-PnPTenantSequenceSite", "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSite", "Command": "Add-PnPTenantSequenceSite -Site $myteamsite -Sequence $mysequence" }, { "Id": 213, - "CommandName": "Add-PnPTenantSequenceSubSite", "Rank": 1, + "CommandName": "Add-PnPTenantSequenceSubSite", "Command": "Add-PnPTenantSequenceSubSite -Site $mysite -SubSite $mysubsite" }, { "Id": 214, - "CommandName": "Add-PnPTermToTerm", "Rank": 1, + "CommandName": "Add-PnPTermToTerm", "Command": "Add-PnPTermToTerm -ParentTermId 2d1f298b-804a-4a05-96dc-29b667adec62 -Name SubTerm -CustomProperties @{\"Department\"=\"Marketing\"}" }, { "Id": 215, - "CommandName": "Add-PnPView", "Rank": 1, + "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\"" }, { "Id": 216, - "CommandName": "Add-PnPView", "Rank": 2, + "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Paged -RowLimit 100" }, { "Id": 217, - "CommandName": "Add-PnPView", "Rank": 3, + "CommandName": "Add-PnPView", "Command": "Add-PnPView -List \"Demo List\" -Title \"Demo View\" -Fields \"Title\",\"Address\" -Aggregations \"\"" }, { "Id": 218, - "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Command": "Add-PnPVivaConnectionsDashboardACE -Identity CardDesigner -Order 3 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Large -Description \"ACE description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"" }, { "Id": 219, - "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 2, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Command": "Add-PnPVivaConnectionsDashboardACE -Identity ThirdPartyApp -Order 1 -Title \"Hello there\" -PropertiesJSON $myProperties -CardSize Medium -Description \"ACE with description\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"" }, { "Id": 220, - "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Rank": 3, + "CommandName": "Add-PnPVivaConnectionsDashboardACE", "Command": "Add-PnPVivaConnectionsDashboardACE -Identity AssignedTasks -Order 2 -Title \"Tasks\" -PropertiesJSON $myProperties -CardSize Medium -Description \"My Assigned tasks\" -Iconproperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\"" }, { "Id": 221, - "CommandName": "Add-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { "Id": 222, - "CommandName": "Add-PnPWebhookSubscription", "Rank": 2, + "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { "Id": 223, - "CommandName": "Add-PnPWebhookSubscription", "Rank": 3, + "CommandName": "Add-PnPWebhookSubscription", "Command": "Add-PnPWebhookSubscription -List MyList -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\" -ClientState \"Hello State!\"" }, { "Id": 224, - "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 1, + "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -ZoneId \"Header\" -ZoneIndex 1" }, { "Id": 225, - "CommandName": "Add-PnPWebPartToWebPartPage", "Rank": 2, + "CommandName": "Add-PnPWebPartToWebPartPage", "Command": "Add-PnPWebPartToWebPartPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -ZoneId \"Header\" -ZoneIndex 1" }, { "Id": 226, - "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 1, + "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Path \"c:\\myfiles\\listview.webpart\" -Row 1 -Column 1" }, { "Id": 227, - "CommandName": "Add-PnPWebPartToWikiPage", "Rank": 2, + "CommandName": "Add-PnPWebPartToWikiPage", "Command": "Add-PnPWebPartToWikiPage -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -XML $webpart -Row 1 -Column 1" }, { "Id": 228, - "CommandName": "Add-PnPWikiPage", "Rank": 1, + "CommandName": "Add-PnPWikiPage", "Command": "Add-PnPWikiPage -PageUrl '/sites/demo1/pages/wikipage.aspx' -Content 'New WikiPage'" }, { "Id": 229, - "CommandName": "Clear-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupMember", "Command": "Clear-PnPAzureADGroupMember -Identity \"Project Team\"" }, { "Id": 230, - "CommandName": "Clear-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Clear-PnPAzureADGroupOwner", "Command": "Clear-PnPAzureADGroupOwner -Identity \"Project Team\"" }, { "Id": 231, - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 1, + "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField" }, { "Id": 232, - "CommandName": "Clear-PnPDefaultColumnValues", "Rank": 2, + "CommandName": "Clear-PnPDefaultColumnValues", "Command": "Clear-PnPDefaultColumnValues -List Documents -Field MyField -Folder A" }, { "Id": 233, - "CommandName": "Clear-PnPListItemAsRecord", "Rank": 1, + "CommandName": "Clear-PnPListItemAsRecord", "Command": "Clear-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { "Id": 234, - "CommandName": "Clear-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupMember", "Command": "Clear-PnPMicrosoft365GroupMember -Identity \"Project Team\"" }, { "Id": 235, - "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Clear-PnPMicrosoft365GroupOwner", "Command": "Clear-PnPMicrosoft365GroupOwner -Identity \"Project Team\"" }, { "Id": 236, - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 1, + "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { "Id": 237, - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 2, + "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -Identity $item -Force" }, { "Id": 238, - "CommandName": "Clear-PnpRecycleBinItem", "Rank": 3, + "CommandName": "Clear-PnpRecycleBinItem", "Command": "Clear-PnPRecycleBinItem -All -RowLimit 10000" }, { "Id": 239, - "CommandName": "Clear-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Clear-PnPTenantAppCatalogUrl", "Command": "Clear-PnPTenantAppCatalogUrl" }, { "Id": 240, - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { "Id": 241, - "CommandName": "Clear-PnPTenantRecycleBinItem", "Rank": 2, + "CommandName": "Clear-PnPTenantRecycleBinItem", "Command": "Clear-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { "Id": 242, - "CommandName": "Clear-PnPTraceLog", "Rank": 1, + "CommandName": "Clear-PnPTraceLog", "Command": "Clear-PnPTraceLog" }, { "Id": 243, - "CommandName": "Connect-PnPOnline", "Rank": 1, + "CommandName": "Connect-PnPOnline", "Command": "Connect-PnPOnline -Url contoso.sharepoint.com -AzureEnvironment Custom -MicrosoftGraphEndPoint \"custom.graph.microsoft.com\" -AzureADLoginEndPoint \"https://custom.login.microsoftonline.com\"" }, { "Id": 244, - "CommandName": "Convert-PnPFile", "Rank": 1, + "CommandName": "Convert-PnPFile", "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -AsMemoryStream" }, { "Id": 245, - "CommandName": "Convert-PnPFile", "Rank": 2, + "CommandName": "Convert-PnPFile", "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\"" }, { "Id": 246, - "CommandName": "Convert-PnPFile", "Rank": 3, + "CommandName": "Convert-PnPFile", "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\"" }, { "Id": 247, - "CommandName": "Convert-PnPFile", "Rank": 4, + "CommandName": "Convert-PnPFile", "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Document.docx\" -Path \"C:\\Temp\" -Force" }, { "Id": 248, - "CommandName": "Convert-PnPFile", "Rank": 5, + "CommandName": "Convert-PnPFile", "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\"" }, { "Id": 249, - "CommandName": "Convert-PnPFile", "Rank": 6, + "CommandName": "Convert-PnPFile", "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.png\" -ConvertToFormat Jpg -Folder \"/sites/demo/Shared Documents/Archive\"" }, { "Id": 250, - "CommandName": "Convert-PnPFile", "Rank": 7, + "CommandName": "Convert-PnPFile", "Command": "Convert-PnPFile -Url \"/sites/demo/Shared Documents/Test/Book.xlsx\" -Folder \"/sites/demo/Shared Documents/Archive\" -NewFileName \"differentname.pdf\"" }, { "Id": 251, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 1, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp" }, { "Id": 252, - "CommandName": "Convert-PnPFolderToSiteTemplate", "Rank": 2, + "CommandName": "Convert-PnPFolderToSiteTemplate", "Command": "Convert-PnPFolderToSiteTemplate -Out template.pnp -Folder c:\\temp" }, { "Id": 253, - "CommandName": "Convert-PnPSiteTemplate", "Rank": 1, + "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml" }, { "Id": 254, - "CommandName": "Convert-PnPSiteTemplate", "Rank": 2, + "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml" }, { "Id": 255, - "CommandName": "Convert-PnPSiteTemplate", "Rank": 3, + "CommandName": "Convert-PnPSiteTemplate", "Command": "Convert-PnPSiteTemplate -Path template.xml -Out newtemplate.xml -ToSchema V201512" }, { "Id": 256, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 1, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml" }, { "Id": 257, - "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Rank": 2, + "CommandName": "Convert-PnPSiteTemplateToMarkdown", "Command": "Convert-PnPSiteTemplateToMarkdown -TemplatePath ./mytemplate.xml -Out ./myreport.md" }, { "Id": 258, - "CommandName": "ConvertTo-PnPPage", "Rank": 1, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite" }, { "Id": 259, - "CommandName": "ConvertTo-PnPPage", "Rank": 2, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -WebPartMappingFile c:\\contoso\\webpartmapping.xml" }, { "Id": 260, - "CommandName": "ConvertTo-PnPPage", "Rank": 3, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -AddPageAcceptBanner" }, { "Id": 261, - "CommandName": "ConvertTo-PnPPage", "Rank": 4, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -CopyPageMetadata" }, { "Id": 262, - "CommandName": "ConvertTo-PnPPage", "Rank": 5, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { "Id": 263, - "CommandName": "ConvertTo-PnPPage", "Rank": 6, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target" }, { "Id": 264, - "CommandName": "ConvertTo-PnPPage", "Rank": 7, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Library \"SiteAssets\" -Folder \"Folder1\" -Overwrite" }, { "Id": 265, - "CommandName": "ConvertTo-PnPPage", "Rank": 8, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Folder \"\" -Overwrite" }, { "Id": 266, - "CommandName": "ConvertTo-PnPPage", "Rank": 9, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { "Id": 267, - "CommandName": "ConvertTo-PnPPage", "Rank": 10, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType File -LogFolder c:\\temp -LogVerbose -Overwrite" }, { "Id": 268, - "CommandName": "ConvertTo-PnPPage", "Rank": 11, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -LogType SharePoint -LogSkipFlush" }, { "Id": 269, - "CommandName": "ConvertTo-PnPPage", "Rank": 12, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -BlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { "Id": 270, - "CommandName": "ConvertTo-PnPPage", "Rank": 13, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"My post title\" -DelveBlogPage -LogType Console -Overwrite -TargetWebUrl \"https://contoso.sharepoint.com/sites/targetmodernsite\"" }, { "Id": 271, - "CommandName": "ConvertTo-PnPPage", "Rank": 14, + "CommandName": "ConvertTo-PnPPage", "Command": "ConvertTo-PnPPage -Identity \"somepage.aspx\" -PublishingPage -Overwrite -TargetConnection $target -UserMappingFile c:\\\\temp\\user_mapping_file.csv" }, { "Id": 272, - "CommandName": "Copy-PnPFile", "Rank": 1, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { "Id": 273, - "CommandName": "Copy-PnPFile", "Rank": 2, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { "Id": 274, - "CommandName": "Copy-PnPFile", "Rank": 3, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { "Id": 275, - "CommandName": "Copy-PnPFile", "Rank": 4, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { "Id": 276, - "CommandName": "Copy-PnPFile", "Rank": 5, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { "Id": 277, - "CommandName": "Copy-PnPFile", "Rank": 6, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { "Id": 278, - "CommandName": "Copy-PnPFile", "Rank": 7, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { "Id": 279, - "CommandName": "Copy-PnPFile", "Rank": 8, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { "Id": 280, - "CommandName": "Copy-PnPFile", "Rank": 9, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { "Id": 281, - "CommandName": "Copy-PnPFile", "Rank": 10, + "CommandName": "Copy-PnPFile", "Command": "Copy-PnPFile -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { "Id": 282, - "CommandName": "Copy-PnPFolder", "Rank": 1, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyProjectfiles\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { "Id": 283, - "CommandName": "Copy-PnPFolder", "Rank": 2, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\"" }, { "Id": 284, - "CommandName": "Copy-PnPFolder", "Rank": 3, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -IgnoreVersionHistory" }, { "Id": 285, - "CommandName": "Copy-PnPFolder", "Rank": 4, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { "Id": 286, - "CommandName": "Copy-PnPFolder", "Rank": 5, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Documents/company.docx\" -TargetUrl \"Documents/company2.docx\"" }, { "Id": 287, - "CommandName": "Copy-PnPFolder", "Rank": 6, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"Shared Documents2/company.docx\"" }, { "Id": 288, - "CommandName": "Copy-PnPFolder", "Rank": 7, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared DocuDocuments/company.docx\" -TargetUrl \"Subsite/Shared Documents\"" }, { "Id": 289, - "CommandName": "Copy-PnPFolder", "Rank": 8, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/company.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite" }, { "Id": 290, - "CommandName": "Copy-PnPFolder", "Rank": 9, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"Shared Documents/MyDocs\" -TargetUrl \"/sites/otherproject/Documents\" -Overwrite" }, { "Id": 291, - "CommandName": "Copy-PnPFolder", "Rank": 10, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -SourceUrl \"SubSite1/Documents/company.docx\" -TargetUrl \"SubSite2/Documents\"" }, { "Id": 292, - "CommandName": "Copy-PnPFolder", "Rank": 11, + "CommandName": "Copy-PnPFolder", "Command": "Copy-PnPFolder -LocalPath \"c:\\temp\" -TargetUrl \"Subsite1/Shared Documents\" -Recurse -Overwrite" }, { "Id": 293, - "CommandName": "Copy-PnPItemProxy", "Rank": 1, + "CommandName": "Copy-PnPItemProxy", "Command": "Copy-PnPItemProxy \"C:\\Users\\Admin\\seattle.master\" -Destination \"C:\\Presentation\"" }, { "Id": 294, - "CommandName": "Copy-PnPList", "Rank": 1, + "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -Title \"Copy of My List\"" }, { "Id": 295, - "CommandName": "Copy-PnPList", "Rank": 2, + "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment" }, { "Id": 296, - "CommandName": "Copy-PnPList", "Rank": 3, + "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -Identity \"My List\" -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment -Title \"My copied list\"" }, { "Id": 297, - "CommandName": "Copy-PnPList", "Rank": 4, + "CommandName": "Copy-PnPList", "Command": "Copy-PnPList -SourceListUrl https://contoso.sharepoint.com/sites/templates/lists/mylist -Verbose -DestinationWebUrl https://contoso.sharepoint.com/sites/hrdepartment\\" }, { "Id": 298, - "CommandName": "Copy-PnPPage", "Rank": 1, + "CommandName": "Copy-PnPPage", "Command": "Copy-PnPPage -SourceSite https://tenant.sharepoint.com/sites/site1 -DestinationSite https://tenant.sharepoint.com -PageName \"FAQ.aspx\"" }, { "Id": 299, - "CommandName": "Copy-PnPTeamsTeam", "Rank": 1, + "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members" }, { "Id": 300, - "CommandName": "Copy-PnPTeamsTeam", "Rank": 2, + "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\"" }, { "Id": 301, - "CommandName": "Copy-PnPTeamsTeam", "Rank": 3, + "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone apps,tabs,settings,channels,members -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { "Id": 302, - "CommandName": "Copy-PnPTeamsTeam", "Rank": 4, + "CommandName": "Copy-PnPTeamsTeam", "Command": "Copy-PnPTeamsTeam -Identity \"Team 12\" -DisplayName \"Library Assist\" -PartsToClone settings,channels -Description \"Self help community for library\" -Classification \"Library\" -Visibility public" }, { "Id": 303, - "CommandName": "Disable-PnPFeature", "Rank": 1, + "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { "Id": 304, - "CommandName": "Disable-PnPFeature", "Rank": 2, + "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { "Id": 305, - "CommandName": "Disable-PnPFeature", "Rank": 3, + "CommandName": "Disable-PnPFeature", "Command": "Disable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { "Id": 306, - "CommandName": "Disable-PnPFlow", "Rank": 1, + "CommandName": "Disable-PnPFlow", "Command": "Disable-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { "Id": 307, - "CommandName": "Disable-PnPFlow", "Rank": 2, + "CommandName": "Disable-PnPFlow", "Command": "Disable-PnPFlow -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { "Id": 308, - "CommandName": "Disable-PnPPageScheduling", "Rank": 1, + "CommandName": "Disable-PnPPageScheduling", "Command": "Disable-PnPPageScheduling" }, { "Id": 309, - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 1, + "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry" }, { "Id": 310, - "CommandName": "Disable-PnPPowerShellTelemetry", "Rank": 2, + "CommandName": "Disable-PnPPowerShellTelemetry", "Command": "Disable-PnPPowerShellTelemetry -Force" }, { "Id": 311, - "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Rank": 1, + "CommandName": "Disable-PnPSharingForNonOwnersOfSite", "Command": "Disable-PnPSharingForNonOwnersOfSite" }, { "Id": 312, - "CommandName": "Disable-PnPSiteClassification", "Rank": 1, + "CommandName": "Disable-PnPSiteClassification", "Command": "Disable-PnPSiteClassification" }, { "Id": 313, - "CommandName": "Disconnect-PnPOnline", "Rank": 1, + "CommandName": "Disconnect-PnPOnline", "Command": "Disconnect-PnPOnline" }, { "Id": 314, - "CommandName": "Enable-PnPCommSite", "Rank": 1, + "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite" }, { "Id": 315, - "CommandName": "Enable-PnPCommSite", "Rank": 2, + "CommandName": "Enable-PnPCommSite", "Command": "Enable-PnPCommSite -DesignPackageId 6142d2a0-63a5-4ba0-aede-d9fefca2c767" }, { "Id": 316, - "CommandName": "Enable-PnPFeature", "Rank": 1, + "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { "Id": 317, - "CommandName": "Enable-PnPFeature", "Rank": 2, + "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Force" }, { "Id": 318, - "CommandName": "Enable-PnPFeature", "Rank": 3, + "CommandName": "Enable-PnPFeature", "Command": "Enable-PnPFeature -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Web" }, { "Id": 319, - "CommandName": "Enable-PnPFlow", "Rank": 1, + "CommandName": "Enable-PnPFlow", "Command": "Enable-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { "Id": 320, - "CommandName": "Enable-PnPFlow", "Rank": 2, + "CommandName": "Enable-PnPFlow", "Command": "Enable-PnPFlow -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { "Id": 321, - "CommandName": "Enable-PnPPageScheduling", "Rank": 1, + "CommandName": "Enable-PnPPageScheduling", "Command": "Enable-PnPPageScheduling" }, { "Id": 322, - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 1, + "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry" }, { "Id": 323, - "CommandName": "Enable-PnPPowerShellTelemetry", "Rank": 2, + "CommandName": "Enable-PnPPowerShellTelemetry", "Command": "Enable-PnPPowerShellTelemetry -Force" }, { "Id": 324, - "CommandName": "Enable-PnPPriviledgedIdentityManagement", "Rank": 1, + "CommandName": "Enable-PnPPriviledgedIdentityManagement", "Command": "Enable-PnPPriviledgedIdentityManagement -Role \"Global Administrator\"" }, { "Id": 325, - "CommandName": "Enable-PnPPriviledgedIdentityManagement", "Rank": 2, + "CommandName": "Enable-PnPPriviledgedIdentityManagement", "Command": "Enable-PnPPriviledgedIdentityManagement -Role \"Global Administrator\" -Justification \"Just because\"" }, { "Id": 326, - "CommandName": "Enable-PnPPriviledgedIdentityManagement", "Rank": 3, + "CommandName": "Enable-PnPPriviledgedIdentityManagement", "Command": "Enable-PnPPriviledgedIdentityManagement -Role \"Global Administrator\" -Justification \"Just because\" -StartAt (Get-Date).AddHours(2) -ExpireInHours 2" }, { "Id": 327, - "CommandName": "Enable-PnPPriviledgedIdentityManagement", "Rank": 4, + "CommandName": "Enable-PnPPriviledgedIdentityManagement", "Command": "Enable-PnPPriviledgedIdentityManagement -Role \"Global Administrator\" -User \"someone@contoso.onmicrosoft.com\"" }, { "Id": 328, - "CommandName": "Enable-PnPSiteClassification", "Rank": 1, + "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -DefaultClassification \"LBI\"" }, { "Id": 329, - "CommandName": "Enable-PnPSiteClassification", "Rank": 2, + "CommandName": "Enable-PnPSiteClassification", "Command": "Enable-PnPSiteClassification -Classifications \"HBI\",\"LBI\",\"Top Secret\" -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { "Id": 330, - "CommandName": "Export-PnPFlow", "Rank": 1, + "CommandName": "Export-PnPFlow", "Command": "Export-PnPFlow -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { "Id": 331, - "CommandName": "Export-PnPFlow", "Rank": 2, + "CommandName": "Export-PnPFlow", "Command": "Export-PnPFlow -Environment (Get-PnPPowerPlatformEnvironment -IsDefault) -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { "Id": 332, - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 1, + "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.xml -List \"Documents\"" }, { "Id": 333, - "CommandName": "Export-PnPListToSiteTemplate", "Rank": 2, + "CommandName": "Export-PnPListToSiteTemplate", "Command": "Export-PnPListToSiteTemplate -Out template.pnp -List \"Documents\",\"Events\"" }, { "Id": 334, - "CommandName": "Export-PnPPage", "Rank": 1, + "CommandName": "Export-PnPPage", "Command": "Export-PnPPage -Identity Home.aspx" }, { "Id": 335, - "CommandName": "Export-PnPPage", "Rank": 2, + "CommandName": "Export-PnPPage", "Command": "Export-PnPPage -Identity HR/Home.aspx -Out template.pnp" }, { "Id": 336, - "CommandName": "Export-PnPPageMapping", "Rank": 1, + "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInPageLayoutMapping -CustomPageLayoutMapping -Folder c:\\\\temp -Overwrite" }, { "Id": 337, - "CommandName": "Export-PnPPageMapping", "Rank": 2, + "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -CustomPageLayoutMapping -PublishingPage mypage.aspx -Folder c:\\\\temp -Overwrite" }, { "Id": 338, - "CommandName": "Export-PnPPageMapping", "Rank": 3, + "CommandName": "Export-PnPPageMapping", "Command": "Export-PnPPageMapping -BuiltInWebPartMapping -Folder c:\\\\temp -Overwrite" }, { "Id": 339, - "CommandName": "Export-PnPPowerApp", "Rank": 1, + "CommandName": "Export-PnPPowerApp", "Command": "Export-PnPPowerApp -Identity fba63225-baf9-4d76-86a1-1b42c917a182 -OutPath \"C:\\Users\\user1\\Downloads\\test_20230408152624.zip\"" }, { "Id": 340, - "CommandName": "Export-PnPPowerApp", "Rank": 2, + "CommandName": "Export-PnPPowerApp", "Command": "Export-PnPPowerApp -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Identity fba63225-baf9-4d76-86a1-1b42c917a182 -OutPath \"C:\\Users\\user1\\Downloads\\test_20230408152624.zip\" -PackageDisplayName \"MyAppDisplayName\" -PackageDescription \"Package exported using PnP Powershell\" -PackageCreatedBy \"Siddharth Vaghasia\" -PackageSourceEnvironment \"UAT Environment\"" }, { "Id": 341, - "CommandName": "Export-PnPTaxonomy", "Rank": 1, + "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy" }, { "Id": 342, - "CommandName": "Export-PnPTaxonomy", "Rank": 2, + "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt" }, { "Id": 343, - "CommandName": "Export-PnPTaxonomy", "Rank": 3, + "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254" }, { "Id": 344, - "CommandName": "Export-PnPTaxonomy", "Rank": 4, + "CommandName": "Export-PnPTaxonomy", "Command": "Export-PnPTaxonomy -Path c:\\output.txt -TermSetId f6f43025-7242-4f7a-b739-41fa32847254 -Lcid 1044" }, { "Id": 345, - "CommandName": "Export-PnPTermGroupToXml", "Rank": 1, + "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml" }, { "Id": 346, - "CommandName": "Export-PnPTermGroupToXml", "Rank": 2, + "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out output.xml" }, { "Id": 347, - "CommandName": "Export-PnPTermGroupToXml", "Rank": 3, + "CommandName": "Export-PnPTermGroupToXml", "Command": "Export-PnPTermGroupToXml -Out c:\\output.xml -Identity \"Test Group\"" }, { "Id": 348, - "CommandName": "Export-PnPUserInfo", "Rank": 1, + "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { "Id": 349, - "CommandName": "Export-PnPUserInfo", "Rank": 2, + "CommandName": "Export-PnPUserInfo", "Command": "Export-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\" | ConvertTo-Csv | Out-File MyFile.csv" }, { "Id": 350, - "CommandName": "Export-PnPUserProfile", "Rank": 1, + "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com" }, { "Id": 351, - "CommandName": "Export-PnPUserProfile", "Rank": 2, + "CommandName": "Export-PnPUserProfile", "Command": "Export-PnPUserProfile -LoginName user@domain.com | ConvertTo-Csv | Out-File MyFile.csv" }, { "Id": 352, - "CommandName": "Find-PnPFile", "Rank": 1, + "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Match *.master" }, { "Id": 353, - "CommandName": "Find-PnPFile", "Rank": 2, + "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -List \"Documents\" -Match *.pdf" }, { "Id": 354, - "CommandName": "Find-PnPFile", "Rank": 3, + "CommandName": "Find-PnPFile", "Command": "Find-PnPFile -Folder \"Shared Documents/Sub Folder\" -Match *.docx" }, { "Id": 355, - "CommandName": "Get-PnPAccessToken", "Rank": 1, + "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken" }, { "Id": 356, - "CommandName": "Get-PnPAccessToken", "Rank": 2, + "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -Decoded" }, { "Id": 357, - "CommandName": "Get-PnPAccessToken", "Rank": 3, + "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName SharePoint" }, { "Id": 358, - "CommandName": "Get-PnPAccessToken", "Rank": 4, + "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceTypeName ARM" }, { "Id": 359, - "CommandName": "Get-PnPAccessToken", "Rank": 5, + "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ResourceUrl \"https://management.azure.com/.default\"" }, { "Id": 360, - "CommandName": "Get-PnPAccessToken", "Rank": 6, + "CommandName": "Get-PnPAccessToken", "Command": "Get-PnPAccessToken -ListPermissionScopes" }, { "Id": 361, - "CommandName": "Get-PnPAlert", "Rank": 1, + "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert" }, { "Id": 362, - "CommandName": "Get-PnPAlert", "Rank": 2, + "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\"" }, { "Id": 363, - "CommandName": "Get-PnPAlert", "Rank": 3, + "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { "Id": 364, - "CommandName": "Get-PnPAlert", "Rank": 4, + "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -Title \"Demo Alert\"" }, { "Id": 365, - "CommandName": "Get-PnPAlert", "Rank": 5, + "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -AllUsers" }, { "Id": 366, - "CommandName": "Get-PnPAlert", "Rank": 6, + "CommandName": "Get-PnPAlert", "Command": "Get-PnPAlert -List \"Demo List\" -AllUsers" }, { "Id": 367, - "CommandName": "Get-PnPApp", "Rank": 1, + "CommandName": "Get-PnPApp", "Command": "Get-PnPApp" }, { "Id": 368, - "CommandName": "Get-PnPApp", "Rank": 2, + "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Scope Site" }, { "Id": 369, - "CommandName": "Get-PnPApp", "Rank": 3, + "CommandName": "Get-PnPApp", "Command": "Get-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { "Id": 370, - "CommandName": "Get-PnPAppErrors", "Rank": 1, + "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b" }, { "Id": 371, - "CommandName": "Get-PnPAppErrors", "Rank": 2, + "CommandName": "Get-PnPAppErrors", "Command": "Get-PnPAppErrors -ProductId a2681b0c-84fe-41bf-9a8e-d480ab81ba7b -StartTimeInUtc (Get-Date).AddHours(-1).ToUniversalTime()" }, { "Id": 372, - "CommandName": "Get-PnPAppInfo", "Rank": 1, + "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \"Excel Service\"" }, { "Id": 373, - "CommandName": "Get-PnPAppInfo", "Rank": 2, + "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { "Id": 374, - "CommandName": "Get-PnPAppInfo", "Rank": 3, + "CommandName": "Get-PnPAppInfo", "Command": "Get-PnPAppInfo -Name \" \" | Sort -Property Name" }, { "Id": 375, - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer" }, { "Id": 376, - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { "Id": 377, - "CommandName": "Get-PnPApplicationCustomizer", "Rank": 3, + "CommandName": "Get-PnPApplicationCustomizer", "Command": "Get-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope Web" }, { "Id": 378, - "CommandName": "Get-PnPAuditing", "Rank": 1, + "CommandName": "Get-PnPAuditing", "Command": "Get-PnPAuditing" }, { "Id": 379, - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 1, + "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm" }, { "Id": 380, - "CommandName": "Get-PnPAuthenticationRealm", "Rank": 2, + "CommandName": "Get-PnPAuthenticationRealm", "Command": "Get-PnPAuthenticationRealm -Url \"https://contoso.sharepoint.com\"" }, { "Id": 381, - "CommandName": "Get-PnPAvailableLanguage", "Rank": 1, + "CommandName": "Get-PnPAvailableLanguage", "Command": "Get-PnPAvailableLanguage" }, { "Id": 382, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 1, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel" }, { "Id": 383, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 2, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -User johndoe@tenant.onmicrosoft.com" }, { "Id": 384, - "CommandName": "Get-PnPAvailableSensitivityLabel", "Rank": 3, + "CommandName": "Get-PnPAvailableSensitivityLabel", "Command": "Get-PnPAvailableSensitivityLabel -Identity 47e66706-8627-4979-89f1-fa7afeba2884" }, { "Id": 385, - "CommandName": "Get-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Get-PnPAvailableSiteClassification", "Command": "Get-PnPAvailableSiteClassification" }, { "Id": 386, - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 1, + "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal" }, { "Id": 387, - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 2, + "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -IncludeSubsites" }, { "Id": 388, - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 3, + "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope Tenant" }, { "Id": 389, - "CommandName": "Get-PnPAzureACSPrincipal", "Rank": 4, + "CommandName": "Get-PnPAzureACSPrincipal", "Command": "Get-PnPAzureACSPrincipal -Scope All -IncludeSubsites" }, { "Id": 390, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit" }, { "Id": 391, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Identity \"Directory_c3b82411-5445-4620-aace-6a684a252673_02R72_362975819\"" }, { "Id": 392, - "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportDirectoryAudit", "Command": "Get-PnPAzureADActivityReportDirectoryAudit -Filter \"activityDateTime le 2018-01-24\"" }, { "Id": 393, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 1, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn" }, { "Id": 394, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 2, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Identity \"da364266-533d-3186-a8b2-44ee1c21af11\"" }, { "Id": 395, - "CommandName": "Get-PnPAzureADActivityReportSignIn", "Rank": 3, + "CommandName": "Get-PnPAzureADActivityReportSignIn", "Command": "Get-PnPAzureADActivityReportSignIn -Filter \"startsWith(appDisplayName,'Graph')\"" }, { "Id": 396, - "CommandName": "Get-PnPAzureADApp", "Rank": 1, + "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp" }, { "Id": 397, - "CommandName": "Get-PnPAzureADApp", "Rank": 2, + "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity MyApp" }, { "Id": 398, - "CommandName": "Get-PnPAzureADApp", "Rank": 3, + "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { "Id": 399, - "CommandName": "Get-PnPAzureADApp", "Rank": 4, + "CommandName": "Get-PnPAzureADApp", "Command": "Get-PnPAzureADApp -Filter \"startswith(description, 'contoso')\"" }, { "Id": 400, - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 1, + "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission" }, { "Id": 401, - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 2, + "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity MyApp" }, { "Id": 402, - "CommandName": "Get-PnPAzureADAppPermission", "Rank": 3, + "CommandName": "Get-PnPAzureADAppPermission", "Command": "Get-PnPAzureADAppPermission -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { "Id": 403, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission" }, { "Id": 404, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -Site https://contoso.sharepoint.com/sites/projects" }, { "Id": 405, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 3, + "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -PermissionId TowaS50fG1zLnNwLmV4dHwxYxNmI0OTI1" }, { "Id": 406, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 4, + "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"Test App\"" }, { "Id": 407, - "CommandName": "Get-PnPAzureADAppSitePermission", "Rank": 5, + "CommandName": "Get-PnPAzureADAppSitePermission", "Command": "Get-PnPAzureADAppSitePermission -AppIdentity \"14effc36-dc8b-4f68-8919-f6beb7d847b3\"" }, { "Id": 408, - "CommandName": "Get-PnPAzureADGroup", "Rank": 1, + "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup" }, { "Id": 409, - "CommandName": "Get-PnPAzureADGroup", "Rank": 2, + "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupId" }, { "Id": 410, - "CommandName": "Get-PnPAzureADGroup", "Rank": 3, + "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupDisplayName" }, { "Id": 411, - "CommandName": "Get-PnPAzureADGroup", "Rank": 4, + "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $groupSiteMailNickName" }, { "Id": 412, - "CommandName": "Get-PnPAzureADGroup", "Rank": 5, + "CommandName": "Get-PnPAzureADGroup", "Command": "Get-PnPAzureADGroup -Identity $group" }, { "Id": 413, - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $groupId" }, { "Id": 414, - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 2, + "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $group" }, { "Id": 415, - "CommandName": "Get-PnPAzureADGroupMember", "Rank": 3, + "CommandName": "Get-PnPAzureADGroupMember", "Command": "Get-PnPAzureADGroupMember -Identity $group -Transitive" }, { "Id": 416, - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $groupId" }, { "Id": 417, - "CommandName": "Get-PnPAzureADGroupOwner", "Rank": 2, + "CommandName": "Get-PnPAzureADGroupOwner", "Command": "Get-PnPAzureADGroupOwner -Identity $group" }, { "Id": 418, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal" }, { "Id": 419, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppId b8c2a8aa-33a0-43f4-a9d3-fe2851c5293e" }, { "Id": 420, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 3, + "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -ObjectId 06ca9985-367a-41ba-9c44-b2ed88c19aec" }, { "Id": 421, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 4, + "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -AppName \"My application\"" }, { "Id": 422, - "CommandName": "Get-PnPAzureADServicePrincipal", "Rank": 5, + "CommandName": "Get-PnPAzureADServicePrincipal", "Command": "Get-PnPAzureADServicePrincipal -Filter \"startswith(description, 'contoso')\"" }, { "Id": 423, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { "Id": 424, - "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Get-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { "Id": 425, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 1, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { "Id": 426, - "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Rank": 2, + "CommandName": "Get-PnPAzureADServicePrincipalAvailableAppRole", "Command": "Get-PnPAzureADServicePrincipalAvailableAppRole -Principal \"My application\"" }, { "Id": 427, - "CommandName": "Get-PnPAzureADUser", "Rank": 1, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser" }, { "Id": 428, - "CommandName": "Get-PnPAzureADUser", "Rank": 2, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -EndIndex 50" }, { "Id": 429, - "CommandName": "Get-PnPAzureADUser", "Rank": 3, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { "Id": 430, - "CommandName": "Get-PnPAzureADUser", "Rank": 4, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com" }, { "Id": 431, - "CommandName": "Get-PnPAzureADUser", "Rank": 5, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Identity john@contoso.com -Select \"DisplayName\",\"extension_3721d05137db455ad81aa442e3c2d4f9_extensionAttribute1\"" }, { "Id": 432, - "CommandName": "Get-PnPAzureADUser", "Rank": 6, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"accountEnabled eq false\"" }, { "Id": 433, - "CommandName": "Get-PnPAzureADUser", "Rank": 7, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Filter \"startswith(DisplayName, 'John')\" -OrderBy \"DisplayName\"" }, { "Id": 434, - "CommandName": "Get-PnPAzureADUser", "Rank": 8, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta" }, { "Id": 435, - "CommandName": "Get-PnPAzureADUser", "Rank": 9, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -Delta -DeltaToken abcdef" }, { "Id": 436, - "CommandName": "Get-PnPAzureADUser", "Rank": 10, + "CommandName": "Get-PnPAzureADUser", "Command": "Get-PnPAzureADUser -StartIndex 10 -EndIndex 20" }, { "Id": 437, - "CommandName": "Get-PnPAzureCertificate", "Rank": 1, + "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\"" }, { "Id": 438, - "CommandName": "Get-PnPAzureCertificate", "Rank": 2, + "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.pfx\" -Password (ConvertTo-SecureString -String \"YourPassword\" -AsPlainText -Force)" }, { "Id": 439, - "CommandName": "Get-PnPAzureCertificate", "Rank": 3, + "CommandName": "Get-PnPAzureCertificate", "Command": "Get-PnPAzureCertificate -Path \"mycert.cer\" | clip" }, { "Id": 440, - "CommandName": "Get-PnPBrandCenterConfig", "Rank": 1, + "CommandName": "Get-PnPBrandCenterConfig", "Command": "Get-PnPBrandCenterConfig" }, { "Id": 441, - "CommandName": "Get-PnPBrandCenterFont", "Rank": 1, + "CommandName": "Get-PnPBrandCenterFont", "Command": "Get-PnPBrandCenterFont" }, { "Id": 442, - "CommandName": "Get-PnPBrandCenterFontPackage", "Rank": 1, + "CommandName": "Get-PnPBrandCenterFontPackage", "Command": "Get-PnPBrandCenterFontPackage" }, { "Id": 443, - "CommandName": "Get-PnPBrandCenterFontPackage", "Rank": 2, + "CommandName": "Get-PnPBrandCenterFontPackage", "Command": "Get-PnPBrandCenterFontPackage -Store Site" }, { "Id": 444, - "CommandName": "Get-PnPBrandCenterFontPackage", "Rank": 3, + "CommandName": "Get-PnPBrandCenterFontPackage", "Command": "Get-PnPBrandCenterFontPackage -Identity \"My awesome font\"" }, { "Id": 445, - "CommandName": "Get-PnPBrandCenterFontPackage", "Rank": 4, + "CommandName": "Get-PnPBrandCenterFontPackage", "Command": "Get-PnPBrandCenterFontPackage -Identity \"2812cbd8-7176-4e45-8911-6a063f89a1f1\"" }, { "Id": 446, - "CommandName": "Get-PnPBrowserIdleSignout", "Rank": 1, + "CommandName": "Get-PnPBrowserIdleSignout", "Command": "Get-PnPBrowserIdleSignout" }, { "Id": 447, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 1, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase" }, { "Id": 448, - "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Rank": 2, + "CommandName": "Get-PnPBuiltInDesignPackageVisibility", "Command": "Get-PnPBuiltInDesignPackageVisibility" }, { "Id": 449, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 1, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings" }, { "Id": 450, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 2, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344" }, { "Id": 451, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 3, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template CrisisManagement" }, { "Id": 452, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 4, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000" }, { "Id": 453, - "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Rank": 5, + "CommandName": "Get-PnPBuiltInSiteTemplateSettings", "Command": "Get-PnPBuiltInSiteTemplateSettings -Template All" }, { "Id": 454, - "CommandName": "Get-PnPChangeLog", "Rank": 1, + "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog" }, { "Id": 455, - "CommandName": "Get-PnPChangeLog", "Rank": 2, + "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog -Nightly" }, { "Id": 456, - "CommandName": "Get-PnPChangeLog", "Rank": 3, + "CommandName": "Get-PnPChangeLog", "Command": "Get-PnPChangeLog -Version 2.12.0" }, { "Id": 457, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 1, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1'" }, { "Id": 458, - "CommandName": "Get-PnPCompatibleHubContentTypes", "Rank": 2, + "CommandName": "Get-PnPCompatibleHubContentTypes", "Command": "Get-PnPCompatibleHubContentTypes -WebUrl 'https://contoso.sharepoint.com/web1' -ListUrl 'https://contoso.sharepoint.com/web1/Shared Documents'" }, { "Id": 459, - "CommandName": "Get-PnPContainer", "Rank": 1, + "CommandName": "Get-PnPContainer", "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996" }, { "Id": 460, - "CommandName": "Get-PnPContainer", "Rank": 2, + "CommandName": "Get-PnPContainer", "Command": "Get-PnPContainer -OwningApplicationId a187e399-0c36-4b98-8f04-1edc167a0996 -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" }, { "Id": 461, - "CommandName": "Get-PnPContainer", "Rank": 3, + "CommandName": "Get-PnPContainer", "Command": "Get-PnPContainer -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\" -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" }, { "Id": 462, - "CommandName": "Get-PnPContainerType", "Rank": 1, + "CommandName": "Get-PnPContainerType", "Command": "Get-PnPContainerType" }, { "Id": 463, - "CommandName": "Get-PnPContainerTypeConfiguration", "Rank": 1, + "CommandName": "Get-PnPContainerTypeConfiguration", "Command": "Get-PnPContainerTypeConfiguration -Identity a187e399-0c36-4b98-8f04-1edc167a0996" }, { "Id": 464, - "CommandName": "Get-PnPContentType", "Rank": 1, + "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType" }, { "Id": 465, - "CommandName": "Get-PnPContentType", "Rank": 2, + "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -InSiteHierarchy" }, { "Id": 466, - "CommandName": "Get-PnPContentType", "Rank": 3, + "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Identity \"Project Document\"" }, { "Id": 467, - "CommandName": "Get-PnPContentType", "Rank": 4, + "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -List \"Documents\"" }, { "Id": 468, - "CommandName": "Get-PnPContentType", "Rank": 5, + "CommandName": "Get-PnPContentType", "Command": "Get-PnPContentType -Includes \"SchemaXml\"" }, { "Id": 469, - "CommandName": "Get-PnPContentTypePublishingStatus", "Rank": 1, + "CommandName": "Get-PnPContentTypePublishingStatus", "Command": "Get-PnPContentTypePublishingStatus -ContentType 0x0101" }, { "Id": 470, - "CommandName": "Get-PnPCopilotAdminLimitedMode", "Rank": 1, + "CommandName": "Get-PnPCopilotAdminLimitedMode", "Command": "Get-PnPCopilotAdminLimitedMode" }, { "Id": 471, - "CommandName": "Get-PnPCopilotAgent", "Rank": 1, + "CommandName": "Get-PnPCopilotAgent", "Command": "Get-PnPCopilotAgent" }, { "Id": 472, - "CommandName": "Get-PnPCopilotAgent", "Rank": 2, + "CommandName": "Get-PnPCopilotAgent", "Command": "Get-PnPCopilotAgent -ServerRelativeUrl /sites/demo/siteassets/copilots/approved/main.agent" }, { "Id": 473, - "CommandName": "Get-PnPCustomAction", "Rank": 1, + "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction" }, { "Id": 474, - "CommandName": "Get-PnPCustomAction", "Rank": 2, + "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { "Id": 475, - "CommandName": "Get-PnPCustomAction", "Rank": 3, + "CommandName": "Get-PnPCustomAction", "Command": "Get-PnPCustomAction -Scope web" }, { "Id": 476, - "CommandName": "Get-PnPDeletedContainer", "Rank": 1, + "CommandName": "Get-PnPDeletedContainer", "Command": "Get-PnPDeletedContainer" }, { "Id": 477, - "CommandName": "Get-PnPDeletedFlow", "Rank": 1, + "CommandName": "Get-PnPDeletedFlow", "Command": "Get-PnPDeletedFlow" }, { "Id": 478, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group" }, { "Id": 479, - "CommandName": "Get-PnPDeletedMicrosoft365Group", "Rank": 2, + "CommandName": "Get-PnPDeletedMicrosoft365Group", "Command": "Get-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { "Id": 480, - "CommandName": "Get-PnPDeletedTeam", "Rank": 1, + "CommandName": "Get-PnPDeletedTeam", "Command": "Get-PnPDeletedTeam" }, { "Id": 481, - "CommandName": "Get-PnPDiagnostics", "Rank": 1, + "CommandName": "Get-PnPDiagnostics", "Command": "Get-PnPDiagnostics" }, { "Id": 482, - "CommandName": "Get-PnPDisableSpacesActivation", "Rank": 1, + "CommandName": "Get-PnPDisableSpacesActivation", "Command": "Get-PnPDisableSpacesActivation" }, { "Id": 483, - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 1, + "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"Test Document Set\"" }, { "Id": 484, - "CommandName": "Get-PnPDocumentSetTemplate", "Rank": 2, + "CommandName": "Get-PnPDocumentSetTemplate", "Command": "Get-PnPDocumentSetTemplate -Identity \"0x0120D520005DB65D094035A241BAC9AF083F825F3B\"" }, { "Id": 485, - "CommandName": "Get-PnPEnterpriseAppInsightsReport", "Rank": 1, + "CommandName": "Get-PnPEnterpriseAppInsightsReport", "Command": "Get-PnPEnterpriseAppInsightsReport" }, { "Id": 486, - "CommandName": "Get-PnPEnterpriseAppInsightsReport", "Rank": 2, + "CommandName": "Get-PnPEnterpriseAppInsightsReport", "Command": "Get-PnPEnterpriseAppInsightsReport -ReportId bed8845f-72ba-43ec-b1f3-844ff6a64f28" }, { "Id": 487, - "CommandName": "Get-PnPEnterpriseAppInsightsReport", "Rank": 3, + "CommandName": "Get-PnPEnterpriseAppInsightsReport", "Command": "Get-PnPEnterpriseAppInsightsReport -ReportId bed8845f-72ba-43ec-b1f3-844ff6a64f28 -Action Download" }, { "Id": 488, - "CommandName": "Get-PnPEventReceiver", "Rank": 1, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver" }, { "Id": 489, - "CommandName": "Get-PnPEventReceiver", "Rank": 2, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { "Id": 490, - "CommandName": "Get-PnPEventReceiver", "Rank": 3, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Identity MyReceiver" }, { "Id": 491, - "CommandName": "Get-PnPEventReceiver", "Rank": 4, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\"" }, { "Id": 492, - "CommandName": "Get-PnPEventReceiver", "Rank": 5, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { "Id": 493, - "CommandName": "Get-PnPEventReceiver", "Rank": 6, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -List \"ProjectList\" -Identity MyReceiver" }, { "Id": 494, - "CommandName": "Get-PnPEventReceiver", "Rank": 7, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Site" }, { "Id": 495, - "CommandName": "Get-PnPEventReceiver", "Rank": 8, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope Web" }, { "Id": 496, - "CommandName": "Get-PnPEventReceiver", "Rank": 9, + "CommandName": "Get-PnPEventReceiver", "Command": "Get-PnPEventReceiver -Scope All" }, { "Id": 497, - "CommandName": "Get-PnPException", "Rank": 1, + "CommandName": "Get-PnPException", "Command": "Get-PnPException" }, { "Id": 498, - "CommandName": "Get-PnPException", "Rank": 2, + "CommandName": "Get-PnPException", "Command": "Get-PnPException -All" }, { "Id": 499, - "CommandName": "Get-PnPExternalUser", "Rank": 1, + "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 0 -PageSize 2" }, { "Id": 500, - "CommandName": "Get-PnPExternalUser", "Rank": 2, + "CommandName": "Get-PnPExternalUser", "Command": "Get-PnPExternalUser -Position 2 -PageSize 2" }, { "Id": 501, - "CommandName": "Get-PnPFeature", "Rank": 1, + "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature" }, { "Id": 502, - "CommandName": "Get-PnPFeature", "Rank": 2, + "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Scope Site" }, { "Id": 503, - "CommandName": "Get-PnPFeature", "Rank": 3, + "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { "Id": 504, - "CommandName": "Get-PnPFeature", "Rank": 4, + "CommandName": "Get-PnPFeature", "Command": "Get-PnPFeature -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22 -Scope Site" }, { "Id": 505, - "CommandName": "Get-PnPField", "Rank": 1, + "CommandName": "Get-PnPField", "Command": "Get-PnPField" }, { "Id": 506, - "CommandName": "Get-PnPField", "Rank": 2, + "CommandName": "Get-PnPField", "Command": "Get-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { "Id": 507, - "CommandName": "Get-PnPField", "Rank": 3, + "CommandName": "Get-PnPField", "Command": "Get-PnPField -Group \"Custom Columns\"" }, { "Id": 508, - "CommandName": "Get-PnPFile", "Rank": 1, + "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/project/Shared Documents/Document.docx\"" }, { "Id": 509, - "CommandName": "Get-PnPFile", "Rank": 2, + "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"https://contoso.sharepoint.com/sites/project/Shared Documents/Document.docx\"" }, { "Id": 510, - "CommandName": "Get-PnPFile", "Rank": 3, + "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/SiteAssets/image.jpg -Path c:\\temp -FileName image.jpg -AsFile" }, { "Id": 511, - "CommandName": "Get-PnPFile", "Rank": 4, + "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsString" }, { "Id": 512, - "CommandName": "Get-PnPFile", "Rank": 5, + "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/Shared Documents/Folder/Presentation.pptx -AsFileObject" }, { "Id": 513, - "CommandName": "Get-PnPFile", "Rank": 6, + "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /sites/project/_catalogs/themes/15/company.spcolor -AsListItem" }, { "Id": 514, - "CommandName": "Get-PnPFile", "Rank": 7, + "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url /personal/john_tenant_onmicrosoft_com/Documents/Sample.xlsx -Path c:\\temp -FileName Project.xlsx -AsFile" }, { "Id": 515, - "CommandName": "Get-PnPFile", "Rank": 8, + "CommandName": "Get-PnPFile", "Command": "Get-PnPFile -Url \"/sites/templates/Shared Documents/HR Site.pnp\" -AsMemoryStream" }, { "Id": 516, - "CommandName": "Get-PnPFileAnalyticsData", "Rank": 1, + "CommandName": "Get-PnPFileAnalyticsData", "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\"" }, { "Id": 517, - "CommandName": "Get-PnPFileAnalyticsData", "Rank": 2, + "CommandName": "Get-PnPFileAnalyticsData", "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -LastSevenDays" }, { "Id": 518, - "CommandName": "Get-PnPFileAnalyticsData", "Rank": 3, + "CommandName": "Get-PnPFileAnalyticsData", "Command": "Get-PnPFileAnalyticsData -Url \"/sites/project/Shared Documents/Document.docx\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" }, { "Id": 519, - "CommandName": "Get-PnPFileCheckedOut", "Rank": 1, + "CommandName": "Get-PnPFileCheckedOut", "Command": "Get-PnPFileCheckedOut -List \"Documents\"" }, { "Id": 520, - "CommandName": "Get-PnPFileInFolder", "Rank": 1, + "CommandName": "Get-PnPFileInFolder", "Command": "Get-PnPFileInFolder" }, { "Id": 521, - "CommandName": "Get-PnPFileInFolder", "Rank": 2, + "CommandName": "Get-PnPFileInFolder", "Command": "Get-PnPFileInFolder -Recurse" }, { "Id": 522, - "CommandName": "Get-PnPFileInFolder", "Rank": 3, + "CommandName": "Get-PnPFileInFolder", "Command": "Get-PnPFileInFolder -Identity \"Shared Documents\"" }, { "Id": 523, - "CommandName": "Get-PnPFileInFolder", "Rank": 4, + "CommandName": "Get-PnPFileInFolder", "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { "Id": 524, - "CommandName": "Get-PnPFileInFolder", "Rank": 5, + "CommandName": "Get-PnPFileInFolder", "Command": "Get-PnPFileInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" }, { "Id": 525, - "CommandName": "Get-PnPFileRetentionLabel", "Rank": 1, + "CommandName": "Get-PnPFileRetentionLabel", "Command": "Get-PnPFileRetentionLabel -Url \"/sites/Marketing/Shared Documents/Report.pptx\"" }, { "Id": 526, - "CommandName": "Get-PnPFileSensitivityLabel", "Rank": 1, + "CommandName": "Get-PnPFileSensitivityLabel", "Command": "Get-PnPFileSensitivityLabel -Url \"/sites/Marketing/Shared Documents/Report.pptx\"" }, { "Id": 527, - "CommandName": "Get-PnPFileSensitivityLabelInfo", "Rank": 1, + "CommandName": "Get-PnPFileSensitivityLabelInfo", "Command": "Get-PnPFileSensitivityLabelInfo -Url \"https://contoso.sharepoint.com/sites/Marketing/Shared Documents/Report.pdf\"" }, { "Id": 528, - "CommandName": "Get-PnPFileSharingLink", "Rank": 1, + "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -Identity \"/sites/demo/Shared Documents/Test.docx\"" }, { "Id": 529, - "CommandName": "Get-PnPFileSharingLink", "Rank": 2, + "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -Identity eff4c8ca-7b92-4aa2-9744-855611c6ccf2" }, { "Id": 530, - "CommandName": "Get-PnPFileSharingLink", "Rank": 3, + "CommandName": "Get-PnPFileSharingLink", "Command": "Get-PnPFileSharingLink -Identity /sites/demo/Lists/Issue tracker/1_.000" }, { "Id": 531, - "CommandName": "Get-PnPFileVersion", "Rank": 1, + "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url Documents/MyDocument.docx" }, { "Id": 532, - "CommandName": "Get-PnPFileVersion", "Rank": 2, + "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url \"/sites/marketing/Shared Documents/MyDocument.docx\"" }, { "Id": 533, - "CommandName": "Get-PnPFileVersion", "Rank": 3, + "CommandName": "Get-PnPFileVersion", "Command": "Get-PnPFileVersion -Url \"/sites/marketing/Shared Documents/MyDocument.docx\" -UseVersionExpirationReport" }, { "Id": 534, - "CommandName": "Get-PnPFlow", "Rank": 1, + "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -AsAdmin" }, { "Id": 535, - "CommandName": "Get-PnPFlow", "Rank": 2, + "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -SharingStatus SharedWithMe" }, { "Id": 536, - "CommandName": "Get-PnPFlow", "Rank": 3, + "CommandName": "Get-PnPFlow", "Command": "Get-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { "Id": 537, - "CommandName": "Get-PnPFlowOwner", "Rank": 1, + "CommandName": "Get-PnPFlowOwner", "Command": "Get-PnPFlowOwner -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { "Id": 538, - "CommandName": "Get-PnPFlowOwner", "Rank": 2, + "CommandName": "Get-PnPFlowOwner", "Command": "Get-PnPFlowOwner -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Identity 33f78dac-7e93-45de-ab85-67cad0f6ee30" }, { "Id": 539, - "CommandName": "Get-PnPFlowRun", "Rank": 1, + "CommandName": "Get-PnPFlowRun", "Command": "Get-PnPFlowRun -Flow fba63225-baf9-4d76-86a1-1b42c917a182" }, { "Id": 540, - "CommandName": "Get-PnPFlowRun", "Rank": 2, + "CommandName": "Get-PnPFlowRun", "Command": "Get-PnPFlowRun -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Flow fba63225-baf9-4d76-86a1-1b42c917a182 -Identity 08585531682024670884771461819CU230" }, { "Id": 541, - "CommandName": "Get-PnPFolder", "Rank": 1, + "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder" }, { "Id": 542, - "CommandName": "Get-PnPFolder", "Rank": 2, + "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -CurrentWebRootFolder" }, { "Id": 543, - "CommandName": "Get-PnPFolder", "Rank": 3, + "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"Shared Documents\"" }, { "Id": 544, - "CommandName": "Get-PnPFolder", "Rank": 4, + "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents\"" }, { "Id": 545, - "CommandName": "Get-PnPFolder", "Rank": 5, + "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -ListRootFolder \"Shared Documents\"" }, { "Id": 546, - "CommandName": "Get-PnPFolder", "Rank": 6, + "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -List \"Shared Documents\"" }, { "Id": 547, - "CommandName": "Get-PnPFolder", "Rank": 7, + "CommandName": "Get-PnPFolder", "Command": "Get-PnPFolder -Url \"/sites/demo/Shared Documents/Test\" -AsListItem" }, { "Id": 548, - "CommandName": "Get-PnPFolderInFolder", "Rank": 1, + "CommandName": "Get-PnPFolderInFolder", "Command": "Get-PnPFolderInFolder" }, { "Id": 549, - "CommandName": "Get-PnPFolderInFolder", "Rank": 2, + "CommandName": "Get-PnPFolderInFolder", "Command": "Get-PnPFolderInFolder -Recurse" }, { "Id": 550, - "CommandName": "Get-PnPFolderInFolder", "Rank": 3, + "CommandName": "Get-PnPFolderInFolder", "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\"" }, { "Id": 551, - "CommandName": "Get-PnPFolderInFolder", "Rank": 4, + "CommandName": "Get-PnPFolderInFolder", "Command": "Get-PnPFolderInFolder -Identity \"Shared Documents\" -ExcludeSystemFolders" }, { "Id": 552, - "CommandName": "Get-PnPFolderInFolder", "Rank": 5, + "CommandName": "Get-PnPFolderInFolder", "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"Shared Documents\" -ItemName \"Templates\"" }, { "Id": 553, - "CommandName": "Get-PnPFolderInFolder", "Rank": 6, + "CommandName": "Get-PnPFolderInFolder", "Command": "Get-PnPFolderInFolder -FolderSiteRelativeUrl \"SitePages\" -Recurse" }, { "Id": 554, - "CommandName": "Get-PnPFolderItem", "Rank": 1, + "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem" }, { "Id": 555, - "CommandName": "Get-PnPFolderItem", "Rank": 2, + "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Recurse" }, { "Id": 556, - "CommandName": "Get-PnPFolderItem", "Rank": 3, + "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -Identity \"Shared Documents\"" }, { "Id": 557, - "CommandName": "Get-PnPFolderItem", "Rank": 4, + "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemName \"Default.aspx\"" }, { "Id": 558, - "CommandName": "Get-PnPFolderItem", "Rank": 5, + "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -ItemType Folder" }, { "Id": 559, - "CommandName": "Get-PnPFolderItem", "Rank": 6, + "CommandName": "Get-PnPFolderItem", "Command": "Get-PnPFolderItem -FolderSiteRelativeUrl \"SitePages\" -Recursive" }, { "Id": 560, - "CommandName": "Get-PnPFolderSharingLink", "Rank": 1, + "CommandName": "Get-PnPFolderSharingLink", "Command": "Get-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { "Id": 561, - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 1, + "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric" }, { "Id": 562, - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 2, + "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -List \"Documents\"" }, { "Id": 563, - "CommandName": "Get-PnPFolderStorageMetric", "Rank": 3, + "CommandName": "Get-PnPFolderStorageMetric", "Command": "Get-PnPFolderStorageMetric -FolderSiteRelativeUrl \"Shared Documents\"" }, { "Id": 564, - "CommandName": "Get-PnPFooter", "Rank": 1, + "CommandName": "Get-PnPFooter", "Command": "Get-PnPFooter" }, { "Id": 565, - "CommandName": "Get-PnPGraphSubscription", "Rank": 1, + "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription" }, { "Id": 566, - "CommandName": "Get-PnPGraphSubscription", "Rank": 2, + "CommandName": "Get-PnPGraphSubscription", "Command": "Get-PnPGraphSubscription -Identity 328c7693-5524-44ac-a946-73e02d6b0f98" }, { "Id": 567, - "CommandName": "Get-PnPGroup", "Rank": 1, + "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup" }, { "Id": 568, - "CommandName": "Get-PnPGroup", "Rank": 2, + "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -Identity 'My Site Users'" }, { "Id": 569, - "CommandName": "Get-PnPGroup", "Rank": 3, + "CommandName": "Get-PnPGroup", "Command": "Get-PnPGroup -AssociatedMemberGroup" }, { "Id": 570, - "CommandName": "Get-PnPGroupMember", "Rank": 1, + "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\"" }, { "Id": 571, - "CommandName": "Get-PnPGroupMember", "Rank": 2, + "CommandName": "Get-PnPGroupMember", "Command": "Get-PnPGroupMember -Group \"Marketing Site Members\" -User \"manager@domain.com\"" }, { "Id": 572, - "CommandName": "Get-PnPGroupPermissions", "Rank": 1, + "CommandName": "Get-PnPGroupPermissions", "Command": "Get-PnPGroupPermissions -Identity 'My Site Members'" }, { "Id": 573, - "CommandName": "Get-PnPHideDefaultThemes", "Rank": 1, + "CommandName": "Get-PnPHideDefaultThemes", "Command": "Get-PnPHideDefaultThemes" }, { "Id": 574, - "CommandName": "Get-PnPHomePage", "Rank": 1, + "CommandName": "Get-PnPHomePage", "Command": "Get-PnPHomePage" }, { "Id": 575, - "CommandName": "Get-PnPHomeSite", "Rank": 1, + "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite" }, { "Id": 576, - "CommandName": "Get-PnPHomeSite", "Rank": 2, + "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -IsVivaConnectionsDefaultStartForCompanyPortalSiteEnabled" }, { "Id": 577, - "CommandName": "Get-PnPHomeSite", "Rank": 3, + "CommandName": "Get-PnPHomeSite", "Command": "Get-PnPHomeSite -Detailed" }, { "Id": 578, - "CommandName": "Get-PnPHubSite", "Rank": 1, + "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite" }, { "Id": 579, - "CommandName": "Get-PnPHubSite", "Rank": 2, + "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { "Id": 580, - "CommandName": "Get-PnPHubSite", "Rank": 3, + "CommandName": "Get-PnPHubSite", "Command": "Get-PnPHubSite -Identity \"bc07d4b8-1c2f-4184-8cc2-a52dfd6fe0c4\"" }, { "Id": 581, - "CommandName": "Get-PnPHubSiteChild", "Rank": 1, + "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild" }, { "Id": 582, - "CommandName": "Get-PnPHubSiteChild", "Rank": 2, + "CommandName": "Get-PnPHubSiteChild", "Command": "Get-PnPHubSiteChild -Identity \"https://contoso.sharepoint.com/sites/myhubsite\"" }, { "Id": 583, - "CommandName": "Get-PnPInPlaceRecordsManagement", "Rank": 1, + "CommandName": "Get-PnPInPlaceRecordsManagement", "Command": "Get-PnPInPlaceRecordsManagement" }, { "Id": 584, - "CommandName": "Get-PnPIsSiteAliasAvailable", "Rank": 1, + "CommandName": "Get-PnPIsSiteAliasAvailable", "Command": "Get-PnPIsSiteAliasAvailable -Identity \"HR\"" }, { "Id": 585, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink" }, { "Id": 586, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope All" }, { "Id": 587, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 3, + "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Web" }, { "Id": 588, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 4, + "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Scope Site" }, { "Id": 589, - "CommandName": "Get-PnPJavaScriptLink", "Rank": 5, + "CommandName": "Get-PnPJavaScriptLink", "Command": "Get-PnPJavaScriptLink -Name Test" }, { "Id": 590, - "CommandName": "Get-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Get-PnPKnowledgeHubSite", "Command": "Get-PnPKnowledgeHubSite" }, { "Id": 591, - "CommandName": "Get-PnPLargeListOperationStatus", "Rank": 1, + "CommandName": "Get-PnPLargeListOperationStatus", "Command": "Get-PnPLargeListOperationStatus -Identity 9ea5d197-2227-4156-9ae1-725d74dc029d -OperationId 924e6a34-5c90-4d0d-8083-2efc6d1cf481" }, { "Id": 592, - "CommandName": "Get-PnPLibraryFileVersionBatchDeleteJobStatus", "Rank": 1, + "CommandName": "Get-PnPLibraryFileVersionBatchDeleteJobStatus", "Command": "Get-PnPLibraryFileVersionBatchDeleteJobStatus -Identity \"Documents\"" }, { "Id": 593, - "CommandName": "Get-PnPLibraryFileVersionExpirationReportJobStatus", "Rank": 1, + "CommandName": "Get-PnPLibraryFileVersionExpirationReportJobStatus", "Command": "Get-PnPLibraryFileVersionExpirationReportJobStatus -Identity \"Documents\" -ReportUrl \"https://contoso.sharepoint.com/sites/reports/MyReports/VersionReport.csv\"" }, { "Id": 594, - "CommandName": "Get-PnPList", "Rank": 1, + "CommandName": "Get-PnPList", "Command": "Get-PnPList" }, { "Id": 595, - "CommandName": "Get-PnPList", "Rank": 2, + "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { "Id": 596, - "CommandName": "Get-PnPList", "Rank": 3, + "CommandName": "Get-PnPList", "Command": "Get-PnPList -Identity Lists/Announcements" }, { "Id": 597, - "CommandName": "Get-PnPList", "Rank": 4, + "CommandName": "Get-PnPList", "Command": "Get-PnPList | Where-Object {$_.RootFolder.ServerRelativeUrl -like \"/lists/*\"}" }, { "Id": 598, - "CommandName": "Get-PnPList", "Rank": 5, + "CommandName": "Get-PnPList", "Command": "Get-PnPList -Includes HasUniqueRoleAssignments" }, { "Id": 599, - "CommandName": "Get-PnPListDesign", "Rank": 1, + "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign" }, { "Id": 600, - "CommandName": "Get-PnPListDesign", "Rank": 2, + "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { "Id": 601, - "CommandName": "Get-PnPListDesign", "Rank": 3, + "CommandName": "Get-PnPListDesign", "Command": "Get-PnPListDesign -Identity ListEvent" }, { "Id": 602, - "CommandName": "Get-PnPListInformationRightsManagement", "Rank": 1, + "CommandName": "Get-PnPListInformationRightsManagement", "Command": "Get-PnPListInformationRightsManagement -List \"Documents\"" }, { "Id": 603, - "CommandName": "Get-PnPListItem", "Rank": 1, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks" }, { "Id": 604, - "CommandName": "Get-PnPListItem", "Rank": 2, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1" }, { "Id": 605, - "CommandName": "Get-PnPListItem", "Rank": 3, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -UniqueId bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3" }, { "Id": 606, - "CommandName": "Get-PnPListItem", "Rank": 4, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"bd6c5b3b-d960-4ee7-a02c-85dc6cd78cc3\"" }, { "Id": 607, - "CommandName": "Get-PnPListItem", "Rank": 5, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Query \"\"" }, { "Id": 608, - "CommandName": "Get-PnPListItem", "Rank": 6, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000" }, { "Id": 609, - "CommandName": "Get-PnPListItem", "Rank": 7, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -PageSize 1000 -ScriptBlock { Param($items) $items.Context.ExecuteQuery() } | ForEach-Object { $_.BreakRoleInheritance($true, $true) }" }, { "Id": 610, - "CommandName": "Get-PnPListItem", "Rank": 8, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Samples -FolderServerRelativeUrl \"/sites/contosomarketing/Lists/Samples/Demo\"" }, { "Id": 611, - "CommandName": "Get-PnPListItem", "Rank": 9, + "CommandName": "Get-PnPListItem", "Command": "Get-PnPListItem -List Tasks -Id 1 -IncludeContentType" }, { "Id": 612, - "CommandName": "Get-PnPListItemAttachment", "Rank": 1, + "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\"" }, { "Id": 613, - "CommandName": "Get-PnPListItemAttachment", "Rank": 2, + "CommandName": "Get-PnPListItemAttachment", "Command": "Get-PnPListItemAttachment -List \"Demo List\" -Identity 1 -Path \"C:\\temp\" -Force" }, { "Id": 614, - "CommandName": "Get-PnPListItemComment", "Rank": 1, + "CommandName": "Get-PnPListItemComment", "Command": "Get-PnPListItemComment -List Tasks -Identity 1" }, { "Id": 615, - "CommandName": "Get-PnPListItemPermission", "Rank": 1, + "CommandName": "Get-PnPListItemPermission", "Command": "Get-PnPListItemPermission -List 'Documents' -Identity 1" }, { "Id": 616, - "CommandName": "Get-PnPListItemVersion", "Rank": 1, + "CommandName": "Get-PnPListItemVersion", "Command": "Get-PnPListItemVersion -List \"Demo List\" -Identity 1" }, { "Id": 617, - "CommandName": "Get-PnPListPermissions", "Rank": 1, + "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId 60" }, { "Id": 618, - "CommandName": "Get-PnPListPermissions", "Rank": 2, + "CommandName": "Get-PnPListPermissions", "Command": "Get-PnPListPermissions -Identity DemoList -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { "Id": 619, - "CommandName": "Get-PnPListRecordDeclaration", "Rank": 1, + "CommandName": "Get-PnPListRecordDeclaration", "Command": "Get-PnPListRecordDeclaration -List \"Documents\"" }, { "Id": 620, - "CommandName": "Get-PnPManagedAppId", "Rank": 1, + "CommandName": "Get-PnPManagedAppId", "Command": "Get-PnPManagedAppId -Url https://yourtenant.sharepoint.com" }, { "Id": 621, - "CommandName": "Get-PnPMasterPage", "Rank": 1, + "CommandName": "Get-PnPMasterPage", "Command": "Get-PnPMasterPage" }, { "Id": 622, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 1, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement" }, { "Id": 623, - "CommandName": "Get-PnPMessageCenterAnnouncement", "Rank": 2, + "CommandName": "Get-PnPMessageCenterAnnouncement", "Command": "Get-PnPMessageCenterAnnouncement -Identity \"MC123456\"" }, { "Id": 624, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup" }, { "Id": 625, - "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365ExpiringGroup", "Command": "Get-PnPMicrosoft365ExpiringGroup -Limit 93" }, { "Id": 626, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group" }, { "Id": 627, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupId" }, { "Id": 628, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupDisplayName" }, { "Id": 629, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $groupSiteMailNickName" }, { "Id": 630, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -Identity $group" }, { "Id": 631, - "CommandName": "Get-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "Get-PnPMicrosoft365Group", "Command": "Get-PnPMicrosoft365Group -IncludeSiteUrl" }, { "Id": 632, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint" }, { "Id": 633, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity \"IT Team\"" }, { "Id": 634, - "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupEndpoint", "Command": "Get-PnPMicrosoft365GroupEndpoint -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { "Id": 635, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $groupId" }, { "Id": 636, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity $group" }, { "Id": 637, - "CommandName": "Get-PnPMicrosoft365GroupMember", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupMember", "Command": "Get-PnPMicrosoft365GroupMember -Identity \"Sales\" | Where-Object UserType -eq Guest" }, { "Id": 638, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $groupId" }, { "Id": 639, - "CommandName": "Get-PnPMicrosoft365GroupOwner", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupOwner", "Command": "Get-PnPMicrosoft365GroupOwner -Identity $group" }, { "Id": 640, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings" }, { "Id": 641, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId" }, { "Id": 642, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -GroupSetting $groupSettingId" }, { "Id": 643, - "CommandName": "Get-PnPMicrosoft365GroupSettings", "Rank": 4, + "CommandName": "Get-PnPMicrosoft365GroupSettings", "Command": "Get-PnPMicrosoft365GroupSettings -Identity $groupId -GroupSetting $groupSettingId" }, { "Id": 644, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates" }, { "Id": 645, - "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupSettingTemplates", "Command": "Get-PnPMicrosoft365GroupSettingTemplates -Identity \"08d542b9-071f-4e16-94b0-74abb372e3d9\"" }, { "Id": 646, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam" }, { "Id": 647, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity \"IT Team\"" }, { "Id": 648, - "CommandName": "Get-PnPMicrosoft365GroupTeam", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupTeam", "Command": "Get-PnPMicrosoft365GroupTeam -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { "Id": 649, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity" }, { "Id": 650, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity \"IT Community\"" }, { "Id": 651, - "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365GroupYammerCommunity", "Command": "Get-PnPMicrosoft365GroupYammerCommunity -Identity e6212531-7f09-4c3b-bc2e-12cae26fb409" }, { "Id": 652, - "CommandName": "Get-PnPMicrosoft365Roadmap", "Rank": 1, + "CommandName": "Get-PnPMicrosoft365Roadmap", "Command": "Get-PnPMicrosoft365Roadmap" }, { "Id": 653, - "CommandName": "Get-PnPMicrosoft365Roadmap", "Rank": 2, + "CommandName": "Get-PnPMicrosoft365Roadmap", "Command": "Get-PnPMicrosoft365Roadmap | Where-Object { $_.Status -eq \"Rolling out\" }" }, { "Id": 654, - "CommandName": "Get-PnPMicrosoft365Roadmap", "Rank": 3, + "CommandName": "Get-PnPMicrosoft365Roadmap", "Command": "Get-PnPMicrosoft365Roadmap | Where-Object { $_.Created -ge (Get-Date).AddDays(-7) -or $_.Modified -ge (Get-Date).AddDays(-7) }" }, { "Id": 655, - "CommandName": "Get-PnPNavigationNode", "Rank": 1, + "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode" }, { "Id": 656, - "CommandName": "Get-PnPNavigationNode", "Rank": 2, + "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location QuickLaunch" }, { "Id": 657, - "CommandName": "Get-PnPNavigationNode", "Rank": 3, + "CommandName": "Get-PnPNavigationNode", "Command": "Get-PnPNavigationNode -Location TopNavigationBar" }, { "Id": 658, - "CommandName": "Get-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Get-PnPOrgAssetsLibrary", "Command": "Get-PnPOrgAssetsLibrary" }, { "Id": 659, - "CommandName": "Get-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Get-PnPOrgNewsSite", "Command": "Get-PnPOrgNewsSite" }, { "Id": 660, - "CommandName": "Get-PnPPage", "Rank": 1, + "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\"" }, { "Id": 661, - "CommandName": "Get-PnPPage", "Rank": 2, + "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"MyPage\"" }, { "Id": 662, - "CommandName": "Get-PnPPage", "Rank": 3, + "CommandName": "Get-PnPPage", "Command": "Get-PnPPage \"Templates/MyPageTemplate\"" }, { "Id": 663, - "CommandName": "Get-PnPPage", "Rank": 4, + "CommandName": "Get-PnPPage", "Command": "Get-PnPPage -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { "Id": 664, - "CommandName": "Get-PnPPage", "Rank": 5, + "CommandName": "Get-PnPPage", "Command": "Get-PnPPage" }, { "Id": 665, - "CommandName": "Get-PnPPageComponent", "Rank": 1, + "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home" }, { "Id": 666, - "CommandName": "Get-PnPPageComponent", "Rank": 2, + "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { "Id": 667, - "CommandName": "Get-PnPPageComponent", "Rank": 3, + "CommandName": "Get-PnPPageComponent", "Command": "Get-PnPPageComponent -Page Home -ListAvailable" }, { "Id": 668, - "CommandName": "Get-PnPPageCopyProgress", "Rank": 1, + "CommandName": "Get-PnPPageCopyProgress", "Command": "Get-PnPPageCopyProgress -DestinationSite https://tenant.sharepoint.com -WorkItemId 12345678-1234-1234-1234-123456789012" }, { "Id": 669, - "CommandName": "Get-PnPPageLikedByInformation", "Rank": 1, + "CommandName": "Get-PnPPageLikedByInformation", "Command": "Get-PnPPageLikedByInformation -Identity \"MyPage.aspx\"" }, { "Id": 670, - "CommandName": "Get-PnPPageLikedByInformation", "Rank": 2, + "CommandName": "Get-PnPPageLikedByInformation", "Command": "Get-PnPPageLikedByInformation \"MyPage\"" }, { "Id": 671, - "CommandName": "Get-PnPPageLikedByInformation", "Rank": 3, + "CommandName": "Get-PnPPageLikedByInformation", "Command": "Get-PnPPageLikedByInformation -Identity \"MyPage.aspx\" -Web (Get-PnPWeb -Identity \"Subsite1\")" }, { "Id": 672, - "CommandName": "Get-PnPPageSchedulingEnabled", "Rank": 1, + "CommandName": "Get-PnPPageSchedulingEnabled", "Command": "Get-PnPPageSchedulingEnabled" }, { "Id": 673, - "CommandName": "Get-PnPPlannerBucket", "Rank": 1, + "CommandName": "Get-PnPPlannerBucket", "Command": "Get-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference Plan\"" }, { "Id": 674, - "CommandName": "Get-PnPPlannerConfiguration", "Rank": 1, + "CommandName": "Get-PnPPlannerConfiguration", "Command": "Get-PnPPlannerConfiguration" }, { "Id": 675, - "CommandName": "Get-PnPPlannerPlan", "Rank": 1, + "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\"" }, { "Id": 676, - "CommandName": "Get-PnPPlannerPlan", "Rank": 2, + "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Plan\"" }, { "Id": 677, - "CommandName": "Get-PnPPlannerPlan", "Rank": 3, + "CommandName": "Get-PnPPlannerPlan", "Command": "Get-PnPPlannerPlan -Id \"gndWOTSK60GfPQfiDDj43JgACDCb\" -ResolveIdentities" }, { "Id": 678, - "CommandName": "Get-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Get-PnPPlannerRosterMember", "Command": "Get-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { "Id": 679, - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 1, + "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -Identity \"abcdefgh\"" }, { "Id": 680, - "CommandName": "Get-PnPPlannerRosterPlan", "Rank": 2, + "CommandName": "Get-PnPPlannerRosterPlan", "Command": "Get-PnPPlannerRosterPlan -User \"johndoe@contoso.onmicrosoft.com\"" }, { "Id": 681, - "CommandName": "Get-PnPPlannerTask", "Rank": 1, + "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -Group \"Marketing\" -Plan \"Conference Plan\"" }, { "Id": 682, - "CommandName": "Get-PnPPlannerTask", "Rank": 2, + "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -PlanId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { "Id": 683, - "CommandName": "Get-PnPPlannerTask", "Rank": 3, + "CommandName": "Get-PnPPlannerTask", "Command": "Get-PnPPlannerTask -TaskId \"QvfkTd1mc02gwxHjHC_43JYABhAy\"" }, { "Id": 684, - "CommandName": "Get-PnPPlannerUserPolicy", "Rank": 1, + "CommandName": "Get-PnPPlannerUserPolicy", "Command": "Get-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { "Id": 685, - "CommandName": "Get-PnPPowerApp", "Rank": 1, + "CommandName": "Get-PnPPowerApp", "Command": "Get-PnPPowerApp" }, { "Id": 686, - "CommandName": "Get-PnPPowerApp", "Rank": 2, + "CommandName": "Get-PnPPowerApp", "Command": "Get-PnPPowerApp -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { "Id": 687, - "CommandName": "Get-PnPPowerPlatformCustomConnector", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformCustomConnector", "Command": "Get-PnPPowerPlatformCustomConnector -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\")" }, { "Id": 688, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment" }, { "Id": 689, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 2, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -IsDefault $true" }, { "Id": 690, - "CommandName": "Get-PnPPowerPlatformEnvironment", "Rank": 3, + "CommandName": "Get-PnPPowerPlatformEnvironment", "Command": "Get-PnPPowerPlatformEnvironment -Identity \"MyOrganization (default)\"" }, { "Id": 691, - "CommandName": "Get-PnPPowerPlatformSolution", "Rank": 1, + "CommandName": "Get-PnPPowerPlatformSolution", "Command": "Get-PnPPowerPlatformSolution -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\")" }, { "Id": 692, - "CommandName": "Get-PnPPowerPlatformSolution", "Rank": 2, + "CommandName": "Get-PnPPowerPlatformSolution", "Command": "Get-PnPPowerPlatformSolution -Name 'My Solution Name'" }, { "Id": 693, - "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Rank": 1, + "CommandName": "Get-PnPPowerShellTelemetryEnabled", "Command": "Get-PnPPowerShellTelemetryEnabled" }, { "Id": 694, - "CommandName": "Get-PnPPriviledgedIdentityManagementEligibleAssignment", "Rank": 1, + "CommandName": "Get-PnPPriviledgedIdentityManagementEligibleAssignment", "Command": "Get-PnPPriviledgedIdentityManagementEligibleAssignment" }, { "Id": 695, - "CommandName": "Get-PnPPriviledgedIdentityManagementEligibleAssignment", "Rank": 2, + "CommandName": "Get-PnPPriviledgedIdentityManagementEligibleAssignment", "Command": "Get-PnPPriviledgedIdentityManagementEligibleAssignment -Identity 62e90394-69f5-4237-9190-012177145e10" }, { "Id": 696, - "CommandName": "Get-PnPPriviledgedIdentityManagementRole", "Rank": 1, + "CommandName": "Get-PnPPriviledgedIdentityManagementRole", "Command": "Get-PnPPriviledgedIdentityManagementRole" }, { "Id": 697, - "CommandName": "Get-PnPPriviledgedIdentityManagementRole", "Rank": 2, + "CommandName": "Get-PnPPriviledgedIdentityManagementRole", "Command": "Get-PnPPriviledgedIdentityManagementRole -Identity \"Global Administrator\"" }, { "Id": 698, - "CommandName": "Get-PnPPriviledgedIdentityManagementRole", "Rank": 3, + "CommandName": "Get-PnPPriviledgedIdentityManagementRole", "Command": "Get-PnPPriviledgedIdentityManagementRole -Identity 62e90394-69f5-4237-9190-012177145e10" }, { "Id": 699, - "CommandName": "Get-PnPProfileCardProperty", "Rank": 1, + "CommandName": "Get-PnPProfileCardProperty", "Command": "Get-PnPProfileCardProperty" }, { "Id": 700, - "CommandName": "Get-PnPProfileCardProperty", "Rank": 2, + "CommandName": "Get-PnPProfileCardProperty", "Command": "Get-PnPProfileCardProperty -PropertyName \"pnppowershell\"" }, { "Id": 701, - "CommandName": "Get-PnPPropertyBag", "Rank": 1, + "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag" }, { "Id": 702, - "CommandName": "Get-PnPPropertyBag", "Rank": 2, + "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Key MyKey" }, { "Id": 703, - "CommandName": "Get-PnPPropertyBag", "Rank": 3, + "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder" }, { "Id": 704, - "CommandName": "Get-PnPPropertyBag", "Rank": 4, + "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder /MyFolder -Key vti_mykey" }, { "Id": 705, - "CommandName": "Get-PnPPropertyBag", "Rank": 5, + "CommandName": "Get-PnPPropertyBag", "Command": "Get-PnPPropertyBag -Folder / -Key vti_mykey" }, { "Id": 706, - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition" }, { "Id": 707, - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 2, + "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity \"Test\"" }, { "Id": 708, - "CommandName": "Get-PnPPublishingImageRendition", "Rank": 3, + "CommandName": "Get-PnPPublishingImageRendition", "Command": "Get-PnPPublishingImageRendition -Identity 2" }, { "Id": 709, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 1, + "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem" }, { "Id": 710, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 2, + "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -Identity f3ef6195-9400-4121-9d1c-c997fb5b86c2" }, { "Id": 711, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 3, + "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -FirstStage" }, { "Id": 712, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 4, + "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -SecondStage" }, { "Id": 713, - "CommandName": "Get-PnPRecycleBinItem", "Rank": 5, + "CommandName": "Get-PnPRecycleBinItem", "Command": "Get-PnPRecycleBinItem -RowLimit 10000" }, { "Id": 714, - "CommandName": "Get-PnPRequestAccessEmails", "Rank": 1, + "CommandName": "Get-PnPRequestAccessEmails", "Command": "Get-PnPRequestAccessEmails" }, { "Id": 715, - "CommandName": "Get-PnPRetentionLabel", "Rank": 1, + "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel" }, { "Id": 716, - "CommandName": "Get-PnPRetentionLabel", "Rank": 2, + "CommandName": "Get-PnPRetentionLabel", "Command": "Get-PnPRetentionLabel -List \"Demo List\" -ValuesOnly" }, { "Id": 717, - "CommandName": "Get-PnPRoleDefinition", "Rank": 1, + "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition" }, { "Id": 718, - "CommandName": "Get-PnPRoleDefinition", "Rank": 2, + "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition -Identity Read" }, { "Id": 719, - "CommandName": "Get-PnPRoleDefinition", "Rank": 3, + "CommandName": "Get-PnPRoleDefinition", "Command": "Get-PnPRoleDefinition | Where-Object { $_.RoleTypeKind -eq \"Administrator\" }" }, { "Id": 720, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration" }, { "Id": 721, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site" }, { "Id": 722, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription" }, { "Id": 723, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { "Id": 724, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 5, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -OutputFormat ManagedPropertyMappings" }, { "Id": 725, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 6, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv" }, { "Id": 726, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 7, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Site -PromotedResultsToBookmarkCSV -Path bookmarks.csv -BookmarkStatus Published" }, { "Id": 727, - "CommandName": "Get-PnPSearchConfiguration", "Rank": 8, + "CommandName": "Get-PnPSearchConfiguration", "Command": "Get-PnPSearchConfiguration -Scope Subscription -PromotedResultsToBookmarkCSV -ExcludeVisualPromotedResults $false" }, { "Id": 728, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 1, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog" }, { "Id": 729, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 2, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -Filter \"https://contoso-my.sharepoint.com/personal\"" }, { "Id": 730, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 3, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles" }, { "Id": 731, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 4, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource UserProfiles -Filter \"mikael\"" }, { "Id": 732, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 5, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -ContentSource Sites -LogLevel Error -RowLimit 10" }, { "Id": 733, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 6, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -EndDate (Get-Date).AddDays(-100)" }, { "Id": 734, - "CommandName": "Get-PnPSearchCrawlLog", "Rank": 7, + "CommandName": "Get-PnPSearchCrawlLog", "Command": "Get-PnPSearchCrawlLog -RowFilter 3 -RawFormat" }, { "Id": 735, - "CommandName": "Get-PnPSearchExternalConnection", "Rank": 1, + "CommandName": "Get-PnPSearchExternalConnection", "Command": "Get-PnPSearchExternalConnection" }, { "Id": 736, - "CommandName": "Get-PnPSearchExternalConnection", "Rank": 2, + "CommandName": "Get-PnPSearchExternalConnection", "Command": "Get-PnPSearchExternalConnection -Identity \"pnppowershell\"" }, { "Id": 737, - "CommandName": "Get-PnPSearchExternalItem", "Rank": 1, + "CommandName": "Get-PnPSearchExternalItem", "Command": "Get-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\"" }, { "Id": 738, - "CommandName": "Get-PnPSearchExternalItem", "Rank": 2, + "CommandName": "Get-PnPSearchExternalItem", "Command": "Get-PnPSearchExternalItem -ConnectionId \"pnppowershell\"" }, { "Id": 739, - "CommandName": "Get-PnPSearchExternalSchema", "Rank": 1, + "CommandName": "Get-PnPSearchExternalSchema", "Command": "Get-PnPSearchExternalSchema -ConnectionId \"pnppowershell\"" }, { "Id": 740, - "CommandName": "Get-PnPSearchSettings", "Rank": 1, + "CommandName": "Get-PnPSearchSettings", "Command": "Get-PnPSearchSettings" }, { "Id": 741, - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 1, + "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth" }, { "Id": 742, - "CommandName": "Get-PnPServiceCurrentHealth", "Rank": 2, + "CommandName": "Get-PnPServiceCurrentHealth", "Command": "Get-PnPServiceCurrentHealth -Identity \"SharePoint Online\"" }, { "Id": 743, - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 1, + "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue" }, { "Id": 744, - "CommandName": "Get-PnPServiceHealthIssue", "Rank": 2, + "CommandName": "Get-PnPServiceHealthIssue", "Command": "Get-PnPServiceHealthIssue -Identity \"EX123456\"" }, { "Id": 745, - "CommandName": "Get-PnPSharePointAddIn", "Rank": 1, + "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn" }, { "Id": 746, - "CommandName": "Get-PnPSharePointAddIn", "Rank": 2, + "CommandName": "Get-PnPSharePointAddIn", "Command": "Get-PnPSharePointAddIn -IncludeSubsites" }, { "Id": 747, - "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Rank": 1, + "CommandName": "Get-PnPSharingForNonOwnersOfSite", "Command": "Get-PnPSharingForNonOwnersOfSite" }, { "Id": 748, - "CommandName": "Get-PnPSite", "Rank": 1, + "CommandName": "Get-PnPSite", "Command": "Get-PnPSite" }, { "Id": 749, - "CommandName": "Get-PnPSite", "Rank": 2, + "CommandName": "Get-PnPSite", "Command": "Get-PnPSite -Includes RootWeb,ServerRelativeUrl" }, { "Id": 750, - "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 1, + "CommandName": "Get-PnPSiteAnalyticsData", "Command": "Get-PnPSiteAnalyticsData -All" }, { "Id": 751, - "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 2, + "CommandName": "Get-PnPSiteAnalyticsData", "Command": "Get-PnPSiteAnalyticsData -LastSevenDays" }, { "Id": 752, - "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 3, + "CommandName": "Get-PnPSiteAnalyticsData", "Command": "Get-PnPSiteAnalyticsData -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" }, { "Id": 753, - "CommandName": "Get-PnPSiteAnalyticsData", "Rank": 4, + "CommandName": "Get-PnPSiteAnalyticsData", "Command": "Get-PnPSiteAnalyticsData -Identity \"https://tenant.sharepoint.com/sites/mysite\" -StartDate (Get-date).AddDays(-15) -EndDate (Get-date) -AnalyticsAggregationInterval Day" }, { "Id": 754, - "CommandName": "Get-PnPSiteClosure", "Rank": 1, + "CommandName": "Get-PnPSiteClosure", "Command": "Get-PnPSiteClosure" }, { "Id": 755, - "CommandName": "Get-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAdmin", "Command": "Get-PnPSiteCollectionAdmin" }, { "Id": 756, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog" }, { "Id": 757, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 2, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -CurrentSite" }, { "Id": 758, - "CommandName": "Get-PnPSiteCollectionAppCatalog", "Rank": 3, + "CommandName": "Get-PnPSiteCollectionAppCatalog", "Command": "Get-PnPSiteCollectionAppCatalog -ExcludeDeletedSites" }, { "Id": 759, - "CommandName": "Get-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "Get-PnPSiteCollectionTermStore", "Command": "Get-PnPSiteCollectionTermStore" }, { "Id": 760, - "CommandName": "Get-PnPSiteDesign", "Rank": 1, + "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign" }, { "Id": 761, - "CommandName": "Get-PnPSiteDesign", "Rank": 2, + "CommandName": "Get-PnPSiteDesign", "Command": "Get-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { "Id": 762, - "CommandName": "Get-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Get-PnPSiteDesignRights", "Command": "Get-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { "Id": 763, - "CommandName": "Get-PnPSiteDesignRun", "Rank": 1, + "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun" }, { "Id": 764, - "CommandName": "Get-PnPSiteDesignRun", "Rank": 2, + "CommandName": "Get-PnPSiteDesignRun", "Command": "Get-PnPSiteDesignRun -WebUrl \"https://mytenant.sharepoint.com/sites/project\"" }, { "Id": 765, - "CommandName": "Get-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -Identity 501z8c32-4147-44d4-8607-26c2f67cae82" }, { "Id": 766, - "CommandName": "Get-PnPSiteDesignTask", "Rank": 2, + "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask" }, { "Id": 767, - "CommandName": "Get-PnPSiteDesignTask", "Rank": 3, + "CommandName": "Get-PnPSiteDesignTask", "Command": "Get-PnPSiteDesignTask -WebUrl \"https://contoso.sharepoint.com/sites/project\"" }, { "Id": 768, - "CommandName": "Get-PnPSiteFileVersionBatchDeleteJobStatus", "Rank": 1, + "CommandName": "Get-PnPSiteFileVersionBatchDeleteJobStatus", "Command": "Get-PnPSiteFileVersionBatchDeleteJobStatus" }, { "Id": 769, - "CommandName": "Get-PnPSiteFileVersionExpirationReportJobStatus", "Rank": 1, + "CommandName": "Get-PnPSiteFileVersionExpirationReportJobStatus", "Command": "Get-PnPSiteFileVersionExpirationReportJobStatus -ReportUrl \"https://contoso.sharepoint.com/sites/reports/MyReports/VersionReport.csv\"" }, { "Id": 770, - "CommandName": "Get-PnPSiteGroup", "Rank": 1, + "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup" }, { "Id": 771, - "CommandName": "Get-PnPSiteGroup", "Rank": 2, + "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { "Id": 772, - "CommandName": "Get-PnPSiteGroup", "Rank": 3, + "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\"" }, { "Id": 773, - "CommandName": "Get-PnPSiteGroup", "Rank": 4, + "CommandName": "Get-PnPSiteGroup", "Command": "Get-PnPSiteGroup -Group \"SiteA Members\" -Site \"https://contoso.sharepoint.com/sites/siteA\"" }, { "Id": 774, - "CommandName": "Get-PnPSitePolicy", "Rank": 1, + "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy" }, { "Id": 775, - "CommandName": "Get-PnPSitePolicy", "Rank": 2, + "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -AllAvailable" }, { "Id": 776, - "CommandName": "Get-PnPSitePolicy", "Rank": 3, + "CommandName": "Get-PnPSitePolicy", "Command": "Get-PnPSitePolicy -Name \"Contoso HBI\"" }, { "Id": 777, - "CommandName": "Get-PnPSiteScript", "Rank": 1, + "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript" }, { "Id": 778, - "CommandName": "Get-PnPSiteScript", "Rank": 2, + "CommandName": "Get-PnPSiteScript", "Command": "Get-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { "Id": 779, - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -List \"MyList\"" }, { "Id": 780, - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/lists/MyList\"" }, { "Id": 781, - "CommandName": "Get-PnPSiteScriptFromList", "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromList", "Command": "Get-PnPSiteScriptFromList -Url \"https://contoso.sharepoint.com/sites/teamsite/Shared Documents\"" }, { "Id": 782, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 1, + "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAll" }, { "Id": 783, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 2, + "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll" }, { "Id": 784, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 3, + "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeAll -Lists \"Shared Documents\",\"Lists\\MyList\"" }, { "Id": 785, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 4, + "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -Url \"https://contoso.sharepoint.com/sites/teamsite\" -IncludeBranding -IncludeLinksToExportedItems" }, { "Id": 786, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 5, + "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists" }, { "Id": 787, - "CommandName": "Get-PnPSiteScriptFromWeb", "Rank": 6, + "CommandName": "Get-PnPSiteScriptFromWeb", "Command": "Get-PnPSiteScriptFromWeb -IncludeAllLists | Add-PnPSiteScript -Title \"My Site Script\" | Add-PnPSiteDesign -Title \"My Site Design\" -WebTemplate TeamSite" }, { "Id": 788, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 1, + "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults" }, { "Id": 789, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 2, + "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:STS\"" }, { "Id": 790, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 3, + "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"WebTemplate:SPSPERS\"" }, { "Id": 791, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 4, + "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -Query \"Title:Intranet*\"" }, { "Id": 792, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 5, + "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -MaxResults 10" }, { "Id": 793, - "CommandName": "Get-PnPSiteSearchQueryResults", "Rank": 6, + "CommandName": "Get-PnPSiteSearchQueryResults", "Command": "Get-PnPSiteSearchQueryResults -All" }, { "Id": 794, - "CommandName": "Get-PnPSiteSensitivityLabel", "Rank": 1, + "CommandName": "Get-PnPSiteSensitivityLabel", "Command": "Get-PnPSiteSensitivityLabel" }, { "Id": 795, - "CommandName": "Get-PnPSiteTemplate", "Rank": 1, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp" }, { "Id": 796, - "CommandName": "Get-PnPSiteTemplate", "Rank": 2, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml" }, { "Id": 797, - "CommandName": "Get-PnPSiteTemplate", "Rank": 3, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.md" }, { "Id": 798, - "CommandName": "Get-PnPSiteTemplate", "Rank": 4, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Schema V201503" }, { "Id": 799, - "CommandName": "Get-PnPSiteTemplate", "Rank": 5, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeAllTermGroups" }, { "Id": 800, - "CommandName": "Get-PnPSiteTemplate", "Rank": 6, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -IncludeSiteCollectionTermGroup" }, { "Id": 801, - "CommandName": "Get-PnPSiteTemplate", "Rank": 7, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistBrandingFiles" }, { "Id": 802, - "CommandName": "Get-PnPSiteTemplate", "Rank": 8, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -Handlers Lists, SiteSecurity" }, { "Id": 803, - "CommandName": "Get-PnPSiteTemplate", "Rank": 9, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources" }, { "Id": 804, - "CommandName": "Get-PnPSiteTemplate", "Rank": 10, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -PersistMultiLanguageResources -ResourceFilePrefix MyResources" }, { "Id": 805, - "CommandName": "Get-PnPSiteTemplate", "Rank": 11, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ContentTypeGroups \"Group A\",\"Group B\"" }, { "Id": 806, - "CommandName": "Get-PnPSiteTemplate", "Rank": 12, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ExcludeContentTypesFromSyndication" }, { "Id": 807, - "CommandName": "Get-PnPSiteTemplate", "Rank": 13, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.pnp -ListsToExtract \"Title of List One\",\"95c4efd6-08f4-4c67-94ae-49d696ba1298\",\"Title of List Three\"" }, { "Id": 808, - "CommandName": "Get-PnPSiteTemplate", "Rank": 14, + "CommandName": "Get-PnPSiteTemplate", "Command": "Get-PnPSiteTemplate -Out template.xml -Handlers Fields, ContentTypes, SupportedUILanguages -PersistMultiLanguageResources" }, { "Id": 809, - "CommandName": "Get-PnPSiteUserInvitations", "Rank": 1, + "CommandName": "Get-PnPSiteUserInvitations", "Command": "Get-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { "Id": 810, - "CommandName": "Get-PnPSiteVersionPolicy", "Rank": 1, + "CommandName": "Get-PnPSiteVersionPolicy", "Command": "Get-PnPSiteVersionPolicy" }, { "Id": 811, - "CommandName": "Get-PnPSiteVersionPolicyStatus", "Rank": 1, + "CommandName": "Get-PnPSiteVersionPolicyStatus", "Command": "Get-PnPSiteVersionPolicyStatus" }, { "Id": 812, - "CommandName": "Get-PnPStorageEntity", "Rank": 1, + "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity" }, { "Id": 813, - "CommandName": "Get-PnPStorageEntity", "Rank": 2, + "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey" }, { "Id": 814, - "CommandName": "Get-PnPStorageEntity", "Rank": 3, + "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Scope Site" }, { "Id": 815, - "CommandName": "Get-PnPStorageEntity", "Rank": 4, + "CommandName": "Get-PnPStorageEntity", "Command": "Get-PnPStorageEntity -Key MyKey -Scope Site" }, { "Id": 816, - "CommandName": "Get-PnPStoredCredential", "Rank": 1, + "CommandName": "Get-PnPStoredCredential", "Command": "Get-PnPStoredCredential -Name O365" }, { "Id": 817, - "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheSiteState", "Command": "Get-PnPStructuralNavigationCacheSiteState -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { "Id": 818, - "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Rank": 1, + "CommandName": "Get-PnPStructuralNavigationCacheWebState", "Command": "Get-PnPStructuralNavigationCacheWebState -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { "Id": 819, - "CommandName": "Get-PnPSubWeb", "Rank": 1, + "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb" }, { "Id": 820, - "CommandName": "Get-PnPSubWeb", "Rank": 2, + "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse" }, { "Id": 821, - "CommandName": "Get-PnPSubWeb", "Rank": 3, + "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Recurse -Includes \"WebTemplate\",\"Description\" | Select ServerRelativeUrl, WebTemplate, Description" }, { "Id": 822, - "CommandName": "Get-PnPSubWeb", "Rank": 4, + "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse" }, { "Id": 823, - "CommandName": "Get-PnPSubWeb", "Rank": 5, + "CommandName": "Get-PnPSubWeb", "Command": "Get-PnPSubWeb -Identity Team1 -Recurse -IncludeRootWeb" }, { "Id": 824, - "CommandName": "Get-PnPSyntexModel", "Rank": 1, + "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel" }, { "Id": 825, - "CommandName": "Get-PnPSyntexModel", "Rank": 2, + "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity 1" }, { "Id": 826, - "CommandName": "Get-PnPSyntexModel", "Rank": 3, + "CommandName": "Get-PnPSyntexModel", "Command": "Get-PnPSyntexModel -Identity \"Invoice model\"" }, { "Id": 827, - "CommandName": "Get-PnPSyntexModelPublication", "Rank": 1, + "CommandName": "Get-PnPSyntexModelPublication", "Command": "Get-PnPSyntexModelPublication -Identity \"Invoice model\"" }, { "Id": 828, - "CommandName": "Get-PnPTaxonomyItem", "Rank": 1, + "CommandName": "Get-PnPTaxonomyItem", "Command": "Get-PnPTaxonomyItem -TermPath \"My Term Group|My Term Set|Contoso\"" }, { "Id": 829, - "CommandName": "Get-PnPTeamsApp", "Rank": 1, + "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp" }, { "Id": 830, - "CommandName": "Get-PnPTeamsApp", "Rank": 2, + "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity a54224d7-608b-4839-bf74-1b68148e65d4" }, { "Id": 831, - "CommandName": "Get-PnPTeamsApp", "Rank": 3, + "CommandName": "Get-PnPTeamsApp", "Command": "Get-PnPTeamsApp -Identity \"MyTeamsApp\"" }, { "Id": 832, - "CommandName": "Get-PnPTeamsChannel", "Rank": 1, + "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8" }, { "Id": 833, - "CommandName": "Get-PnPTeamsChannel", "Rank": 2, + "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"Test Channel\"" }, { "Id": 834, - "CommandName": "Get-PnPTeamsChannel", "Rank": 3, + "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { "Id": 835, - "CommandName": "Get-PnPTeamsChannel", "Rank": 4, + "CommandName": "Get-PnPTeamsChannel", "Command": "Get-PnPTeamsChannel -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Identity \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -IncludeModerationSettings" }, { "Id": 836, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team \"Sales Team\" -Channel \"Test Channel\"" }, { "Id": 837, - "CommandName": "Get-PnPTeamsChannelFilesFolder", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelFilesFolder", "Command": "Get-PnPTeamsChannelFilesFolder -Team a6c1e0d7-f579-4993-81ab-4b666f8edea8 -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\"" }, { "Id": 838, - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\"" }, { "Id": 839, - "CommandName": "Get-PnPTeamsChannelMessage", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessage", "Command": "Get-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Identity 1653089769293" }, { "Id": 840, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -IncludeDeleted" }, { "Id": 841, - "CommandName": "Get-PnPTeamsChannelMessageReply", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelMessageReply", "Command": "Get-PnPTeamsChannelMessageReply -Team MyTestTeam -Channel \"My Channel\" -Message 1653089769293 -Identity 1653086004630" }, { "Id": 842, - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 1, + "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\"" }, { "Id": 843, - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 2, + "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Role Member" }, { "Id": 844, - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 3, + "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com" }, { "Id": 845, - "CommandName": "Get-PnPTeamsChannelUser", "Rank": 4, + "CommandName": "Get-PnPTeamsChannelUser", "Command": "Get-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { "Id": 846, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 1, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e" }, { "Id": 847, - "CommandName": "Get-PnPTeamsPrimaryChannel", "Rank": 2, + "CommandName": "Get-PnPTeamsPrimaryChannel", "Command": "Get-PnPTeamsPrimaryChannel -Team Sales" }, { "Id": 848, - "CommandName": "Get-PnPTeamsTab", "Rank": 1, + "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype" }, { "Id": 849, - "CommandName": "Get-PnPTeamsTab", "Rank": 2, + "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity \"Wiki\"" }, { "Id": 850, - "CommandName": "Get-PnPTeamsTab", "Rank": 3, + "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity d8740a7a-e44e-46c5-8f13-e699f964fc25" }, { "Id": 851, - "CommandName": "Get-PnPTeamsTab", "Rank": 4, + "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\"" }, { "Id": 852, - "CommandName": "Get-PnPTeamsTab", "Rank": 5, + "CommandName": "Get-PnPTeamsTab", "Command": "Get-PnPTeamsTab -Team \"My Team\" -Channel \"My Channel\" -Identity \"Wiki\"" }, { "Id": 853, - "CommandName": "Get-PnPTeamsTag", "Rank": 1, + "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { "Id": 854, - "CommandName": "Get-PnPTeamsTag", "Rank": 2, + "CommandName": "Get-PnPTeamsTag", "Command": "Get-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { "Id": 855, - "CommandName": "Get-PnPTeamsTeam", "Rank": 1, + "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam" }, { "Id": 856, - "CommandName": "Get-PnPTeamsTeam", "Rank": 2, + "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"PnP PowerShell\"" }, { "Id": 857, - "CommandName": "Get-PnPTeamsTeam", "Rank": 3, + "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\"" }, { "Id": 858, - "CommandName": "Get-PnPTeamsTeam", "Rank": 4, + "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(mailNickName, 'contoso')\"" }, { "Id": 859, - "CommandName": "Get-PnPTeamsTeam", "Rank": 5, + "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -Filter \"startswith(description, 'contoso')\"" }, { "Id": 860, - "CommandName": "Get-PnPTeamsTeam", "Rank": 6, + "CommandName": "Get-PnPTeamsTeam", "Command": "Get-PnPTeamsTeam -User \"user@company.com\"" }, { "Id": 861, - "CommandName": "Get-PnPTeamsUser", "Rank": 1, + "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam" }, { "Id": 862, - "CommandName": "Get-PnPTeamsUser", "Rank": 2, + "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Owner" }, { "Id": 863, - "CommandName": "Get-PnPTeamsUser", "Rank": 3, + "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Member" }, { "Id": 864, - "CommandName": "Get-PnPTeamsUser", "Rank": 4, + "CommandName": "Get-PnPTeamsUser", "Command": "Get-PnPTeamsUser -Team MyTeam -Role Guest" }, { "Id": 865, - "CommandName": "Get-PnPTemporarilyDisableAppBar", "Rank": 1, + "CommandName": "Get-PnPTemporarilyDisableAppBar", "Command": "Get-PnPTemporarilyDisableAppBar" }, { "Id": 866, - "CommandName": "Get-PnPTenant", "Rank": 1, + "CommandName": "Get-PnPTenant", "Command": "Get-PnPTenant" }, { "Id": 867, - "CommandName": "Get-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Get-PnPTenantAppCatalogUrl", "Command": "Get-PnPTenantAppCatalogUrl" }, { "Id": 868, - "CommandName": "Get-PnPTenantCdnEnabled", "Rank": 1, + "CommandName": "Get-PnPTenantCdnEnabled", "Command": "Get-PnPTenantCdnEnabled -CdnType Public" }, { "Id": 869, - "CommandName": "Get-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Get-PnPTenantCdnOrigin", "Command": "Get-PnPTenantCdnOrigin -CdnType Public" }, { "Id": 870, - "CommandName": "Get-PnPTenantCdnPolicies", "Rank": 1, + "CommandName": "Get-PnPTenantCdnPolicies", "Command": "Get-PnPTenantCdnPolicies -CdnType Public" }, { "Id": 871, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 1, + "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite" }, { "Id": 872, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 2, + "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Detailed" }, { "Id": 873, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 3, + "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { "Id": 874, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 4, + "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludePersonalSite" }, { "Id": 875, - "CommandName": "Get-PnPTenantDeletedSite", "Rank": 5, + "CommandName": "Get-PnPTenantDeletedSite", "Command": "Get-PnPTenantDeletedSite -IncludeOnlyPersonalSite" }, { "Id": 876, - "CommandName": "Get-PnPTenantId", "Rank": 1, + "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId" }, { "Id": 877, - "CommandName": "Get-PnPTenantId", "Rank": 2, + "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId contoso" }, { "Id": 878, - "CommandName": "Get-PnPTenantId", "Rank": 3, + "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.com" }, { "Id": 879, - "CommandName": "Get-PnPTenantId", "Rank": 4, + "CommandName": "Get-PnPTenantId", "Command": "Get-PnPTenantId -TenantUrl contoso.sharepoint.us -AzureEnvironment USGovernment" }, { "Id": 880, - "CommandName": "Get-PnPTenantInfo", "Rank": 1, + "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -TenantId \"e65b162c-6f87-4eb1-a24e-1b37d3504663\"" }, { "Id": 881, - "CommandName": "Get-PnPTenantInfo", "Rank": 2, + "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -DomainName \"contoso.com\"" }, { "Id": 882, - "CommandName": "Get-PnPTenantInfo", "Rank": 3, + "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo" }, { "Id": 883, - "CommandName": "Get-PnPTenantInfo", "Rank": 4, + "CommandName": "Get-PnPTenantInfo", "Command": "Get-PnPTenantInfo -CurrentTenant" }, { "Id": 884, - "CommandName": "Get-PnPTenantInstance", "Rank": 1, + "CommandName": "Get-PnPTenantInstance", "Command": "Get-PnPTenantInstance" }, { "Id": 885, - "CommandName": "Get-PnPTenantInternalSetting", "Rank": 1, + "CommandName": "Get-PnPTenantInternalSetting", "Command": "Get-PnPTenantInternalSetting" }, { "Id": 886, - "CommandName": "Get-PnPTenantPronounsSetting", "Rank": 1, + "CommandName": "Get-PnPTenantPronounsSetting", "Command": "Get-PnPTenantPronounsSetting" }, { "Id": 887, - "CommandName": "Get-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Get-PnPTenantRecycleBinItem", "Command": "Get-PnPTenantRecycleBinItem" }, { "Id": 888, - "CommandName": "Get-PnPTenantRestrictedSearchAllowedList", "Rank": 1, + "CommandName": "Get-PnPTenantRestrictedSearchAllowedList", "Command": "Get-PnPTenantRestrictedSearchAllowedList" }, { "Id": 889, - "CommandName": "Get-PnPTenantRestrictedSearchMode", "Rank": 1, + "CommandName": "Get-PnPTenantRestrictedSearchMode", "Command": "Get-PnPTenantRestrictedSearchMode" }, { "Id": 890, - "CommandName": "Get-PnPTenantRetentionLabel", "Rank": 1, + "CommandName": "Get-PnPTenantRetentionLabel", "Command": "Get-PnPTenantRetentionLabel" }, { "Id": 891, - "CommandName": "Get-PnPTenantRetentionLabel", "Rank": 2, + "CommandName": "Get-PnPTenantRetentionLabel", "Command": "Get-PnPTenantRetentionLabel -Identity 58f77809-9738-5080-90f1-gh7afeba2995" }, { "Id": 892, - "CommandName": "Get-PnPTenantSequence", "Rank": 1, + "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject" }, { "Id": 893, - "CommandName": "Get-PnPTenantSequence", "Rank": 2, + "CommandName": "Get-PnPTenantSequence", "Command": "Get-PnPTenantSequence -Template $myTemplateObject -Identity \"mysequence\"" }, { "Id": 894, - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 1, + "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence" }, { "Id": 895, - "CommandName": "Get-PnPTenantSequenceSite", "Rank": 2, + "CommandName": "Get-PnPTenantSequenceSite", "Command": "Get-PnPTenantSequenceSite -Sequence $mysequence -Identity 8058ea99-af7b-4bb7-b12a-78f93398041e" }, { "Id": 896, - "CommandName": "Get-PnPTenantSite", "Rank": 1, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite" }, { "Id": 897, - "CommandName": "Get-PnPTenantSite", "Rank": 2, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Detailed" }, { "Id": 898, - "CommandName": "Get-PnPTenantSite", "Rank": 3, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites" }, { "Id": 899, - "CommandName": "Get-PnPTenantSite", "Rank": 4, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -IncludeOneDriveSites -Filter \"Url -like '-my.sharepoint.com/personal/'\"" }, { "Id": 900, - "CommandName": "Get-PnPTenantSite", "Rank": 5, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity \"http://tenant.sharepoint.com/sites/projects\"" }, { "Id": 901, - "CommandName": "Get-PnPTenantSite", "Rank": 6, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Identity 7e8a6f56-92fe-4b22-9364-41799e579e8a" }, { "Id": 902, - "CommandName": "Get-PnPTenantSite", "Rank": 7, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Template SITEPAGEPUBLISHING#0" }, { "Id": 903, - "CommandName": "Get-PnPTenantSite", "Rank": 8, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -Filter \"Url -like 'sales'\"" }, { "Id": 904, - "CommandName": "Get-PnPTenantSite", "Rank": 9, + "CommandName": "Get-PnPTenantSite", "Command": "Get-PnPTenantSite -GroupIdDefined $true" }, { "Id": 905, - "CommandName": "Get-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Get-PnPTenantSyncClientRestriction", "Command": "Get-PnPTenantSyncClientRestriction" }, { "Id": 906, - "CommandName": "Get-PnPTenantTemplate", "Rank": 1, + "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml" }, { "Id": 907, - "CommandName": "Get-PnPTenantTemplate", "Rank": 2, + "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite" }, { "Id": 908, - "CommandName": "Get-PnPTenantTemplate", "Rank": 3, + "CommandName": "Get-PnPTenantTemplate", "Command": "Get-PnPTenantTemplate -Out tenanttemplate.xml -SiteUrl https://m365x123456.sharepoint.com/sites/HomeSite -Force" }, { "Id": 909, - "CommandName": "Get-PnPTenantTheme", "Rank": 1, + "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme" }, { "Id": 910, - "CommandName": "Get-PnPTenantTheme", "Rank": 2, + "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { "Id": 911, - "CommandName": "Get-PnPTenantTheme", "Rank": 3, + "CommandName": "Get-PnPTenantTheme", "Command": "Get-PnPTenantTheme -Name \"MyCompanyTheme\" -AsJson" }, { "Id": 912, - "CommandName": "Get-PnPTerm", "Rank": 1, + "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { "Id": 913, - "CommandName": "Get-PnPTerm", "Rank": 2, + "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { "Id": 914, - "CommandName": "Get-PnPTerm", "Rank": 3, + "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { "Id": 915, - "CommandName": "Get-PnPTerm", "Rank": 4, + "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive" }, { "Id": 916, - "CommandName": "Get-PnPTerm", "Rank": 5, + "CommandName": "Get-PnPTerm", "Command": "Get-PnPTerm -Identity \"Small Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Recursive -IncludeDeprecated" }, { "Id": 917, - "CommandName": "Get-PnPTermGroup", "Rank": 1, + "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup" }, { "Id": 918, - "CommandName": "Get-PnPTermGroup", "Rank": 2, + "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity \"Departments\"" }, { "Id": 919, - "CommandName": "Get-PnPTermGroup", "Rank": 3, + "CommandName": "Get-PnPTermGroup", "Command": "Get-PnPTermGroup -Identity ab2af486-e097-4b4a-9444-527b251f1f8d" }, { "Id": 920, - "CommandName": "Get-PnPTermLabel", "Rank": 1, + "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83" }, { "Id": 921, - "CommandName": "Get-PnPTermLabel", "Rank": 2, + "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term af8601d6-d925-46dd-af7b-4a58515ffd83 -Lcid 1033" }, { "Id": 922, - "CommandName": "Get-PnPTermLabel", "Rank": 3, + "CommandName": "Get-PnPTermLabel", "Command": "Get-PnPTermLabel -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { "Id": 923, - "CommandName": "Get-PnPTermSet", "Rank": 1, + "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -TermGroup \"Corporate\"" }, { "Id": 924, - "CommandName": "Get-PnPTermSet", "Rank": 2, + "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\"" }, { "Id": 925, - "CommandName": "Get-PnPTermSet", "Rank": 3, + "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity ab2af486-e097-4b4a-9444-527b251f1f8d -TermGroup \"Corporate" }, { "Id": 926, - "CommandName": "Get-PnPTermSet", "Rank": 4, + "CommandName": "Get-PnPTermSet", "Command": "Get-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate -Include \"Terms\"" }, { "Id": 927, - "CommandName": "Get-PnPTheme", "Rank": 1, + "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme" }, { "Id": 928, - "CommandName": "Get-PnPTheme", "Rank": 2, + "CommandName": "Get-PnPTheme", "Command": "Get-PnPTheme -DetectCurrentComposedLook" }, { "Id": 929, - "CommandName": "Get-PnPTimeZoneId", "Rank": 1, + "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId" }, { "Id": 930, - "CommandName": "Get-PnPTimeZoneId", "Rank": 2, + "CommandName": "Get-PnPTimeZoneId", "Command": "Get-PnPTimeZoneId -Match Stockholm" }, { "Id": 931, - "CommandName": "Get-PnPTodoList", "Rank": 1, + "CommandName": "Get-PnPTodoList", "Command": "Get-PnPTodoList" }, { "Id": 932, - "CommandName": "Get-PnPTodoList", "Rank": 2, + "CommandName": "Get-PnPTodoList", "Command": "Get-PnPTodoList -Identity \"AAMkAGU4MGE1OTRiLTUzMGEtNDRjZi05ZmVmLWFiMTkyYmQxODRjOQAuAAAAAACQV8RStyZCQJ4ydzjIK5HmAQD2LFcxdwYMRqbupn47nEYYAASUnLfyAAA=\"" }, { "Id": 933, - "CommandName": "Get-PnPTodoList", "Rank": 3, + "CommandName": "Get-PnPTodoList", "Command": "Get-PnPTodoList -User john@doe.com" }, { "Id": 934, - "CommandName": "Get-PnPTodoList", "Rank": 4, + "CommandName": "Get-PnPTodoList", "Command": "Get-PnPTodoList -User john@doe.com -Identity \"AAMkAGU4MGE1OTRiLTUzMGEtNDRjZi05ZmVmLWFiMTkyYmQxODRjOQAuAAAAAACQV8RStyZCQJ4ydzjIK5HmAQD2LFcxdwYMRqbupn47nEYYAASUnLfyAAA=\"" }, { "Id": 935, - "CommandName": "Get-PnPTraceLog", "Rank": 1, + "CommandName": "Get-PnPTraceLog", "Command": "Get-PnPTraceLog" }, { "Id": 936, - "CommandName": "Get-PnPTraceLog", "Rank": 2, + "CommandName": "Get-PnPTraceLog", "Command": "Get-PnPTraceLog -Path \"C:\\temp\\log.txt\"" }, { "Id": 937, - "CommandName": "Get-PnPTraceLog", "Rank": 3, + "CommandName": "Get-PnPTraceLog", "Command": "Get-PnPTraceLog | Where-Object { $_.Level -eq \"Error\" }" }, { "Id": 938, - "CommandName": "Get-PnPTraceLog", "Rank": 4, + "CommandName": "Get-PnPTraceLog", "Command": "Get-PnPTraceLog | Where-Object { $_.CorrelationId -eq \"5a6206a0-6c83-4446-9d1b-38c14f93cb60\" }" }, { "Id": 939, - "CommandName": "Get-PnPTraceLog", "Rank": 5, + "CommandName": "Get-PnPTraceLog", "Command": "Get-PnPTraceLog | Sort-Object -Property EllapsedMilliseconds -Descending -Top 10 | Select EllapsedMilliseconds, Source, Message" }, { "Id": 940, - "CommandName": "Get-PnPTraceLog", "Rank": 6, + "CommandName": "Get-PnPTraceLog", "Command": "Get-PnPTraceLog | Group-Object -Property CorrelationId | ForEach-Object { [pscustomobject]@{ Started = ($_.Group | Select -First 1).TimeStamp; Ended = ($_.Group | Select -Last 1).TimeStamp; Cmdlet = $_.Group[0].Source; TimeTaken = ($_.Group | Measure-Object -Property EllapsedMilliseconds -Sum).Sum; Logs = $_.Group }} | Sort-Object -Property TimeTaken -Descending -Top 5 | Select Started, Cmdlet, TimeTaken" }, { "Id": 941, - "CommandName": "Get-PnPUnfurlLink", "Rank": 1, + "CommandName": "Get-PnPUnfurlLink", "Command": "Get-PnPUnfurlLink -Url \"https://contoso.sharepoint.com/:u:/s/testsitecol/ERs6pDuyD95LpUSUsJxi1EIBr9FMEYVBvMcs_B7cPdNPgQ?e=ZL3DPe\"" }, { "Id": 942, - "CommandName": "Get-PnPUnifiedAuditLog", "Rank": 1, + "CommandName": "Get-PnPUnifiedAuditLog", "Command": "Get-PnPUnifiedAuditLog -ContentType SharePoint -StartTime (Get-Date -asUtc).AddDays(-2) -EndTime (Get-Date -asUtc).AddDays(-1)" }, { "Id": 943, - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 1, + "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus" }, { "Id": 944, - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 2, + "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -IncludeErrorDetails" }, { "Id": 945, - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 3, + "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId " }, { "Id": 946, - "CommandName": "Get-PnPUPABulkImportStatus", "Rank": 4, + "CommandName": "Get-PnPUPABulkImportStatus", "Command": "Get-PnPUPABulkImportStatus -JobId -IncludeErrorDetails" }, { "Id": 947, - "CommandName": "Get-PnPUser", "Rank": 1, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser" }, { "Id": 948, - "CommandName": "Get-PnPUser", "Rank": 2, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity 23" }, { "Id": 949, - "CommandName": "Get-PnPUser", "Rank": 3, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -Identity \"i:0#.f|membership|user@tenant.onmicrosoft.com\"" }, { "Id": 950, - "CommandName": "Get-PnPUser", "Rank": 4, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser | ? Email -eq \"user@tenant.onmicrosoft.com\"" }, { "Id": 951, - "CommandName": "Get-PnPUser", "Rank": 5, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned" }, { "Id": 952, - "CommandName": "Get-PnPUser", "Rank": 6, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssigned -Web subsite1" }, { "Id": 953, - "CommandName": "Get-PnPUser", "Rank": 7, + "CommandName": "Get-PnPUser", "Command": "Get-PnPUser -WithRightsAssignedDetailed" }, { "Id": 954, - "CommandName": "Get-PnPUserOneDriveQuota", "Rank": 1, + "CommandName": "Get-PnPUserOneDriveQuota", "Command": "Get-PnPUserOneDriveQuota -Account 'user@domain.com'" }, { "Id": 955, - "CommandName": "Get-PnPUserProfilePhoto", "Rank": 1, + "CommandName": "Get-PnPUserProfilePhoto", "Command": "Get-PnPUserProfilePhoto -Identity \"john@contoso.onmicrosoft.com\"" }, { "Id": 956, - "CommandName": "Get-PnPUserProfilePhoto", "Rank": 2, + "CommandName": "Get-PnPUserProfilePhoto", "Command": "Get-PnPUserProfilePhoto -Identity \"john@contoso.onmicrosoft.com\" -Filename \"john.png\"" }, { "Id": 957, - "CommandName": "Get-PnPUserProfileProperty", "Rank": 1, + "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com'" }, { "Id": 958, - "CommandName": "Get-PnPUserProfileProperty", "Rank": 2, + "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com','user2@domain.com'" }, { "Id": 959, - "CommandName": "Get-PnPUserProfileProperty", "Rank": 3, + "CommandName": "Get-PnPUserProfileProperty", "Command": "Get-PnPUserProfileProperty -Account 'user@domain.com' -Properties 'FirstName','LastName'" }, { "Id": 960, - "CommandName": "Get-PnPView", "Rank": 1, + "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\"" }, { "Id": 961, - "CommandName": "Get-PnPView", "Rank": 2, + "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"Demo View\"" }, { "Id": 962, - "CommandName": "Get-PnPView", "Rank": 3, + "CommandName": "Get-PnPView", "Command": "Get-PnPView -List \"Demo List\" -Identity \"5275148a-6c6c-43d8-999a-d2186989a661\"" }, { "Id": 963, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE" }, { "Id": 964, - "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Rank": 2, + "CommandName": "Get-PnPVivaConnectionsDashboardACE", "Command": "Get-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { "Id": 965, - "CommandName": "Get-PnPVivaEngageCommunity", "Rank": 1, + "CommandName": "Get-PnPVivaEngageCommunity", "Command": "Get-PnPVivaEngageCommunity" }, { "Id": 966, - "CommandName": "Get-PnPVivaEngageCommunity", "Rank": 2, + "CommandName": "Get-PnPVivaEngageCommunity", "Command": "Get-PnPVivaEngageCommunity -Identity \"eyJfdHlwZSI6Ikdyb3VwIiwiaWQiOiIyMTI0ODA3MTI3MDQifQ\"" }, { "Id": 967, - "CommandName": "Get-PnPWeb", "Rank": 1, + "CommandName": "Get-PnPWeb", "Command": "Get-PnPWeb" }, { "Id": 968, - "CommandName": "Get-PnPWebHeader", "Rank": 1, + "CommandName": "Get-PnPWebHeader", "Command": "Get-PnPWebHeader" }, { "Id": 969, - "CommandName": "Get-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Get-PnPWebhookSubscription", "Command": "Get-PnPWebhookSubscription -List MyList" }, { "Id": 970, - "CommandName": "Get-PnPWebPart", "Rank": 1, + "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\"" }, { "Id": 971, - "CommandName": "Get-PnPWebPart", "Rank": 2, + "CommandName": "Get-PnPWebPart", "Command": "Get-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { "Id": 972, - "CommandName": "Get-PnPWebPartProperty", "Rank": 1, + "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914" }, { "Id": 973, - "CommandName": "Get-PnPWebPartProperty", "Rank": 2, + "CommandName": "Get-PnPWebPartProperty", "Command": "Get-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\"" }, { "Id": 974, - "CommandName": "Get-PnPWebPartXml", "Rank": 1, + "CommandName": "Get-PnPWebPartXml", "Command": "Get-PnPWebPartXml -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { "Id": 975, - "CommandName": "Get-PnPWebPermission", "Rank": 1, + "CommandName": "Get-PnPWebPermission", "Command": "Get-PnPWebPermission -Identity (Get-PnPWeb) -PrincipalId 60" }, { "Id": 976, - "CommandName": "Get-PnPWebPermission", "Rank": 2, + "CommandName": "Get-PnPWebPermission", "Command": "Get-PnPWebPermission -Identity \"subsite\" -PrincipalId (Get-PnPGroup -Identity DemoGroup).Id" }, { "Id": 977, - "CommandName": "Get-PnPWebTemplates", "Rank": 1, + "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates" }, { "Id": 978, - "CommandName": "Get-PnPWebTemplates", "Rank": 2, + "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -LCID 1033" }, { "Id": 979, - "CommandName": "Get-PnPWebTemplates", "Rank": 3, + "CommandName": "Get-PnPWebTemplates", "Command": "Get-PnPWebTemplates -CompatibilityLevel 15" }, { "Id": 980, - "CommandName": "Get-PnPWikiPageContent", "Rank": 1, + "CommandName": "Get-PnPWikiPageContent", "Command": "Get-PnPWikiPageContent -PageUrl '/sites/demo1/pages/wikipage.aspx'" }, { "Id": 981, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions Read" }, { "Id": 982, - "CommandName": "Grant-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Grant-PnPAzureADAppSitePermission", "Command": "Grant-PnPAzureADAppSitePermission -AppId \"aa37b89e-75a7-47e3-bdb6-b763851c61b6\" -DisplayName \"TestApp\" -Permissions FullControl -Site https://contoso.sharepoint.com/sites/projects" }, { "Id": 983, - "CommandName": "Grant-PnPHubSiteRights", "Rank": 1, + "CommandName": "Grant-PnPHubSiteRights", "Command": "Grant-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { "Id": 984, - "CommandName": "Grant-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Grant-PnPSiteDesignRights", "Command": "Grant-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { "Id": 985, - "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Rank": 1, + "CommandName": "Grant-PnPTenantServicePrincipalPermission", "Command": "Grant-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { "Id": 986, - "CommandName": "Import-PnPTaxonomy", "Rank": 1, + "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm'" }, { "Id": 987, - "CommandName": "Import-PnPTaxonomy", "Rank": 2, + "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|\"Stockholm,Central\"'" }, { "Id": 988, - "CommandName": "Import-PnPTaxonomy", "Rank": 3, + "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Terms 'Company|Locations|Stockholm|Central','Company|Locations|Stockholm|North'" }, { "Id": 989, - "CommandName": "Import-PnPTaxonomy", "Rank": 4, + "CommandName": "Import-PnPTaxonomy", "Command": "Import-PnPTaxonomy -Path ./mytaxonomyterms.txt" }, { "Id": 990, - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 1, + "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Xml $xml" }, { "Id": 991, - "CommandName": "Import-PnPTermGroupFromXml", "Rank": 2, + "CommandName": "Import-PnPTermGroupFromXml", "Command": "Import-PnPTermGroupFromXml -Path input.xml" }, { "Id": 992, - "CommandName": "Import-PnPTermSet", "Rank": 1, + "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -SynchronizeDeletions" }, { "Id": 993, - "CommandName": "Import-PnPTermSet", "Rank": 2, + "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -TermStoreName 'My Term Store' -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -TermSetId '{15A98DB6-D8E2-43E6-8771-066C1EC2B8D8}'" }, { "Id": 994, - "CommandName": "Import-PnPTermSet", "Rank": 3, + "CommandName": "Import-PnPTermSet", "Command": "Import-PnPTermSet -GroupName 'Standard Terms' -Path 'C:\\\\Temp\\\\ImportTermSet.csv' -IsOpen $true -Contact 'user@example.org' -Owner 'user@example.org'" }, { "Id": 995, - "CommandName": "Install-PnPApp", "Rank": 1, + "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { "Id": 996, - "CommandName": "Install-PnPApp", "Rank": 2, + "CommandName": "Install-PnPApp", "Command": "Install-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { "Id": 997, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 1, + "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups?`$filter=startsWith(displayName,'ZZ')&`$select=displayName\"\r ; Invoke-PnPGraphMethod -Url 'groups/{id}?`$select=hideFromOutlookClients'" }, { "Id": 998, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 2, + "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Delete" }, { "Id": 999, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 3, + "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"groups/{id}\" -Method Patch -Content @{ displayName = \"NewName\" }" }, { "Id": 1000, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 4, + "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"users?`$filter=accountEnabled ne true&`$count=true\" -Method Get -ConsistencyLevelEventual" }, { "Id": 1001, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 5, + "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"users\"" }, { "Id": 1002, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 6, + "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"users/user@contoso.com/photo/`$value\" -OutFile c:\\temp\\photo.jpg" }, { "Id": 1003, - "CommandName": "Invoke-PnPGraphMethod", "Rank": 7, + "CommandName": "Invoke-PnPGraphMethod", "Command": "Invoke-PnPGraphMethod -Url \"users/user@contoso.com/photo/`$value\" -OutStream | Add-PnPFile -FileName user.jpg -Folder \"Shared Documents\"" }, { "Id": 1004, - "CommandName": "Invoke-PnPListDesign", "Rank": 1, + "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { "Id": 1005, - "CommandName": "Invoke-PnPListDesign", "Rank": 2, + "CommandName": "Invoke-PnPListDesign", "Command": "Invoke-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { "Id": 1006, - "CommandName": "Invoke-PnPQuery", "Rank": 1, + "CommandName": "Invoke-PnPQuery", "Command": "Invoke-PnPQuery -RetryCount 5" }, { "Id": 1007, - "CommandName": "Invoke-PnPSiteDesign", "Rank": 1, + "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { "Id": 1008, - "CommandName": "Invoke-PnPSiteDesign", "Rank": 2, + "CommandName": "Invoke-PnPSiteDesign", "Command": "Invoke-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -WebUrl \"https://contoso.sharepoint.com/sites/mydemosite\"" }, { "Id": 1009, - "CommandName": "Invoke-PnPSiteScript", "Rank": 1, + "CommandName": "Invoke-PnPSiteScript", "Command": "Invoke-PnPSiteScript -Identity \"My awesome script\" -WebUrl https://contoso.sharepoint.com/sites/mydemosite" }, { "Id": 1010, - "CommandName": "Invoke-PnPSiteSwap", "Rank": 1, + "CommandName": "Invoke-PnPSiteSwap", "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { "Id": 1011, - "CommandName": "Invoke-PnPSiteSwap", "Rank": 2, + "CommandName": "Invoke-PnPSiteSwap", "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/SearchSite -TargetUrl https://contoso.sharepoint.com/search -ArchiveUrl https://contoso.sharepoint.com/sites/Archive" }, { "Id": 1012, - "CommandName": "Invoke-PnPSiteSwap", "Rank": 3, + "CommandName": "Invoke-PnPSiteSwap", "Command": "Invoke-PnPSiteSwap -SourceUrl https://contoso.sharepoint.com/sites/CommunicationSite -TargetUrl https://contoso.sharepoint.com -ArchiveUrl https://contoso.sharepoint.com/sites/Archive -DisableRedirection" }, { "Id": 1013, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 1, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Url https://tenant.sharepoint.com/sites/sitename" }, { "Id": 1014, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 2, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml" }, { "Id": 1015, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 3, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -ResourceFolder c:\\provisioning\\resources" }, { "Id": 1016, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 4, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { "Id": 1017, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 5, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.xml -Handlers Lists, SiteSecurity" }, { "Id": 1018, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 6, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path template.pnp" }, { "Id": 1019, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 7, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path \"https://tenant.sharepoint.com/sites/templatestorage/Documents/template.pnp\"" }, { "Id": 1020, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 8, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -InputInstance $template" }, { "Id": 1021, - "CommandName": "Invoke-PnPSiteTemplate", "Rank": 9, + "CommandName": "Invoke-PnPSiteTemplate", "Command": "Invoke-PnPSiteTemplate -Path .\\template.xml -TemplateId \"MyTemplate\"" }, { "Id": 1022, - "CommandName": "Invoke-PnPSPRestMethod", "Rank": 1, + "CommandName": "Invoke-PnPSPRestMethod", "Command": "Invoke-PnPSPRestMethod -Url /_api/web" }, { "Id": 1023, - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 1, + "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp" }, { "Id": 1024, - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 2, + "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -SequenceId \"mysequence\"" }, { "Id": 1025, - "CommandName": "Invoke-PnPTenantTemplate", "Rank": 3, + "CommandName": "Invoke-PnPTenantTemplate", "Command": "Invoke-PnPTenantTemplate -Path myfile.pnp -Parameters @{\"ListTitle\"=\"Projects\";\"parameter2\"=\"a second value\"}" }, { "Id": 1026, - "CommandName": "Invoke-PnPWebAction", "Rank": 1, + "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ListAction ${function:ListAction}" }, { "Id": 1027, - "CommandName": "Invoke-PnPWebAction", "Rank": 2, + "CommandName": "Invoke-PnPWebAction", "Command": "Invoke-PnPWebAction -ShouldProcessListAction ${function:ShouldProcessList} -ListAction ${function:ListAction}" }, { "Id": 1028, - "CommandName": "Measure-PnPList", "Rank": 1, + "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\"" }, { "Id": 1029, - "CommandName": "Measure-PnPList", "Rank": 2, + "CommandName": "Measure-PnPList", "Command": "Measure-PnPList \"Documents\" -BrokenPermissions -ItemLevel" }, { "Id": 1030, - "CommandName": "Measure-PnPWeb", "Rank": 1, + "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb" }, { "Id": 1031, - "CommandName": "Measure-PnPWeb", "Rank": 2, + "CommandName": "Measure-PnPWeb", "Command": "Measure-PnPWeb $web -Recursive" }, { "Id": 1032, - "CommandName": "Merge-PnPTerm", "Rank": 1, + "CommandName": "Merge-PnPTerm", "Command": "Merge-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 95e13729-3ccf-4ec8-998c-78e9ef1daa0b" }, { "Id": 1033, - "CommandName": "Move-PnPFile", "Rank": 1, + "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive/Document2.docx\"" }, { "Id": 1034, - "CommandName": "Move-PnPFile", "Rank": 2, + "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"Archive\" -Overwrite" }, { "Id": 1035, - "CommandName": "Move-PnPFile", "Rank": 3, + "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"Shared Documents/Document.docx\" -TargetUrl \"/sites/otherproject/Shared Documents\" -Overwrite -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { "Id": 1036, - "CommandName": "Move-PnPFile", "Rank": 4, + "CommandName": "Move-PnPFile", "Command": "Move-PnPFile -SourceUrl \"/sites/project/Shared Documents/Archive\" -TargetUrl \"/sites/archive/Project\" -AllowSchemaMismatch -AllowSmallerVersionLimitOnDestination" }, { "Id": 1037, - "CommandName": "Move-PnPFolder", "Rank": 1, + "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder Documents/Reports -TargetFolder 'Archived Reports'" }, { "Id": 1038, - "CommandName": "Move-PnPFolder", "Rank": 2, + "CommandName": "Move-PnPFolder", "Command": "Move-PnPFolder -Folder 'Shared Documents/Reports/2016/Templates' -TargetFolder 'Shared Documents/Reports'" }, { "Id": 1039, - "CommandName": "Move-PnPListItemToRecycleBin", "Rank": 1, + "CommandName": "Move-PnPListItemToRecycleBin", "Command": "Move-PnPListItemToRecycleBin -List \"Demo List\" -Identity \"1\" -Force" }, { "Id": 1040, - "CommandName": "Move-PnPPage", "Rank": 1, + "CommandName": "Move-PnPPage", "Command": "Move-PnPPage -SourceSite https://tenant.sharepoint.com/sites/site1 -DestinationSite https://tenant.sharepoint.com -PageName \"FAQ.aspx\"" }, { "Id": 1041, - "CommandName": "Move-PnPPageComponent", "Rank": 1, + "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1" }, { "Id": 1042, - "CommandName": "Move-PnPPageComponent", "Rank": 2, + "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Column 2" }, { "Id": 1043, - "CommandName": "Move-PnPPageComponent", "Rank": 3, + "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2" }, { "Id": 1044, - "CommandName": "Move-PnPPageComponent", "Rank": 4, + "CommandName": "Move-PnPPageComponent", "Command": "Move-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Section 1 -Column 2 -Position 2" }, { "Id": 1045, - "CommandName": "Move-PnpRecycleBinItem", "Rank": 1, + "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem" }, { "Id": 1046, - "CommandName": "Move-PnpRecycleBinItem", "Rank": 2, + "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Identity 26ffff29-b526-4451-9b6f-7f0e56ba7125" }, { "Id": 1047, - "CommandName": "Move-PnpRecycleBinItem", "Rank": 3, + "CommandName": "Move-PnpRecycleBinItem", "Command": "Move-PnPRecycleBinItem -Force" }, { "Id": 1048, - "CommandName": "Move-PnPTerm", "Rank": 1, + "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTermSet 95e13729-3ccf-4ec8-998c-78e9ef1daa0b -TargetTermGroup b2645144-5757-4cd7-b7f9-e5d24757addf" }, { "Id": 1049, - "CommandName": "Move-PnPTerm", "Rank": 2, + "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity \"Test\" -TargetTermSet \"TestTermSet1\" -TermSet \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TestingGroup\"" }, { "Id": 1050, - "CommandName": "Move-PnPTerm", "Rank": 3, + "CommandName": "Move-PnPTerm", "Command": "Move-PnPTerm -Identity d67966b0-3b60-4331-8dc4-0b5a2ca730fc -TargetTerm 2ad90b20-b5c0-4544-ac64-25e32d51fa3b -MoveToTerm" }, { "Id": 1051, - "CommandName": "Move-PnPTermSet", "Rank": 1, + "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity 81e0a4b8-701d-459c-ad61-a1c7a81810ff -TermGroup 17e16b98-a8c2-4db6-a860-5c42dbc818f4 -TargetTermGroup cf33d1cd-42d8-431c-9e43-3d8dab9ea8fd" }, { "Id": 1052, - "CommandName": "Move-PnPTermSet", "Rank": 2, + "CommandName": "Move-PnPTermSet", "Command": "Move-PnPTermSet -Identity \"OperationLevel-1 Test\" -TermGroup \"FromPowerAutomate\" -TargetTermGroup \"TargetTermGroup\"" }, { "Id": 1053, - "CommandName": "New-PnPAzureADGroup", "Rank": 1, + "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname" }, { "Id": 1054, - "CommandName": "New-PnPAzureADGroup", "Rank": 2, + "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers" }, { "Id": 1055, - "CommandName": "New-PnPAzureADGroup", "Rank": 3, + "CommandName": "New-PnPAzureADGroup", "Command": "New-PnPAzureADGroup -DisplayName $displayName -Description $description -MailNickname $nickname -IsSecurityEnabled -IsMailEnabled" }, { "Id": 1056, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 1, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com" }, { "Id": 1057, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 2, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity 72e2eb87-c124-4bd9-8e01-a447a1752058 -IsUseableOnce:$true" }, { "Id": 1058, - "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Rank": 3, + "CommandName": "New-PnPAzureADUserTemporaryAccessPass", "Command": "New-PnPAzureADUserTemporaryAccessPass -Identity johndoe@contoso.onmicrosoft.com -StartDateTime (Get-Date).AddHours(2) -LifeTimeInMinutes 10 -IsUseableOnce:$true" }, { "Id": 1059, - "CommandName": "New-PnPAzureCertificate", "Rank": 1, + "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer" }, { "Id": 1060, - "CommandName": "New-PnPAzureCertificate", "Rank": 2, + "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -CommonName \"My Certificate\" -ValidYears 30" }, { "Id": 1061, - "CommandName": "New-PnPAzureCertificate", "Rank": 3, + "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -CertificatePassword (ConvertTo-SecureString -String \"pass@word1\" -AsPlainText -Force)" }, { "Id": 1062, - "CommandName": "New-PnPAzureCertificate", "Rank": 4, + "CommandName": "New-PnPAzureCertificate", "Command": "New-PnPAzureCertificate -OutPfx pnp.pfx -OutCert pnp.cer -SanNames $null" }, { "Id": 1063, - "CommandName": "New-PnPContainerType", "Rank": 1, + "CommandName": "New-PnPContainerType", "Command": "New-PnPContainerType -ContainerTypeName \"test1\" -OwningApplicationId 50785fde-3082-47ac-a36d-06282ac5c7da -AzureSubscription c7170373-eb8d-4984-8cc9-59bcc88c65a0 -ResouceGroup \"SPEmbed\" -Region \"Uk-South\"" }, { "Id": 1064, - "CommandName": "New-PnPGraphSubscription", "Rank": 1, + "CommandName": "New-PnPGraphSubscription", "Command": "New-PnPGraphSubscription -ChangeType Create -NotificationUrl https://mywebapiservice/notifications -Resource \"me/mailFolders('Inbox')/messages\" -ExpirationDateTime (Get-Date).AddDays(1) -ClientState [Guid]::NewGuid().ToString()" }, { "Id": 1065, - "CommandName": "New-PnPGraphSubscription", "Rank": 2, + "CommandName": "New-PnPGraphSubscription", "Command": "New-PnPGraphSubscription -ChangeType Updates -NotificationUrl https://mywebapiservice/notifications -Resource \"Users\" -ExpirationDateTime (Get-Date).AddHours(1) -ClientState [Guid]::NewGuid().ToString()" }, { "Id": 1066, - "CommandName": "New-PnPGroup", "Rank": 1, + "CommandName": "New-PnPGroup", "Command": "New-PnPGroup -Title \"My Site Users\"" }, { "Id": 1067, - "CommandName": "New-PnPLibraryFileVersionBatchDeleteJob", "Rank": 1, + "CommandName": "New-PnPLibraryFileVersionBatchDeleteJob", "Command": "New-PnPLibraryFileVersionBatchDeleteJob -Identity \"Documents\" -DeleteBeforeDays 360" }, { "Id": 1068, - "CommandName": "New-PnPLibraryFileVersionBatchDeleteJob", "Rank": 2, + "CommandName": "New-PnPLibraryFileVersionBatchDeleteJob", "Command": "New-PnPLibraryFileVersionBatchDeleteJob -Identity \"Documents\" -DeleteBeforeDays 360 -Force" }, { "Id": 1069, - "CommandName": "New-PnPLibraryFileVersionBatchDeleteJob", "Rank": 3, + "CommandName": "New-PnPLibraryFileVersionBatchDeleteJob", "Command": "New-PnPLibraryFileVersionBatchDeleteJob -Identity \"Documents\" -Automatic" }, { "Id": 1070, - "CommandName": "New-PnPLibraryFileVersionBatchDeleteJob", "Rank": 4, + "CommandName": "New-PnPLibraryFileVersionBatchDeleteJob", "Command": "New-PnPLibraryFileVersionBatchDeleteJob -Identity \"Documents\" -MajorVersionLimit 30 -MajorWithMinorVersionsLimit 10" }, { "Id": 1071, - "CommandName": "New-PnPLibraryFileVersionExpirationReportJob", "Rank": 1, + "CommandName": "New-PnPLibraryFileVersionExpirationReportJob", "Command": "New-PnPLibraryFileVersionExpirationReportJob -Identity \"Documents\" -ReportUrl \"https://contoso.sharepoint.com/sites/reports/MyReports/VersionReport.csv\"" }, { "Id": 1072, - "CommandName": "New-PnPList", "Rank": 1, + "CommandName": "New-PnPList", "Command": "New-PnPList -Title Announcements -Template Announcements" }, { "Id": 1073, - "CommandName": "New-PnPList", "Rank": 2, + "CommandName": "New-PnPList", "Command": "New-PnPList -Title \"Demo List\" -Url \"lists/DemoList\" -Template Announcements" }, { "Id": 1074, - "CommandName": "New-PnPList", "Rank": 3, + "CommandName": "New-PnPList", "Command": "New-PnPList -Title HiddenList -Template GenericList -Hidden" }, { "Id": 1075, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname" }, { "Id": 1076, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners \"owner1@domain.com\" -Members \"member1@domain.com\"" }, { "Id": 1077, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate" }, { "Id": 1078, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate" }, { "Id": 1079, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName \"myPnPDemo1\" -Description $description -MailNickname $nickname -Owners $arrayOfOwners -Members $arrayOfMembers -IsPrivate -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { "Id": 1080, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -IsPrivate -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { "Id": 1081, - "CommandName": "New-PnPMicrosoft365Group", "Rank": 7, + "CommandName": "New-PnPMicrosoft365Group", "Command": "New-PnPMicrosoft365Group -DisplayName $displayName -Description $description -MailNickname $nickname -DynamicMembershipRule \"(user.department -eq \"\"HR\"\")\"" }, { "Id": 1082, - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "New-PnPMicrosoft365GroupSettings", "Command": "New-PnPMicrosoft365GroupSettings -DisplayName \"Group.Unified\" -TemplateId \"62375ab9-6b52-47ed-826b-58e47e0e304b\" -Values @{\"GuestUsageGuidelinesUrl\"=\"https://privacy.contoso.com/privacystatement\";\"EnableMSStandardBlockedWords\"=\"true\"}" }, { "Id": 1083, - "CommandName": "New-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "New-PnPMicrosoft365GroupSettings", "Command": "New-PnPMicrosoft365GroupSettings -Identity $groupId -DisplayName \"Group.Unified.Guest\" -TemplateId \"08d542b9-071f-4e16-94b0-74abb372e3d9\" -Values @{\"AllowToAddGuests\"=\"false\"}" }, { "Id": 1084, - "CommandName": "New-PnPPersonalSite", "Rank": 1, + "CommandName": "New-PnPPersonalSite", "Command": "New-PnPPersonalSite -Email @('katiej@contoso.onmicrosoft.com','garth@contoso.onmicrosoft.com')" }, { "Id": 1085, - "CommandName": "New-PnPPlannerPlan", "Rank": 1, + "CommandName": "New-PnPPlannerPlan", "Command": "New-PnPPlannerPlan -Group \"Marketing\" -Title \"Conference Plan\"" }, { "Id": 1086, - "CommandName": "New-PnpProfileCardProperty", "Rank": 1, + "CommandName": "New-PnpProfileCardProperty", "Command": "New-PnpProfileCardProperty -PropertyName CustomAttribute1 -DisplayName \"Cost Centre\"" }, { "Id": 1087, - "CommandName": "New-PnPSdnProvider", "Rank": 1, + "CommandName": "New-PnPSdnProvider", "Command": "New-PnPSdnProvider -ID \"Hive\" -License \"\"" }, { "Id": 1088, - "CommandName": "New-PnPSearchExternalConnection", "Rank": 1, + "CommandName": "New-PnPSearchExternalConnection", "Command": "New-PnPSearchExternalConnection -Identity \"pnppowershell\" -Name \"PnP PowerShell\" -Description \"External content ingested using PnP PowerShell\"" }, { "Id": 1089, - "CommandName": "New-PnPSearchExternalConnection", "Rank": 2, + "CommandName": "New-PnPSearchExternalConnection", "Command": "New-PnPSearchExternalConnection -Identity \"pnppowershell\" -Name \"PnP PowerShell\" -Description \"External content ingested using PnP PowerShell\" -AuthorizedAppIds \"00000000-0000-0000-0000-000000000000\",\"11111111-1111-1111-1111-111111111111\"" }, { "Id": 1090, - "CommandName": "New-PnPSite", "Rank": 1, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { "Id": 1091, - "CommandName": "New-PnPSite", "Rank": 2, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesign Showcase" }, { "Id": 1092, - "CommandName": "New-PnPSite", "Rank": 3, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { "Id": 1093, - "CommandName": "New-PnPSite", "Rank": 4, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { "Id": 1094, - "CommandName": "New-PnPSite", "Rank": 5, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { "Id": 1095, - "CommandName": "New-PnPSite", "Rank": 6, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type CommunicationSite -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { "Id": 1096, - "CommandName": "New-PnPSite", "Rank": 7, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso" }, { "Id": 1097, - "CommandName": "New-PnPSite", "Rank": 8, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -IsPublic" }, { "Id": 1098, - "CommandName": "New-PnPSite", "Rank": 9, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -Lcid 1040" }, { "Id": 1099, - "CommandName": "New-PnPSite", "Rank": 10, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -Title 'Team Contoso' -Alias contoso -SiteAlias contoso-site" }, { "Id": 1100, - "CommandName": "New-PnPSite", "Rank": 11, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso" }, { "Id": 1101, - "CommandName": "New-PnPSite", "Rank": 12, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -SiteDesignId ae2349d5-97d6-4440-94d1-6516b72449ac" }, { "Id": 1102, - "CommandName": "New-PnPSite", "Rank": 13, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Classification \"HBI\"" }, { "Id": 1103, - "CommandName": "New-PnPSite", "Rank": 14, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -ShareByEmailEnabled" }, { "Id": 1104, - "CommandName": "New-PnPSite", "Rank": 15, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSiteWithoutMicrosoft365Group -Title Contoso -Url https://tenant.sharepoint.com/sites/contoso -Lcid 1040" }, { "Id": 1105, - "CommandName": "New-PnPSite", "Rank": 16, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\"" }, { "Id": 1106, - "CommandName": "New-PnPSite", "Rank": 17, + "CommandName": "New-PnPSite", "Command": "New-PnPSite -Type TeamSite -TimeZone UTCPLUS0200_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS -Title \"Contoso\" -Alias \"Contoso\" -WelcomeEmailDisabled -SubscribeNewGroupMembers -AllowOnlyMembersToPost -CalendarMemberReadOnly -ConnectorsDisabled -HideGroupInOutlook -SubscribeMembersToCalendarEventsDisabled" }, { "Id": 1107, - "CommandName": "New-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "New-PnPSiteCollectionTermStore", "Command": "New-PnPSiteCollectionTermStore" }, { "Id": 1108, - "CommandName": "New-PnPSiteFileVersionBatchDeleteJob", "Rank": 1, + "CommandName": "New-PnPSiteFileVersionBatchDeleteJob", "Command": "New-PnPSiteFileVersionBatchDeleteJob -DeleteBeforeDays 360" }, { "Id": 1109, - "CommandName": "New-PnPSiteFileVersionBatchDeleteJob", "Rank": 2, + "CommandName": "New-PnPSiteFileVersionBatchDeleteJob", "Command": "New-PnPSiteFileVersionBatchDeleteJob -DeleteBeforeDays 360 -Force" }, { "Id": 1110, - "CommandName": "New-PnPSiteFileVersionBatchDeleteJob", "Rank": 3, + "CommandName": "New-PnPSiteFileVersionBatchDeleteJob", "Command": "New-PnPSiteFileVersionBatchDeleteJob -Automatic" }, { "Id": 1111, - "CommandName": "New-PnPSiteFileVersionBatchDeleteJob", "Rank": 4, + "CommandName": "New-PnPSiteFileVersionBatchDeleteJob", "Command": "New-PnPSiteFileVersionBatchDeleteJob -MajorVersionLimit 30 -MajorWithMinorVersionsLimit 10" }, { "Id": 1112, - "CommandName": "New-PnPSiteFileVersionExpirationReportJob", "Rank": 1, + "CommandName": "New-PnPSiteFileVersionExpirationReportJob", "Command": "New-PnPSiteFileVersionExpirationReportJob -ReportUrl \"https://contoso.sharepoint.com/sites/reports/MyReports/VersionReport.csv\"" }, { "Id": 1113, - "CommandName": "New-PnPSiteGroup", "Rank": 1, + "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Name \"Project Leads\" -PermissionLevels \"Full Control\"" }, { "Id": 1114, - "CommandName": "New-PnPSiteGroup", "Rank": 2, + "CommandName": "New-PnPSiteGroup", "Command": "New-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/marketing\" -Name \"NewGroupName\" -PermissionLevels \"Design\"" }, { "Id": 1115, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 1, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml" }, { "Id": 1116, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 2, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp" }, { "Id": 1117, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 3, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js" }, { "Id": 1118, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 4, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\"" }, { "Id": 1119, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 5, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -ContentType \"Test Content Type\"" }, { "Id": 1120, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 6, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.xml -Folder c:\\temp -Match *.js -TargetFolder \"Shared Documents\" -Properties @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { "Id": 1121, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 7, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp" }, { "Id": 1122, - "CommandName": "New-PnPSiteTemplateFromFolder", "Rank": 8, + "CommandName": "New-PnPSiteTemplateFromFolder", "Command": "New-PnPSiteTemplateFromFolder -Out template.pnp -Folder c:\\temp" }, { "Id": 1123, - "CommandName": "New-PnPTeamsApp", "Rank": 1, + "CommandName": "New-PnPTeamsApp", "Command": "New-PnPTeamsApp -Path c:\\myapp.zip" }, { "Id": 1124, - "CommandName": "New-PnPTeamsTeam", "Rank": 1, + "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false" }, { "Id": 1125, - "CommandName": "New-PnPTeamsTeam", "Rank": 2, + "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -GroupId $groupId" }, { "Id": 1126, - "CommandName": "New-PnPTeamsTeam", "Rank": 3, + "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled" }, { "Id": 1127, - "CommandName": "New-PnPTeamsTeam", "Rank": 4, + "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -AllowCreateUpdateRemoveTabs $false -AllowUserDeleteMessages $false -ResourceBehaviorOptions WelcomeEmailDisabled, HideGroupInOutlook" }, { "Id": 1128, - "CommandName": "New-PnPTeamsTeam", "Rank": 5, + "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\"" }, { "Id": 1129, - "CommandName": "New-PnPTeamsTeam", "Rank": 6, + "CommandName": "New-PnPTeamsTeam", "Command": "New-PnPTeamsTeam -DisplayName \"myPnPDemo1\" -Visibility Private -Owners \"user1@contoso.onmicrosoft.com\",\"user2@contoso.onmicrosoft.com\" -Members \"user3@contoso.onmicrosoft.com\" -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { "Id": 1130, - "CommandName": "New-PnPTenantSite", "Rank": 1, + "CommandName": "New-PnPTenantSite", "Command": "New-PnPTenantSite -Title Contoso -Url \"https://tenant.sharepoint.com/sites/contoso\" -Owner user@example.org -TimeZone 4 -Template STS#0" }, { "Id": 1131, - "CommandName": "New-PnPTenantSite", "Rank": 2, + "CommandName": "New-PnPTenantSite", "Command": "New-PnPTenantSite -Title Contoso -Url /sites/contososite -Owner user@example.org -TimeZone 4 -Template STS#0" }, { "Id": 1132, - "CommandName": "New-PnPTerm", "Rank": 1, + "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\"" }, { "Id": 1133, - "CommandName": "New-PnPTerm", "Rank": 2, + "CommandName": "New-PnPTerm", "Command": "New-PnPTerm -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { "Id": 1134, - "CommandName": "New-PnPTermGroup", "Rank": 1, + "CommandName": "New-PnPTermGroup", "Command": "New-PnPTermGroup -GroupName \"Countries\"" }, { "Id": 1135, - "CommandName": "New-PnPTermGroup", "Rank": 2, + "CommandName": "New-PnPTermGroup", "Command": "New-PnPTermGroup -GroupName \"Countries\" -Contributors @(\"i:0#.f|membership|pradeepg@gautamdev.onmicrosoft.com\",\"i:0#.f|membership|adelev@gautamdev.onmicrosoft.com\") -Managers @(\"i:0#.f|membership|alexw@gautamdev.onmicrosoft.com\",\"i:0#.f|membership|diegos@gautamdev.onmicrosoft.com\")" }, { "Id": 1136, - "CommandName": "New-PnPTermLabel", "Rank": 1, + "CommandName": "New-PnPTermLabel", "Command": "New-PnPTermLabel -Name \"Finanzwesen\" -Lcid 1031 -Term (Get-PnPTerm -Identity \"Finance\" -TermSet \"Departments\" -TermGroup \"Corporate\")" }, { "Id": 1137, - "CommandName": "New-PnPTermSet", "Rank": 1, + "CommandName": "New-PnPTermSet", "Command": "New-PnPTermSet -Name \"Department\" -TermGroup \"Corporate\"" }, { "Id": 1138, - "CommandName": "New-PnPTodoList", "Rank": 1, + "CommandName": "New-PnPTodoList", "Command": "New-PnPTodoList -DisplayName \"Travel items\"" }, { "Id": 1139, - "CommandName": "New-PnPTodoList", "Rank": 2, + "CommandName": "New-PnPTodoList", "Command": "New-PnPTodoList -User john@doe.com -DisplayName \"Travel Items\"" }, { "Id": 1140, - "CommandName": "New-PnPUPABulkImportJob", "Rank": 1, + "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"}" }, { "Id": 1141, - "CommandName": "New-PnPUPABulkImportJob", "Rank": 2, + "CommandName": "New-PnPUPABulkImportJob", "Command": "New-PnPUPABulkImportJob -Url \"https://{tenant}.sharepoint.com/sites/userprofilesync/Shared Documents/profiles.json\" -IdProperty \"IdName\" -UserProfilePropertyMapping @{\"Department\"=\"Department\"} -Wait -Verbose" }, { "Id": 1142, - "CommandName": "New-PnPUser", "Rank": 1, + "CommandName": "New-PnPUser", "Command": "New-PnPUser -LoginName user@company.com" }, { "Id": 1143, - "CommandName": "New-PnPVivaEngageCommunity", "Rank": 1, + "CommandName": "New-PnPVivaEngageCommunity", "Command": "New-PnPVivaEngageCommunity -DisplayName \"myPnPDemo1\" -Description \"Viva engage community description\" -Privacy Public" }, { "Id": 1144, - "CommandName": "New-PnPWeb", "Rank": 1, + "CommandName": "New-PnPWeb", "Command": "New-PnPWeb -Title \"Project A Web\" -Url projectA -Description \"Information about Project A\" -Locale 1033 -Template \"STS#0\"" }, { "Id": 1145, - "CommandName": "Publish-PnPApp", "Rank": 1, + "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f" }, { "Id": 1146, - "CommandName": "Publish-PnPApp", "Rank": 2, + "CommandName": "Publish-PnPApp", "Command": "Publish-PnPApp -Identity 2646ccc3-6a2b-46ef-9273-81411cbbb60f -Scope Site" }, { "Id": 1147, - "CommandName": "Publish-PnPContentType", "Rank": 1, + "CommandName": "Publish-PnPContentType", "Command": "Publish-PnPContentType -ContentType 0x0101" }, { "Id": 1148, - "CommandName": "Publish-PnPSyntexModel", "Rank": 1, + "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { "Id": 1149, - "CommandName": "Publish-PnPSyntexModel", "Rank": 2, + "CommandName": "Publish-PnPSyntexModel", "Command": "Publish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { "Id": 1150, - "CommandName": "Read-PnPSiteTemplate", "Rank": 1, + "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp" }, { "Id": 1151, - "CommandName": "Read-PnPSiteTemplate", "Rank": 2, + "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Path template.pnp -TemplateProviderExtensions $extensions" }, { "Id": 1152, - "CommandName": "Read-PnPSiteTemplate", "Rank": 3, + "CommandName": "Read-PnPSiteTemplate", "Command": "Read-PnPSiteTemplate -Xml $xml" }, { "Id": 1153, - "CommandName": "Read-PnPTenantTemplate", "Rank": 1, + "CommandName": "Read-PnPTenantTemplate", "Command": "Read-PnPTenantTemplate -Path template.pnp" }, { "Id": 1154, - "CommandName": "Register-PnPAppCatalogSite", "Rank": 1, + "CommandName": "Register-PnPAppCatalogSite", "Command": "Register-PnPAppCatalogSite -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\" -Owner admin@domain.com -TimeZoneId 4" }, { "Id": 1155, - "CommandName": "Register-PnPAzureADApp", "Rank": 1, + "CommandName": "Register-PnPAzureADApp", "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser" }, { "Id": 1156, - "CommandName": "Register-PnPAzureADApp", "Rank": 2, + "CommandName": "Register-PnPAzureADApp", "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { "Id": 1157, - "CommandName": "Register-PnPAzureADApp", "Rank": 3, + "CommandName": "Register-PnPAzureADApp", "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -Store CurrentUser -GraphApplicationPermissions \"User.Read.All\" -SharePointApplicationPermissions \"Sites.Read.All\"" }, { "Id": 1158, - "CommandName": "Register-PnPAzureADApp", "Rank": 4, + "CommandName": "Register-PnPAzureADApp", "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -OutPath c:\\ -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { "Id": 1159, - "CommandName": "Register-PnPAzureADApp", "Rank": 5, + "CommandName": "Register-PnPAzureADApp", "Command": "Register-PnPAzureADApp -DeviceLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { "Id": 1160, - "CommandName": "Register-PnPAzureADApp", "Rank": 6, + "CommandName": "Register-PnPAzureADApp", "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force)" }, { "Id": 1161, - "CommandName": "Register-PnPAzureADApp", "Rank": 7, + "CommandName": "Register-PnPAzureADApp", "Command": "Register-PnPAzureADApp -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -CertificatePath c:\\certificate.pfx -CertificatePassword (ConvertTo-SecureString -String \"password\" -AsPlainText -Force) -LogoFilePath c:\\logo.png" }, { "Id": 1162, - "CommandName": "Register-PnPAzureADApp", "Rank": 8, + "CommandName": "Register-PnPAzureADApp", "Command": "Register-PnPAzureADApp -ApplicationName \"ACS App\" -Tenant yourtenant.onmicrosoft.com -OutPath c:\\temp -GraphApplicationPermissions \"User.Read.All\" -GraphDelegatePermissions \"Sites.Read.All\" -SharePointApplicationPermissions \"Sites.Read.All\" -SharePointDelegatePermissions \"AllSites.Read\"" }, { "Id": 1163, - "CommandName": "Register-PnPEntraIDAppForInteractiveLogin", "Rank": 1, + "CommandName": "Register-PnPEntraIDAppForInteractiveLogin", "Command": "Register-PnPEntraIDAppForInteractiveLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com" }, { "Id": 1164, - "CommandName": "Register-PnPEntraIDAppForInteractiveLogin", "Rank": 2, + "CommandName": "Register-PnPEntraIDAppForInteractiveLogin", "Command": "Register-PnPEntraIDAppForInteractiveLogin -ApplicationName TestApp -Tenant yourtenant.onmicrosoft.com -GraphDelegatePermissions \"Group.Read.All\" -SharePointDelegatePermissions \"AllSites.FullControl\"" }, { "Id": 1165, - "CommandName": "Register-PnPHubSite", "Rank": 1, + "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { "Id": 1166, - "CommandName": "Register-PnPHubSite", "Rank": 2, + "CommandName": "Register-PnPHubSite", "Command": "Register-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\" -Principals \"user@contoso.com\"" }, { "Id": 1167, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 1, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey" }, { "Id": 1168, - "CommandName": "Remove-PnPAdaptiveScopeProperty", "Rank": 2, + "CommandName": "Remove-PnPAdaptiveScopeProperty", "Command": "Remove-PnPAdaptiveScopeProperty -Key MyKey -Force" }, { "Id": 1169, - "CommandName": "Remove-PnPAlert", "Rank": 1, + "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7" }, { "Id": 1170, - "CommandName": "Remove-PnPAlert", "Rank": 2, + "CommandName": "Remove-PnPAlert", "Command": "Remove-PnPAlert -Identity 641ac67f-0ce0-4837-874a-743c8f8572a7 -User \"i:0#.f|membership|Alice@contoso.onmicrosoft.com\"" }, { "Id": 1171, - "CommandName": "Remove-PnPApp", "Rank": 1, + "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { "Id": 1172, - "CommandName": "Remove-PnPApp", "Rank": 2, + "CommandName": "Remove-PnPApp", "Command": "Remove-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { "Id": 1173, - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { "Id": 1174, - "CommandName": "Remove-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Remove-PnPApplicationCustomizer", "Command": "Remove-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { "Id": 1175, - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\"" }, { "Id": 1176, - "CommandName": "Remove-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Remove-PnPAvailableSiteClassification", "Command": "Remove-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { "Id": 1177, - "CommandName": "Remove-PnPAzureADApp", "Rank": 1, + "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity MyApp" }, { "Id": 1178, - "CommandName": "Remove-PnPAzureADApp", "Rank": 2, + "CommandName": "Remove-PnPAzureADApp", "Command": "Remove-PnPAzureADApp -Identity 93a9772d-d0af-4ed8-9821-17282b64690e" }, { "Id": 1179, - "CommandName": "Remove-PnPAzureADGroup", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $groupId" }, { "Id": 1180, - "CommandName": "Remove-PnPAzureADGroup", "Rank": 2, + "CommandName": "Remove-PnPAzureADGroup", "Command": "Remove-PnPAzureADGroup -Identity $group" }, { "Id": 1181, - "CommandName": "Remove-PnPAzureADGroupMember", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupMember", "Command": "Remove-PnPAzureADGroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { "Id": 1182, - "CommandName": "Remove-PnPAzureADGroupOwner", "Rank": 1, + "CommandName": "Remove-PnPAzureADGroupOwner", "Command": "Remove-PnPAzureADGroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { "Id": 1183, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 1, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933 -AppRoleName \"User.ReadWrite.All\"" }, { "Id": 1184, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 2, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\" -AppRoleName \"Group.ReadWrite.All\"" }, { "Id": 1185, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 3, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal 797ee8a7-a950-4eb8-945d-7f10cc68a933" }, { "Id": 1186, - "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Rank": 4, + "CommandName": "Remove-PnPAzureADServicePrincipalAssignedAppRole", "Command": "Remove-PnPAzureADServicePrincipalAssignedAppRole -Principal \"My application\"" }, { "Id": 1187, - "CommandName": "Remove-PnPAzureADUser", "Rank": 1, + "CommandName": "Remove-PnPAzureADUser", "Command": "Remove-PnPAzureADUser -Identity johndoe@contoso.onmicrosoft.com" }, { "Id": 1188, - "CommandName": "Remove-PnPAzureADUser", "Rank": 2, + "CommandName": "Remove-PnPAzureADUser", "Command": "Remove-PnPAzureADUser -Identity 5a4c547a-1440-4f64-9952-a0c6f1c9e7ea" }, { "Id": 1189, - "CommandName": "Remove-PnPContainer", "Rank": 1, + "CommandName": "Remove-PnPContainer", "Command": "Remove-PnPContainer -Identity \"b!aBrXSxKDdUKZsaK3Djug6C5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" }, { "Id": 1190, - "CommandName": "Remove-PnPContainer", "Rank": 2, + "CommandName": "Remove-PnPContainer", "Command": "Remove-PnPContainer -Identity \"https://contoso.sharepoint.com/contentstorage/CSP_4bd71a68-8312-4275-99b1-a2b70e3ba0e8\"" }, { "Id": 1191, - "CommandName": "Remove-PnPContainerType", "Rank": 1, + "CommandName": "Remove-PnPContainerType", "Command": "Remove-PnPContainerType -Identity 00be1092-0c75-028a-18db-89e57908e7d6" }, { "Id": 1192, - "CommandName": "Remove-PnPContentType", "Rank": 1, + "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\"" }, { "Id": 1193, - "CommandName": "Remove-PnPContentType", "Rank": 2, + "CommandName": "Remove-PnPContentType", "Command": "Remove-PnPContentType -Identity \"Project Document\" -Force" }, { "Id": 1194, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType \"Test CT\" -DocumentSet \"Test Document Set\"" }, { "Id": 1195, - "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Rank": 2, + "CommandName": "Remove-PnPContentTypeFromDocumentSet", "Command": "Remove-PnPContentTypeFromDocumentSet -ContentType 0x0101001F1CEFF1D4126E4CAD10F00B6137E969 -DocumentSet 0x0120D520005DB65D094035A241BAC9AF083F825F3B" }, { "Id": 1196, - "CommandName": "Remove-PnPContentTypeFromList", "Rank": 1, + "CommandName": "Remove-PnPContentTypeFromList", "Command": "Remove-PnPContentTypeFromList -List \"Documents\" -ContentType \"Project Document\"" }, { "Id": 1197, - "CommandName": "Remove-PnPCustomAction", "Rank": 1, + "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { "Id": 1198, - "CommandName": "Remove-PnPCustomAction", "Rank": 2, + "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web" }, { "Id": 1199, - "CommandName": "Remove-PnPCustomAction", "Rank": 3, + "CommandName": "Remove-PnPCustomAction", "Command": "Remove-PnPCustomAction -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2 -Force" }, { "Id": 1200, - "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Remove-PnPDeletedMicrosoft365Group", "Command": "Remove-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { "Id": 1201, - "CommandName": "Remove-PnPEventReceiver", "Rank": 1, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { "Id": 1202, - "CommandName": "Remove-PnPEventReceiver", "Rank": 2, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity fb689d0e-eb99-4f13-beb3-86692fd39f22" }, { "Id": 1203, - "CommandName": "Remove-PnPEventReceiver", "Rank": 3, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList -Identity MyReceiver" }, { "Id": 1204, - "CommandName": "Remove-PnPEventReceiver", "Rank": 4, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -List ProjectList" }, { "Id": 1205, - "CommandName": "Remove-PnPEventReceiver", "Rank": 5, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver" }, { "Id": 1206, - "CommandName": "Remove-PnPEventReceiver", "Rank": 6, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Site" }, { "Id": 1207, - "CommandName": "Remove-PnPEventReceiver", "Rank": 7, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope Web" }, { "Id": 1208, - "CommandName": "Remove-PnPEventReceiver", "Rank": 8, + "CommandName": "Remove-PnPEventReceiver", "Command": "Remove-PnPEventReceiver -Scope All" }, { "Id": 1209, - "CommandName": "Remove-PnPField", "Rank": 1, + "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -Identity \"Speakers\"" }, { "Id": 1210, - "CommandName": "Remove-PnPField", "Rank": 2, + "CommandName": "Remove-PnPField", "Command": "Remove-PnPField -List \"Demo list\" -Identity \"Speakers\"" }, { "Id": 1211, - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 1, + "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\"" }, { "Id": 1212, - "CommandName": "Remove-PnPFieldFromContentType", "Rank": 2, + "CommandName": "Remove-PnPFieldFromContentType", "Command": "Remove-PnPFieldFromContentType -Field \"Project_Name\" -ContentType \"Project Document\" -DoNotUpdateChildren" }, { "Id": 1213, - "CommandName": "Remove-PnPFile", "Rank": 1, + "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -ServerRelativeUrl /sites/project/_catalogs/themes/15/company.spcolor" }, { "Id": 1214, - "CommandName": "Remove-PnPFile", "Rank": 2, + "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor" }, { "Id": 1215, - "CommandName": "Remove-PnPFile", "Rank": 3, + "CommandName": "Remove-PnPFile", "Command": "Remove-PnPFile -SiteRelativeUrl _catalogs/themes/15/company.spcolor -Recycle" }, { "Id": 1216, - "CommandName": "Remove-PnPFileFromSiteTemplate", "Rank": 1, + "CommandName": "Remove-PnPFileFromSiteTemplate", "Command": "Remove-PnPFileFromSiteTemplate -Path template.pnp -FilePath filePath" }, { "Id": 1217, - "CommandName": "Remove-PnPFileSharingLink", "Rank": 1, + "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\"" }, { "Id": 1218, - "CommandName": "Remove-PnPFileSharingLink", "Rank": 2, + "CommandName": "Remove-PnPFileSharingLink", "Command": "Remove-PnPFileSharingLink -FileUrl \"/sites/demo/Shared Documents/Test.docx\" -Force" }, { "Id": 1219, - "CommandName": "Remove-PnPFileVersion", "Rank": 1, + "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { "Id": 1220, - "CommandName": "Remove-PnPFileVersion", "Rank": 2, + "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { "Id": 1221, - "CommandName": "Remove-PnPFileVersion", "Rank": 3, + "CommandName": "Remove-PnPFileVersion", "Command": "Remove-PnPFileVersion -Url Documents/MyDocument.docx -All" }, { "Id": 1222, - "CommandName": "Remove-PnPFlow", "Rank": 1, + "CommandName": "Remove-PnPFlow", "Command": "Remove-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { "Id": 1223, - "CommandName": "Remove-PnPFlow", "Rank": 2, + "CommandName": "Remove-PnPFlow", "Command": "Remove-PnPFlow -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Identity fba63225-baf9-4d76-86a1-1b42c917a182 -ThrowExceptionIfPowerAutomateNotFound" }, { "Id": 1224, - "CommandName": "Remove-PnPFlowOwner", "Rank": 1, + "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com" }, { "Id": 1225, - "CommandName": "Remove-PnPFlowOwner", "Rank": 2, + "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User 6844c04a-8ee7-40ad-af66-28f6e948cd04" }, { "Id": 1226, - "CommandName": "Remove-PnPFlowOwner", "Rank": 3, + "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin" }, { "Id": 1227, - "CommandName": "Remove-PnPFlowOwner", "Rank": 4, + "CommandName": "Remove-PnPFlowOwner", "Command": "Remove-PnPFlowOwner (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment) -Identity f07c34a9-a586-4e58-91fb-e7ea19741b61 -User username@tenant.onmicrosoft.com -AsAdmin -Force" }, { "Id": 1228, - "CommandName": "Remove-PnPFolder", "Rank": 1, + "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage" }, { "Id": 1229, - "CommandName": "Remove-PnPFolder", "Rank": 2, + "CommandName": "Remove-PnPFolder", "Command": "Remove-PnPFolder -Name NewFolder -Folder _catalogs/masterpage -Recycle" }, { "Id": 1230, - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 1, + "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\"" }, { "Id": 1231, - "CommandName": "Remove-PnPFolderSharingLink", "Rank": 2, + "CommandName": "Remove-PnPFolderSharingLink", "Command": "Remove-PnPFolderSharingLink -Folder \"/sites/demo/Shared Documents/Test\" -Force" }, { "Id": 1232, - "CommandName": "Remove-PnPGraphSubscription", "Rank": 1, + "CommandName": "Remove-PnPGraphSubscription", "Command": "Remove-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da" }, { "Id": 1233, - "CommandName": "Remove-PnPGroup", "Rank": 1, + "CommandName": "Remove-PnPGroup", "Command": "Remove-PnPGroup -Identity \"My Users\"" }, { "Id": 1234, - "CommandName": "Remove-PnPGroupMember", "Rank": 1, + "CommandName": "Remove-PnPGroupMember", "Command": "Remove-PnPGroupMember -LoginName user@company.com -Group 'Marketing Site Members'" }, { "Id": 1235, - "CommandName": "Remove-PnPHomeSite", "Rank": 1, + "CommandName": "Remove-PnPHomeSite", "Command": "Remove-PnPHomeSite" }, { "Id": 1236, - "CommandName": "Remove-PnPHubSiteAssociation", "Rank": 1, + "CommandName": "Remove-PnPHubSiteAssociation", "Command": "Remove-PnPHubSiteAssociation -Site \"https://tenant.sharepoint.com/sites/mysite\"" }, { "Id": 1237, - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 1, + "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteId 6638bd4c-d88d-447c-9eb2-c84f28ba8b15" }, { "Id": 1238, - "CommandName": "Remove-PnPHubToHubAssociation", "Rank": 2, + "CommandName": "Remove-PnPHubToHubAssociation", "Command": "Remove-PnPHubToHubAssociation -HubSiteUrl \"https://yourtenant.sharepoint.com/sites/sourcehub\"" }, { "Id": 1239, - "CommandName": "Remove-PnPIndexedProperty", "Rank": 1, + "CommandName": "Remove-PnPIndexedProperty", "Command": "Remove-PnPIndexedProperty -key \"MyIndexProperty\"" }, { "Id": 1240, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 1, + "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery" }, { "Id": 1241, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 2, + "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site" }, { "Id": 1242, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 3, + "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity jQuery -Scope Site -Confirm:$false" }, { "Id": 1243, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 4, + "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Scope Site" }, { "Id": 1244, - "CommandName": "Remove-PnPJavaScriptLink", "Rank": 5, + "CommandName": "Remove-PnPJavaScriptLink", "Command": "Remove-PnPJavaScriptLink -Identity faea0ce2-f0c2-4d45-a4dc-73898f3c2f2e -Scope All" }, { "Id": 1245, - "CommandName": "Remove-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Remove-PnPKnowledgeHubSite", "Command": "Remove-PnPKnowledgeHubSite" }, { "Id": 1246, - "CommandName": "Remove-PnPLibraryFileVersionBatchDeleteJob", "Rank": 1, + "CommandName": "Remove-PnPLibraryFileVersionBatchDeleteJob", "Command": "Remove-PnPLibraryFileVersionBatchDeleteJob -Identity \"Documents\"" }, { "Id": 1247, - "CommandName": "Remove-PnPLibraryFileVersionBatchDeleteJob", "Rank": 2, + "CommandName": "Remove-PnPLibraryFileVersionBatchDeleteJob", "Command": "Remove-PnPLibraryFileVersionBatchDeleteJob -Identity \"Documents\" -DeleteBeforeDays 360 -Force" }, { "Id": 1248, - "CommandName": "Remove-PnPList", "Rank": 1, + "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements" }, { "Id": 1249, - "CommandName": "Remove-PnPList", "Rank": 2, + "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Force" }, { "Id": 1250, - "CommandName": "Remove-PnPList", "Rank": 3, + "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle" }, { "Id": 1251, - "CommandName": "Remove-PnPList", "Rank": 4, + "CommandName": "Remove-PnPList", "Command": "Remove-PnPList -Identity Announcements -Recycle -LargeList" }, { "Id": 1252, - "CommandName": "Remove-PnPListDesign", "Rank": 1, + "CommandName": "Remove-PnPListDesign", "Command": "Remove-PnPListDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { "Id": 1253, - "CommandName": "Remove-PnPListItem", "Rank": 1, + "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force" }, { "Id": 1254, - "CommandName": "Remove-PnPListItem", "Rank": 2, + "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\" -Identity \"1\" -Force -Recycle" }, { "Id": 1255, - "CommandName": "Remove-PnPListItem", "Rank": 3, + "CommandName": "Remove-PnPListItem", "Command": "Remove-PnPListItem -List \"Demo List\"" }, { "Id": 1256, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 1, + "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt" }, { "Id": 1257, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 2, + "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle" }, { "Id": 1258, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 3, + "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -FileName test.txt -Recycle -Force" }, { "Id": 1259, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 4, + "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All -Recycle -Force" }, { "Id": 1260, - "CommandName": "Remove-PnPListItemAttachment", "Rank": 5, + "CommandName": "Remove-PnPListItemAttachment", "Command": "Remove-PnPListItemAttachment -List \"Demo List\" -Identity 1 -All" }, { "Id": 1261, - "CommandName": "Remove-PnPListItemComment", "Rank": 1, + "CommandName": "Remove-PnPListItemComment", "Command": "Remove-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"test comment\" -Force" }, { "Id": 1262, - "CommandName": "Remove-PnPListItemComment", "Rank": 2, + "CommandName": "Remove-PnPListItemComment", "Command": "Remove-PnPListItemComment -List \"Demo List\" -Identity \"1\" -Text \"test comment\"" }, { "Id": 1263, - "CommandName": "Remove-PnPListItemComment", "Rank": 3, + "CommandName": "Remove-PnPListItemComment", "Command": "Remove-PnPListItemComment -List \"Demo List\" -Identity \"1\" -All -Force" }, { "Id": 1264, - "CommandName": "Remove-PnPListItemComment", "Rank": 4, + "CommandName": "Remove-PnPListItemComment", "Command": "Remove-PnPListItemComment -List \"Demo List\" -Identity \"1\" -All" }, { "Id": 1265, - "CommandName": "Remove-PnPListItemVersion", "Rank": 1, + "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { "Id": 1266, - "CommandName": "Remove-PnPListItemVersion", "Rank": 2, + "CommandName": "Remove-PnPListItemVersion", "Command": "Remove-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { "Id": 1267, - "CommandName": "Remove-PnPManagedAppId", "Rank": 1, + "CommandName": "Remove-PnPManagedAppId", "Command": "Remove-PnPManagedAppId -Url \"https://tenant.sharepoint.com\"" }, { "Id": 1268, - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $groupId" }, { "Id": 1269, - "CommandName": "Remove-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365Group", "Command": "Remove-PnPMicrosoft365Group -Identity $group" }, { "Id": 1270, - "CommandName": "Remove-PnPMicrosoft365GroupMember", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupMember", "Command": "Remove-PnPMicrosoft365GroupMember -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { "Id": 1271, - "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupOwner", "Command": "Remove-PnPMicrosoft365GroupOwner -Identity \"Project Team\" -Users \"john@contoso.onmicrosoft.com\",\"jane@contoso.onmicrosoft.com\"" }, { "Id": 1272, - "CommandName": "Remove-PnPMicrosoft365GroupPhoto", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupPhoto", "Command": "Remove-PnPMicrosoft365GroupPhoto -Identity \"Project Team\"" }, { "Id": 1273, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\"" }, { "Id": 1274, - "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Remove-PnPMicrosoft365GroupSettings", "Command": "Remove-PnPMicrosoft365GroupSettings -Identity \"10f686b9-9deb-4ad8-ba8c-1f9b7a00a22b\" -Group $groupId" }, { "Id": 1275, - "CommandName": "Remove-PnPNavigationNode", "Rank": 1, + "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Identity 1032" }, { "Id": 1276, - "CommandName": "Remove-PnPNavigationNode", "Rank": 2, + "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Recent -Location QuickLaunch" }, { "Id": 1277, - "CommandName": "Remove-PnPNavigationNode", "Rank": 3, + "CommandName": "Remove-PnPNavigationNode", "Command": "Remove-PnPNavigationNode -Title Home -Location TopNavigationBar -Force" }, { "Id": 1278, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\"" }, { "Id": 1279, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 2, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true" }, { "Id": 1280, - "CommandName": "Remove-PnPOrgAssetsLibrary", "Rank": 3, + "CommandName": "Remove-PnPOrgAssetsLibrary", "Command": "Remove-PnPOrgAssetsLibrary -LibraryUrl \"sites/branding/logos\" -ShouldRemoveFromCdn $true -CdnType Private" }, { "Id": 1281, - "CommandName": "Remove-PnPOrgNewsSite", "Rank": 1, + "CommandName": "Remove-PnPOrgNewsSite", "Command": "Remove-PnPOrgNewsSite -OrgNewsSiteUrl \"https://tenant.sharepoint.com/sites/mysite\"" }, { "Id": 1282, - "CommandName": "Remove-PnPPage", "Rank": 1, + "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\"" }, { "Id": 1283, - "CommandName": "Remove-PnPPage", "Rank": 2, + "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"Templates/MyPageTemplate\"" }, { "Id": 1284, - "CommandName": "Remove-PnPPage", "Rank": 3, + "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage $page" }, { "Id": 1285, - "CommandName": "Remove-PnPPage", "Rank": 4, + "CommandName": "Remove-PnPPage", "Command": "Remove-PnPPage -Identity \"MyPage\" -Recycle" }, { "Id": 1286, - "CommandName": "Remove-PnPPageComponent", "Rank": 1, + "CommandName": "Remove-PnPPageComponent", "Command": "Remove-PnPPageComponent -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82" }, { "Id": 1287, - "CommandName": "Remove-PnPPlannerBucket", "Rank": 1, + "CommandName": "Remove-PnPPlannerBucket", "Command": "Remove-PnPPlannerBucket -Group \"Marketing\" -Plan \"Conference\" -Identity \"Pre-conference Todos\"" }, { "Id": 1288, - "CommandName": "Remove-PnPPlannerPlan", "Rank": 1, + "CommandName": "Remove-PnPPlannerPlan", "Command": "Remove-PnPPlannerPlan -Group \"Marketing\" -Identity \"Conference Planning\"" }, { "Id": 1289, - "CommandName": "Remove-PnPPlannerRoster", "Rank": 1, + "CommandName": "Remove-PnPPlannerRoster", "Command": "Remove-PnPPlannerRoster -Identity \"6519868f-868f-6519-8f86-19658f861965\"" }, { "Id": 1290, - "CommandName": "Remove-PnPPlannerRosterMember", "Rank": 1, + "CommandName": "Remove-PnPPlannerRosterMember", "Command": "Remove-PnPPlannerRosterMember -Identity \"6519868f-868f-6519-8f86-19658f861965\" -User \"johndoe@contoso.onmicrosoft.com\"" }, { "Id": 1291, - "CommandName": "Remove-PnPPlannerTask", "Rank": 1, + "CommandName": "Remove-PnPPlannerTask", "Command": "Remove-PnPPlannerTask -Task _LIqnL4lZUqurT71i2-iY5YALFLk" }, { "Id": 1292, - "CommandName": "Remove-PnPProfileCardProperty", "Rank": 1, + "CommandName": "Remove-PnPProfileCardProperty", "Command": "Remove-PnPProfileCardProperty -PropertyName CustomAttribute1" }, { "Id": 1293, - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 1, + "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey" }, { "Id": 1294, - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 2, + "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /MyFolder" }, { "Id": 1295, - "CommandName": "Remove-PnPPropertyBagValue", "Rank": 3, + "CommandName": "Remove-PnPPropertyBagValue", "Command": "Remove-PnPPropertyBagValue -Key MyKey -Folder /" }, { "Id": 1296, - "CommandName": "Remove-PnPPublishingImageRendition", "Rank": 1, + "CommandName": "Remove-PnPPublishingImageRendition", "Command": "Remove-PnPPublishingImageRendition -Name \"MyImageRendition\" -Width 800 -Height 600" }, { "Id": 1297, - "CommandName": "Remove-PnPRoleDefinition", "Rank": 1, + "CommandName": "Remove-PnPRoleDefinition", "Command": "Remove-PnPRoleDefinition -Identity MyRoleDefinition" }, { "Id": 1298, - "CommandName": "Remove-PnPSdnProvider", "Rank": 1, + "CommandName": "Remove-PnPSdnProvider", "Command": "Remove-PnPSdnProvider -Confirm:false" }, { "Id": 1299, - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config" }, { "Id": 1300, - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Site" }, { "Id": 1301, - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { "Id": 1302, - "CommandName": "Remove-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Remove-PnPSearchConfiguration", "Command": "Remove-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { "Id": 1303, - "CommandName": "Remove-PnPSearchExternalConnection", "Rank": 1, + "CommandName": "Remove-PnPSearchExternalConnection", "Command": "Remove-PnPSearchExternalConnection -Identity \"pnppowershell\"" }, { "Id": 1304, - "CommandName": "Remove-PnPSearchExternalItem", "Rank": 1, + "CommandName": "Remove-PnPSearchExternalItem", "Command": "Remove-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\"" }, { "Id": 1305, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners \"user@contoso.onmicrosoft.com\"" }, { "Id": 1306, - "CommandName": "Remove-PnPSiteCollectionAdmin", "Rank": 2, + "CommandName": "Remove-PnPSiteCollectionAdmin", "Command": "Remove-PnPSiteCollectionAdmin -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { "Id": 1307, - "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionAppCatalog", "Command": "Remove-PnPSiteCollectionAppCatalog -Site \"https://contoso.sharepoint.com/sites/FinanceTeamsite\"" }, { "Id": 1308, - "CommandName": "Remove-PnPSiteCollectionTermStore", "Rank": 1, + "CommandName": "Remove-PnPSiteCollectionTermStore", "Command": "Remove-PnPSiteCollectionTermStore" }, { "Id": 1309, - "CommandName": "Remove-PnPSiteDesign", "Rank": 1, + "CommandName": "Remove-PnPSiteDesign", "Command": "Remove-PnPSiteDesign -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { "Id": 1310, - "CommandName": "Remove-PnPSiteDesignTask", "Rank": 1, + "CommandName": "Remove-PnPSiteDesignTask", "Command": "Remove-PnPSiteDesignTask -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { "Id": 1311, - "CommandName": "Remove-PnPSiteFileVersionBatchDeleteJob", "Rank": 1, + "CommandName": "Remove-PnPSiteFileVersionBatchDeleteJob", "Command": "Remove-PnPSiteFileVersionBatchDeleteJob" }, { "Id": 1312, - "CommandName": "Remove-PnPSiteFileVersionBatchDeleteJob", "Rank": 2, + "CommandName": "Remove-PnPSiteFileVersionBatchDeleteJob", "Command": "Remove-PnPSiteFileVersionBatchDeleteJob -Force" }, { "Id": 1313, - "CommandName": "Remove-PnPSiteGroup", "Rank": 1, + "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove -Site \"https://contoso.sharepoint.com/sites/marketing\"" }, { "Id": 1314, - "CommandName": "Remove-PnPSiteGroup", "Rank": 2, + "CommandName": "Remove-PnPSiteGroup", "Command": "Remove-PnPSiteGroup -Identity GroupToRemove" }, { "Id": 1315, - "CommandName": "Remove-PnPSiteScript", "Rank": 1, + "CommandName": "Remove-PnPSiteScript", "Command": "Remove-PnPSiteScript -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd" }, { "Id": 1316, - "CommandName": "Remove-PnPSiteUserInvitations", "Rank": 1, + "CommandName": "Remove-PnPSiteUserInvitations", "Command": "Remove-PnPSiteUserInvitations -Site \"https://contoso.sharepoint.com/sites/ContosoWeb1/\" -EmailAddress someone@example.com" }, { "Id": 1317, - "CommandName": "Remove-PnPStorageEntity", "Rank": 1, + "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey" }, { "Id": 1318, - "CommandName": "Remove-PnPStorageEntity", "Rank": 2, + "CommandName": "Remove-PnPStorageEntity", "Command": "Remove-PnPStorageEntity -Key MyKey -Scope Site" }, { "Id": 1319, - "CommandName": "Remove-PnPStoredCredential", "Rank": 1, + "CommandName": "Remove-PnPStoredCredential", "Command": "Remove-PnPStoredCredential -Name \"https://tenant.sharepoint.com\"" }, { "Id": 1320, - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 1, + "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\"" }, { "Id": 1321, - "CommandName": "Remove-PnPTaxonomyItem", "Rank": 2, + "CommandName": "Remove-PnPTaxonomyItem", "Command": "Remove-PnPTaxonomyItem -TermPath \"HR|Recruitment|Marketing\" -Force" }, { "Id": 1322, - "CommandName": "Remove-PnPTeamsApp", "Rank": 1, + "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity ac139d8b-fa2b-4ffe-88b3-f0b30158b58b" }, { "Id": 1323, - "CommandName": "Remove-PnPTeamsApp", "Rank": 2, + "CommandName": "Remove-PnPTeamsApp", "Command": "Remove-PnPTeamsApp -Identity \"My Teams App\"" }, { "Id": 1324, - "CommandName": "Remove-PnPTeamsChannel", "Rank": 1, + "CommandName": "Remove-PnPTeamsChannel", "Command": "Remove-PnPTeamsChannel -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Identity \"My Channel\"" }, { "Id": 1325, - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 1, + "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA==" }, { "Id": 1326, - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 2, + "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity 00000000-0000-0000-0000-000000000000" }, { "Id": 1327, - "CommandName": "Remove-PnPTeamsChannelUser", "Rank": 3, + "CommandName": "Remove-PnPTeamsChannelUser", "Command": "Remove-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Channel\" -Identity john.doe@contoso.com -Force" }, { "Id": 1328, - "CommandName": "Remove-PnPTeamsTab", "Rank": 1, + "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel \"General\" -Identity Wiki" }, { "Id": 1329, - "CommandName": "Remove-PnPTeamsTab", "Rank": 2, + "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity Wiki" }, { "Id": 1330, - "CommandName": "Remove-PnPTeamsTab", "Rank": 3, + "CommandName": "Remove-PnPTeamsTab", "Command": "Remove-PnPTeamsTab -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Channel 19:796d063b63e34497aeaf092c8fb9b44e@thread.skype -Identity fcef815d-2e8e-47a5-b06b-9bebba5c7852" }, { "Id": 1331, - "CommandName": "Remove-PnPTeamsTag", "Rank": 1, + "CommandName": "Remove-PnPTeamsTag", "Command": "Remove-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\"" }, { "Id": 1332, - "CommandName": "Remove-PnPTeamsTeam", "Rank": 1, + "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity 5beb63c5-0571-499e-94d5-3279fdd9b6b5" }, { "Id": 1333, - "CommandName": "Remove-PnPTeamsTeam", "Rank": 2, + "CommandName": "Remove-PnPTeamsTeam", "Command": "Remove-PnPTeamsTeam -Identity testteam" }, { "Id": 1334, - "CommandName": "Remove-PnPTeamsUser", "Rank": 1, + "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com" }, { "Id": 1335, - "CommandName": "Remove-PnPTeamsUser", "Rank": 2, + "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { "Id": 1336, - "CommandName": "Remove-PnPTeamsUser", "Rank": 3, + "CommandName": "Remove-PnPTeamsUser", "Command": "Remove-PnPTeamsUser -Team MyTeam -Users \"john@doe.com\",\"jane@doe.com\",\"mark@doe.com\"" }, { "Id": 1337, - "CommandName": "Remove-PnPTenantCdnOrigin", "Rank": 1, + "CommandName": "Remove-PnPTenantCdnOrigin", "Command": "Remove-PnPTenantCdnOrigin -OriginUrl /sites/site/subfolder -CdnType Public" }, { "Id": 1338, - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 1, + "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { "Id": 1339, - "CommandName": "Remove-PnPTenantDeletedSite", "Rank": 2, + "CommandName": "Remove-PnPTenantDeletedSite", "Command": "Remove-PnPTenantDeletedSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { "Id": 1340, - "CommandName": "Remove-PnPTenantRestrictedSearchAllowedList", "Rank": 1, + "CommandName": "Remove-PnPTenantRestrictedSearchAllowedList", "Command": "Remove-PnPTenantRestrictedSearchAllowedList -SitesListFileUrl \"C:\\temp\\sitelist.csv\" -ContainsHeader" }, { "Id": 1341, - "CommandName": "Remove-PnPTenantRestrictedSearchAllowedList", "Rank": 2, + "CommandName": "Remove-PnPTenantRestrictedSearchAllowedList", "Command": "Remove-PnPTenantRestrictedSearchAllowedList -SitesListFileUrl \"C:\\temp\\sitelist.csv\"" }, { "Id": 1342, - "CommandName": "Remove-PnPTenantRestrictedSearchAllowedList", "Rank": 3, + "CommandName": "Remove-PnPTenantRestrictedSearchAllowedList", "Command": "Remove-PnPTenantRestrictedSearchAllowedList -SitesList @(\"https://contoso.sharepoint.com/sites/Company311\",\"https://contoso.sharepoint.com/sites/contosoportal\")" }, { "Id": 1343, - "CommandName": "Remove-PnPTenantSite", "Rank": 1, + "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { "Id": 1344, - "CommandName": "Remove-PnPTenantSite", "Rank": 2, + "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -Force -SkipRecycleBin" }, { "Id": 1345, - "CommandName": "Remove-PnPTenantSite", "Rank": 3, + "CommandName": "Remove-PnPTenantSite", "Command": "Remove-PnPTenantSite -Url \"https://tenant.sharepoint.com/sites/contoso\" -FromRecycleBin" }, { "Id": 1346, - "CommandName": "Remove-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Remove-PnPTenantSyncClientRestriction", "Command": "Remove-PnPTenantSyncClientRestriction" }, { "Id": 1347, - "CommandName": "Remove-PnPTenantTheme", "Rank": 1, + "CommandName": "Remove-PnPTenantTheme", "Command": "Remove-PnPTenantTheme -Name \"MyCompanyTheme\"" }, { "Id": 1348, - "CommandName": "Remove-PnPTerm", "Rank": 1, + "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { "Id": 1349, - "CommandName": "Remove-PnPTerm", "Rank": 2, + "CommandName": "Remove-PnPTerm", "Command": "Remove-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { "Id": 1350, - "CommandName": "Remove-PnPTermGroup", "Rank": 1, + "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380" }, { "Id": 1351, - "CommandName": "Remove-PnPTermGroup", "Rank": 2, + "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"Corporate\"" }, { "Id": 1352, - "CommandName": "Remove-PnPTermGroup", "Rank": 3, + "CommandName": "Remove-PnPTermGroup", "Command": "Remove-PnPTermGroup -Identity \"HR\" -Force" }, { "Id": 1353, - "CommandName": "Remove-PnPTermLabel", "Rank": 1, + "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term 2d1f298b-804a-4a05-96dc-29b667adec62" }, { "Id": 1354, - "CommandName": "Remove-PnPTermLabel", "Rank": 2, + "CommandName": "Remove-PnPTermLabel", "Command": "Remove-PnPTermLabel -Label \"Marknadsföring\" -Lcid 1053 -Term \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\"" }, { "Id": 1355, - "CommandName": "Remove-PnPTodoList", "Rank": 1, + "CommandName": "Remove-PnPTodoList", "Command": "Remove-PnPTodoList -Identity \"AAMkAGU4MGE1OTRiLTUzMGEtNDRjZi05ZmVmLWFiMTkyYmQxODRjOQAuAAAAAACQV8RStyZCQJ4ydzjIK5HmAQD2LFcxdwYMRqbupn47nEYYAASYG0vWAAA=\"" }, { "Id": 1356, - "CommandName": "Remove-PnPTodoList", "Rank": 2, + "CommandName": "Remove-PnPTodoList", "Command": "Remove-PnPTodoList -Identity \"AAMkAGU4MGE1OTRiLTUzMGEtNDRjZi05ZmVmLWFiMTkyYmQxODRjOQAuAAAAAACQV8RStyZCQJ4ydzjIK5HmAQD2LFcxdwYMRqbupn47nEYYAASYG0vWAAA=\" -User john@doe.com" }, { "Id": 1357, - "CommandName": "Remove-PnPUser", "Rank": 1, + "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity 23" }, { "Id": 1358, - "CommandName": "Remove-PnPUser", "Rank": 2, + "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com" }, { "Id": 1359, - "CommandName": "Remove-PnPUser", "Rank": 3, + "CommandName": "Remove-PnPUser", "Command": "Remove-PnPUser -Identity i:0#.f|membership|user@tenant.onmicrosoft.com -Force:$false" }, { "Id": 1360, - "CommandName": "Remove-PnPUserInfo", "Rank": 1, + "CommandName": "Remove-PnPUserInfo", "Command": "Remove-PnPUserInfo -LoginName user@domain.com -Site \"https://yoursite.sharepoint.com/sites/team\"" }, { "Id": 1361, - "CommandName": "Remove-PnPUserProfile", "Rank": 1, + "CommandName": "Remove-PnPUserProfile", "Command": "Remove-PnPUserProfile -LoginName user@domain.com" }, { "Id": 1362, - "CommandName": "Remove-PnPUserProfilePhoto", "Rank": 1, + "CommandName": "Remove-PnPUserProfilePhoto", "Command": "Remove-PnPUserProfilePhoto -Identity \"john@contoso.onmicrosoft.com\"" }, { "Id": 1363, - "CommandName": "Remove-PnPView", "Rank": 1, + "CommandName": "Remove-PnPView", "Command": "Remove-PnPView -List \"Demo List\" -Identity \"All Items\"" }, { "Id": 1364, - "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Remove-PnPVivaConnectionsDashboardACE", "Command": "Remove-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\"" }, { "Id": 1365, - "CommandName": "Remove-PnPVivaEngageCommunity", "Rank": 1, + "CommandName": "Remove-PnPVivaEngageCommunity", "Command": "Remove-PnPVivaEngageCommunity -Identity \"eyJfdHlwZSI6Ikdyb3VwIiwiaWQiOiIyMTI0ODA3MTI3MDQifQ\"" }, { "Id": 1366, - "CommandName": "Remove-PnPWeb", "Rank": 1, + "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity projectA" }, { "Id": 1367, - "CommandName": "Remove-PnPWeb", "Rank": 2, + "CommandName": "Remove-PnPWeb", "Command": "Remove-PnPWeb -Identity 5fecaf67-6b9e-4691-a0ff-518fc9839aa0" }, { "Id": 1368, - "CommandName": "Remove-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Remove-PnPWebhookSubscription", "Command": "Remove-PnPWebhookSubscription -List MyList -Identity ea1533a8-ff03-415b-a7b6-517ee50db8b6" }, { "Id": 1369, - "CommandName": "Remove-PnPWebPart", "Rank": 1, + "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Identity a2875399-d6ff-43a0-96da-be6ae5875f82" }, { "Id": 1370, - "CommandName": "Remove-PnPWebPart", "Rank": 2, + "CommandName": "Remove-PnPWebPart", "Command": "Remove-PnPWebPart -ServerRelativePageUrl \"/sites/demo/sitepages/home.aspx\" -Title MyWebpart" }, { "Id": 1371, - "CommandName": "Remove-PnPWikiPage", "Rank": 1, + "CommandName": "Remove-PnPWikiPage", "Command": "Remove-PnPWikiPage -PageUrl '/pages/wikipage.aspx'" }, { "Id": 1372, - "CommandName": "Rename-PnPFile", "Rank": 1, + "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx" }, { "Id": 1373, - "CommandName": "Rename-PnPFile", "Rank": 2, + "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -SiteRelativeUrl Documents/company.aspx -TargetFileName mycompany.docx" }, { "Id": 1374, - "CommandName": "Rename-PnPFile", "Rank": 3, + "CommandName": "Rename-PnPFile", "Command": "Rename-PnPFile -ServerRelativeUrl /sites/project/Documents/company.docx -TargetFileName mycompany.docx -OverwriteIfAlreadyExists" }, { "Id": 1375, - "CommandName": "Rename-PnPFolder", "Rank": 1, + "CommandName": "Rename-PnPFolder", "Command": "Rename-PnPFolder -Folder Documents/Reports -TargetFolderName 'Archived Reports'" }, { "Id": 1376, - "CommandName": "Repair-PnPSite", "Rank": 1, + "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { "Id": 1377, - "CommandName": "Repair-PnPSite", "Rank": 2, + "CommandName": "Repair-PnPSite", "Command": "Repair-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { "Id": 1378, - "CommandName": "Request-PnPPersonalSite", "Rank": 1, + "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails @(\"user1@contoso.com\", \"user2@contoso.com\")" }, { "Id": 1379, - "CommandName": "Request-PnPPersonalSite", "Rank": 2, + "CommandName": "Request-PnPPersonalSite", "Command": "Request-PnPPersonalSite -UserEmails \"user1@contoso.com\"" }, { "Id": 1380, - "CommandName": "Request-PnPReIndexList", "Rank": 1, + "CommandName": "Request-PnPReIndexList", "Command": "Request-PnPReIndexList -Identity \"Demo List\"" }, { "Id": 1381, - "CommandName": "Request-PnPReIndexWeb", "Rank": 1, + "CommandName": "Request-PnPReIndexWeb", "Command": "Request-PnPReIndexWeb" }, { "Id": 1382, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 1, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -FileUrl \"/sites/finance/invoices/invoice1.docx\"" }, { "Id": 1383, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 2, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -List \"Invoices\"" }, { "Id": 1384, - "CommandName": "Request-PnPSyntexClassifyAndExtract", "Rank": 3, + "CommandName": "Request-PnPSyntexClassifyAndExtract", "Command": "Request-PnPSyntexClassifyAndExtract -Folder (Get-PnPFolder -Url \"invoices/Q1/jan\")" }, { "Id": 1385, - "CommandName": "Reset-PnPDocumentId", "Rank": 1, + "CommandName": "Reset-PnPDocumentId", "Command": "Reset-PnPDocumentId -File \"/sites/demo/Shared Documents/MyDocument.docx\"" }, { "Id": 1386, - "CommandName": "Reset-PnPDocumentId", "Rank": 2, + "CommandName": "Reset-PnPDocumentId", "Command": "Reset-PnPDocumentId -Library \"Documents\" -ContentType (Get-PnPContentType -List \"Documents\" | Where-Object Name -eq \"Document\"" }, { "Id": 1387, - "CommandName": "Reset-PnPFileVersion", "Rank": 1, + "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\"" }, { "Id": 1388, - "CommandName": "Reset-PnPFileVersion", "Rank": 2, + "CommandName": "Reset-PnPFileVersion", "Command": "Reset-PnPFileVersion -ServerRelativeUrl \"/sites/test/office365.png\" -CheckinType MajorCheckin -Comment \"Restored to previous version\"" }, { "Id": 1389, - "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Rank": 1, + "CommandName": "Reset-PnPMicrosoft365GroupExpiration", "Command": "Reset-PnPMicrosoft365GroupExpiration" }, { "Id": 1390, - "CommandName": "Reset-PnPRetentionLabel", "Rank": 1, + "CommandName": "Reset-PnPRetentionLabel", "Command": "Reset-PnPRetentionLabel -List \"Demo List\"" }, { "Id": 1391, - "CommandName": "Reset-PnPRetentionLabel", "Rank": 2, + "CommandName": "Reset-PnPRetentionLabel", "Command": "Reset-PnPRetentionLabel -List \"Demo List\" -SyncToItems $true" }, { "Id": 1392, - "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Rank": 1, + "CommandName": "Reset-PnPUserOneDriveQuotaToDefault", "Command": "Reset-PnPUserOneDriveQuotaToDefault -Account 'user@domain.com'" }, { "Id": 1393, - "CommandName": "Resolve-PnPFolder", "Rank": 1, + "CommandName": "Resolve-PnPFolder", "Command": "Resolve-PnPFolder -SiteRelativePath \"demofolder/subfolder\"" }, { "Id": 1394, - "CommandName": "Restart-PnPFlowRun", "Rank": 1, + "CommandName": "Restart-PnPFlowRun", "Command": "Restart-PnPFlowRun -Flow fba63225-baf9-4d76-86a1-1b42c917a182 -Identity 08585531682024670884771461819CU230" }, { "Id": 1395, - "CommandName": "Restore-PnPDeletedContainer", "Rank": 1, + "CommandName": "Restore-PnPDeletedContainer", "Command": "Restore-PnPDeletedContainer -Identity \"b!jKRbiovfMEWUWKabObEnjC5rF4MG3pRBomypnjOHiSrjkM_EBk_1S57U3gD7oW-1\"" }, { "Id": 1396, - "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Rank": 1, + "CommandName": "Restore-PnPDeletedMicrosoft365Group", "Command": "Restore-PnPDeletedMicrosoft365Group -Identity 38b32e13-e900-4d95-b860-fb52bc07ca7f" }, { "Id": 1397, - "CommandName": "Restore-PnPFileVersion", "Rank": 1, + "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity 512" }, { "Id": 1398, - "CommandName": "Restore-PnPFileVersion", "Rank": 2, + "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url /sites/HRSite/Documents/MyDocument.docx -Identity 512" }, { "Id": 1399, - "CommandName": "Restore-PnPFileVersion", "Rank": 3, + "CommandName": "Restore-PnPFileVersion", "Command": "Restore-PnPFileVersion -Url Documents/MyDocument.docx -Identity \"Version 1.0\"" }, { "Id": 1400, - "CommandName": "Restore-PnPFlow", "Rank": 1, + "CommandName": "Restore-PnPFlow", "Command": "Restore-PnPFlow -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { "Id": 1401, - "CommandName": "Restore-PnPFlow", "Rank": 2, + "CommandName": "Restore-PnPFlow", "Command": "Restore-PnPFlow -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Identity fba63225-baf9-4d76-86a1-1b42c917a182" }, { "Id": 1402, - "CommandName": "Restore-PnPListItemVersion", "Rank": 1, + "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version 512" }, { "Id": 1403, - "CommandName": "Restore-PnPListItemVersion", "Rank": 2, + "CommandName": "Restore-PnPListItemVersion", "Command": "Restore-PnPListItemVersion -List \"Demo List\" -Identity 1 -Version \"1.0\"" }, { "Id": 1404, - "CommandName": "Restore-PnPRecycleBinItem", "Rank": 1, + "CommandName": "Restore-PnPRecycleBinItem", "Command": "Restore-PnPRecycleBinItem -Identity 72e4d749-d750-4989-b727-523d6726e442" }, { "Id": 1405, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 1, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\"" }, { "Id": 1406, - "CommandName": "Restore-PnPTenantRecycleBinItem", "Rank": 2, + "CommandName": "Restore-PnPTenantRecycleBinItem", "Command": "Restore-PnPTenantRecycleBinItem -Url \"https://tenant.sharepoint.com/sites/contoso\" -Wait" }, { "Id": 1407, - "CommandName": "Restore-PnPTenantSite", "Rank": 1, + "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\"" }, { "Id": 1408, - "CommandName": "Restore-PnPTenantSite", "Rank": 2, + "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force" }, { "Id": 1409, - "CommandName": "Restore-PnPTenantSite", "Rank": 3, + "CommandName": "Restore-PnPTenantSite", "Command": "Restore-PnPTenantSite -Identity \"https://tenant.sharepoint.com/sites/contoso\" -Force -NoWait" }, { "Id": 1410, - "CommandName": "Revoke-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Revoke-PnPAzureADAppSitePermission", "Command": "Revoke-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa" }, { "Id": 1411, - "CommandName": "Revoke-PnPHubSiteRights", "Rank": 1, + "CommandName": "Revoke-PnPHubSiteRights", "Command": "Revoke-PnPHubSiteRights -Identity \"https://contoso.sharepoint.com/sites/hubsite\" -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { "Id": 1412, - "CommandName": "Revoke-PnPSiteDesignRights", "Rank": 1, + "CommandName": "Revoke-PnPSiteDesignRights", "Command": "Revoke-PnPSiteDesignRights -Identity 5c73382d-9643-4aa0-9160-d0cba35e40fd -Principals \"myuser@mydomain.com\",\"myotheruser@mydomain.com\"" }, { "Id": 1413, - "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Rank": 1, + "CommandName": "Revoke-PnPTenantServicePrincipalPermission", "Command": "Revoke-PnPTenantServicePrincipalPermission -Scope \"Group.Read.All\"" }, { "Id": 1414, - "CommandName": "Revoke-PnPUserSession", "Rank": 1, + "CommandName": "Revoke-PnPUserSession", "Command": "Revoke-PnPUserSession -User user1@contoso.com" }, { "Id": 1415, - "CommandName": "Save-PnPPageConversionLog", "Rank": 1, + "CommandName": "Save-PnPPageConversionLog", "Command": "Save-PnPPageConversionLog" }, { "Id": 1416, - "CommandName": "Save-PnPSiteTemplate", "Rank": 1, + "CommandName": "Save-PnPSiteTemplate", "Command": "Save-PnPSiteTemplate -Template .\\template.xml -Out .\\template.pnp" }, { "Id": 1417, - "CommandName": "Save-PnPTenantTemplate", "Rank": 1, + "CommandName": "Save-PnPTenantTemplate", "Command": "Save-PnPTenantTemplate -Template template.xml -Out .\\tenanttemplate.pnp" }, { "Id": 1418, - "CommandName": "Send-PnPMail", "Rank": 1, + "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { "Id": 1419, - "CommandName": "Send-PnPMail", "Rank": 2, + "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -From \"sharedmailbox@contoso.onmicrosoft.com\" -To \"recipient1@contoso.com\",\"recipient2@contoso.com\",\"recipient3@contoso.com\" -Cc \"recipient4@contoso.com\" -Bcc \"recipient5@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Importance Low" }, { "Id": 1420, - "CommandName": "Send-PnPMail", "Rank": 3, + "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -To \"address@tenant.microsoftonline.com\" -Subject \"Test message\" -Body \"This is a test message\"" }, { "Id": 1421, - "CommandName": "Send-PnPMail", "Rank": 4, + "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Attachments \"C:\\PnPCommunity\\Test\\test.docx\"" }, { "Id": 1422, - "CommandName": "Send-PnPMail", "Rank": 5, + "CommandName": "Send-PnPMail", "Command": "Send-PnPMail -From \"user@contoso.onmicrosoft.com\" -To \"recipient@contoso.com\" -Subject \"Test message\" -Body \"This is a test message\" -Files \"/sites/test/Shared Documents/Test.docx\"" }, { "Id": 1423, - "CommandName": "Set-PnPAdaptiveScopeProperty", "Rank": 1, + "CommandName": "Set-PnPAdaptiveScopeProperty", "Command": "Set-PnPAdaptiveScopeProperty -Key MyKey -Value MyValue" }, { "Id": 1424, - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 1, + "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -Identity aa66f67e-46c0-4474-8a82-42bf467d07f2" }, { "Id": 1425, - "CommandName": "Set-PnPApplicationCustomizer", "Rank": 2, + "CommandName": "Set-PnPApplicationCustomizer", "Command": "Set-PnPApplicationCustomizer -ClientSideComponentId aa66f67e-46c0-4474-8a82-42bf467d07f2 -Scope web -ClientSideComponentProperties \"{`\"sourceTermSet`\":`\"PnP-CollabFooter-SharedLinks`\",`\"personalItemsStorageProperty`\":`\"PnP-CollabFooter-MyLinks`\"}\"" }, { "Id": 1426, - "CommandName": "Set-PnPAppSideLoading", "Rank": 1, + "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -On" }, { "Id": 1427, - "CommandName": "Set-PnPAppSideLoading", "Rank": 2, + "CommandName": "Set-PnPAppSideLoading", "Command": "Set-PnPAppSideLoading -Off" }, { "Id": 1428, - "CommandName": "Set-PnPAuditing", "Rank": 1, + "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -EnableAll" }, { "Id": 1429, - "CommandName": "Set-PnPAuditing", "Rank": 2, + "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -DisableAll" }, { "Id": 1430, - "CommandName": "Set-PnPAuditing", "Rank": 3, + "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7" }, { "Id": 1431, - "CommandName": "Set-PnPAuditing", "Rank": 4, + "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -TrimAuditLog" }, { "Id": 1432, - "CommandName": "Set-PnPAuditing", "Rank": 5, + "CommandName": "Set-PnPAuditing", "Command": "Set-PnPAuditing -RetentionTime 7 -CheckOutCheckInItems -MoveCopyItems -SearchContent" }, { "Id": 1433, - "CommandName": "Set-PnPAvailablePageLayouts", "Rank": 1, + "CommandName": "Set-PnPAvailablePageLayouts", "Command": "Set-PnPAvailablePageLayouts -AllowAllPageLayouts" }, { "Id": 1434, - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 1, + "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions Read" }, { "Id": 1435, - "CommandName": "Set-PnPAzureADAppSitePermission", "Rank": 2, + "CommandName": "Set-PnPAzureADAppSitePermission", "Command": "Set-PnPAzureADAppSitePermission -PermissionId ABSDFefsdfef33fsdFSvsadf3e3fsdaffsa -Permissions FullControl -Site https://contoso.microsoft.com/sites/projects" }, { "Id": 1436, - "CommandName": "Set-PnPAzureADGroup", "Rank": 1, + "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -DisplayName \"My DisplayName\"" }, { "Id": 1437, - "CommandName": "Set-PnPAzureADGroup", "Rank": 2, + "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $groupId -Description \"My Description\" -DisplayName \"My DisplayName\"" }, { "Id": 1438, - "CommandName": "Set-PnPAzureADGroup", "Rank": 3, + "CommandName": "Set-PnPAzureADGroup", "Command": "Set-PnPAzureADGroup -Identity $group -Owners demo@contoso.com" }, { "Id": 1439, - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 1, + "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter \"0.00:45:00\" -SignOutAfter \"0.01:00:00\"" }, { "Id": 1440, - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 2, + "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$true -WarnAfter (New-TimeSpan -Minutes 45) -SignOutAfter (New-TimeSpan -Hours 1)" }, { "Id": 1441, - "CommandName": "Set-PnPBrowserIdleSignout", "Rank": 3, + "CommandName": "Set-PnPBrowserIdleSignout", "Command": "Set-PnPBrowserIdleSignOut -Enabled:$false" }, { "Id": 1442, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 1, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage Showcase -IsVisible:$false" }, { "Id": 1443, - "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Rank": 2, + "CommandName": "Set-PnPBuiltInDesignPackageVisibility", "Command": "Set-PnPBuiltInDesignPackageVisibility -DesignPackage TeamSite -IsVisible:$true" }, { "Id": 1444, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 1, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 9522236e-6802-4972-a10d-e98dc74b3344 -IsHidden $false" }, { "Id": 1445, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 2, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Identity 00000000-0000-0000-0000-000000000000 -IsHidden $true" }, { "Id": 1446, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 3, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template CrisisManagement -IsHidden $true" }, { "Id": 1447, - "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Rank": 4, + "CommandName": "Set-PnPBuiltInSiteTemplateSettings", "Command": "Set-PnPBuiltInSiteTemplateSettings -Template All -IsHidden $false" }, { "Id": 1448, - "CommandName": "Set-PnPContentType", "Rank": 1, + "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { "Id": 1449, - "CommandName": "Set-PnPContentType", "Rank": 2, + "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -UpdateChildren -Group \"Custom Content Types\" -Hidden" }, { "Id": 1450, - "CommandName": "Set-PnPContentType", "Rank": 3, + "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -Name \"Project Documentation\" -Description \"Documentation for projects\"" }, { "Id": 1451, - "CommandName": "Set-PnPContentType", "Rank": 4, + "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -FormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -FormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { "Id": 1452, - "CommandName": "Set-PnPContentType", "Rank": 5, + "CommandName": "Set-PnPContentType", "Command": "Set-PnPContentType -Identity \"Project Document\" -List \"Projects\" -DisplayFormClientSideComponentId \"dfed9a30-ec25-4aaf-ae9f-a68f3598f13a\" -DisplayFormClientSideComponentProperties '{ \"someKey\": \"some value\" }'" }, { "Id": 1453, - "CommandName": "Set-PnPCopilotAdminLimitedMode", "Rank": 1, + "CommandName": "Set-PnPCopilotAdminLimitedMode", "Command": "Set-PnPCopilotAdminLimitedMode -IsEnabledForGroup:$true -GroupId 32b5ad0f-b502-4083-9d01-0f192f15b2b6" }, { "Id": 1454, - "CommandName": "Set-PnPCopilotAdminLimitedMode", "Rank": 2, + "CommandName": "Set-PnPCopilotAdminLimitedMode", "Command": "Set-PnPCopilotAdminLimitedMode -IsEnabledForGroup:$false" }, { "Id": 1455, - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 1, + "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"Company|Locations|Stockholm\"" }, { "Id": 1456, - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 2, + "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field TaxKeyword -Value \"15c4c4e4-4b67-4894-a1d8-de5ff811c791\"" }, { "Id": 1457, - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 3, + "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyTextField -Value \"DefaultValue\" -Folder \"My folder\"" }, { "Id": 1458, - "CommandName": "Set-PnPDefaultColumnValues", "Rank": 4, + "CommandName": "Set-PnPDefaultColumnValues", "Command": "Set-PnPDefaultColumnValues -List Documents -Field MyPeopleField -Value \"1;#Foo Bar\"" }, { "Id": 1459, - "CommandName": "Set-PnPDefaultContentTypeToList", "Rank": 1, + "CommandName": "Set-PnPDefaultContentTypeToList", "Command": "Set-PnPDefaultContentTypeToList -List \"Project Documents\" -ContentType \"Project\"" }, { "Id": 1460, - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 1, + "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title projectpage.aspx" }, { "Id": 1461, - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 2, + "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -Title test/testpage.aspx" }, { "Id": 1462, - "CommandName": "Set-PnPDefaultPageLayout", "Rank": 3, + "CommandName": "Set-PnPDefaultPageLayout", "Command": "Set-PnPDefaultPageLayout -InheritFromParentSite" }, { "Id": 1463, - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 1, + "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$true -Scope Tenant" }, { "Id": 1464, - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 2, + "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { "Id": 1465, - "CommandName": "Set-PnPDisableSpacesActivation", "Rank": 3, + "CommandName": "Set-PnPDisableSpacesActivation", "Command": "Set-PnPDisableSpacesActivation -Disable:$false -Scope Site -Identity \"https://contoso.sharepoint.com\"" }, { "Id": 1466, - "CommandName": "Set-PnPDocumentSetField", "Rank": 1, + "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -SetSharedField -SetWelcomePageField" }, { "Id": 1467, - "CommandName": "Set-PnPDocumentSetField", "Rank": 2, + "CommandName": "Set-PnPDocumentSetField", "Command": "Set-PnPDocumentSetField -Field \"Test Field\" -DocumentSet \"Test Document Set\" -RemoveSharedField -RemoveWelcomePageField" }, { "Id": 1468, - "CommandName": "Set-PnPField", "Rank": 1, + "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"}" }, { "Id": 1469, - "CommandName": "Set-PnPField", "Rank": 2, + "CommandName": "Set-PnPField", "Command": "Set-PnPField -Identity AssignedTo -Values @{JSLink=\"customrendering.js\";Group=\"My fields\"} -UpdateExistingLists" }, { "Id": 1470, - "CommandName": "Set-PnPField", "Rank": 3, + "CommandName": "Set-PnPField", "Command": "Set-PnPField -List \"Tasks\" -Identity \"AssignedTo\" -Values @{JSLink=\"customrendering.js\"}" }, { "Id": 1471, - "CommandName": "Set-PnPFileCheckedIn", "Rank": 1, + "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\"" }, { "Id": 1472, - "CommandName": "Set-PnPFileCheckedIn", "Rank": 2, + "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/sites/news/Documents/Article.docx\"" }, { "Id": 1473, - "CommandName": "Set-PnPFileCheckedIn", "Rank": 3, + "CommandName": "Set-PnPFileCheckedIn", "Command": "Set-PnPFileCheckedIn -Url \"/Documents/Contract.docx\" -CheckInType MinorCheckIn -Comment \"Smaller changes\"" }, { "Id": 1474, - "CommandName": "Set-PnPFileCheckedOut", "Rank": 1, + "CommandName": "Set-PnPFileCheckedOut", "Command": "Set-PnPFileCheckedOut -Url \"/sites/testsite/subsite/Documents/Contract.docx\"" }, { "Id": 1475, - "CommandName": "Set-PnPFileRetentionLabel", "Rank": 1, + "CommandName": "Set-PnPFileRetentionLabel", "Command": "Set-PnPFileRetentionLabel -Url \"/sites/Marketing/Shared Documents/Report.pptx\" -RecordLocked $true" }, { "Id": 1476, - "CommandName": "Set-PnPFileRetentionLabel", "Rank": 2, + "CommandName": "Set-PnPFileRetentionLabel", "Command": "Set-PnPFileRetentionLabel -Identity \"/sites/Marketing/Shared Documents/Report.pptx\" -RetentionLabel \"Finance\"" }, { "Id": 1477, - "CommandName": "Set-PnPFileRetentionLabel", "Rank": 3, + "CommandName": "Set-PnPFileRetentionLabel", "Command": "Set-PnPFileRetentionLabel -Identity \"/sites/Marketing/Shared Documents/Report.pptx\" -RetentionLabel \"\"" }, { "Id": 1478, - "CommandName": "Set-PnPFolderPermission", "Rank": 1, + "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute'" }, { "Id": 1479, - "CommandName": "Set-PnPFolderPermission", "Rank": 2, + "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'AnotherDocumentLibrary' -Identity 'AnotherDocumentLibrary/Folder/Subfolder' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { "Id": 1480, - "CommandName": "Set-PnPFolderPermission", "Rank": 3, + "CommandName": "Set-PnPFolderPermission", "Command": "Set-PnPFolderPermission -List 'Shared Documents' -Identity 'Shared Documents/Folder' -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { "Id": 1481, - "CommandName": "Set-PnPFooter", "Rank": 1, + "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true" }, { "Id": 1482, - "CommandName": "Set-PnPFooter", "Rank": 2, + "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Enabled:$true -Layout Extended -BackgroundTheme Neutral" }, { "Id": 1483, - "CommandName": "Set-PnPFooter", "Rank": 3, + "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -Title \"Contoso Inc.\" -LogoUrl \"/sites/communication/Shared Documents/logo.png\"" }, { "Id": 1484, - "CommandName": "Set-PnPFooter", "Rank": 4, + "CommandName": "Set-PnPFooter", "Command": "Set-PnPFooter -LogoUrl \"\"" }, { "Id": 1485, - "CommandName": "Set-PnPGraphSubscription", "Rank": 1, + "CommandName": "Set-PnPGraphSubscription", "Command": "Set-PnPGraphSubscription -Identity bc204397-1128-4911-9d70-1d8bceee39da -ExpirationDate \"2020-11-22T18:23:45.9356913Z\"" }, { "Id": 1486, - "CommandName": "Set-PnPGroup", "Rank": 1, + "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -SetAssociatedGroup Members" }, { "Id": 1487, - "CommandName": "Set-PnPGroup", "Rank": 2, + "CommandName": "Set-PnPGroup", "Command": "Set-PnPGroup -Identity 'My Site Members' -Owner 'site owners'" }, { "Id": 1488, - "CommandName": "Set-PnPGroupPermissions", "Rank": 1, + "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole Contribute" }, { "Id": 1489, - "CommandName": "Set-PnPGroupPermissions", "Rank": 2, + "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole 'Full Control' -AddRole 'Read'" }, { "Id": 1490, - "CommandName": "Set-PnPGroupPermissions", "Rank": 3, + "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -AddRole @('Contribute', 'Design')" }, { "Id": 1491, - "CommandName": "Set-PnPGroupPermissions", "Rank": 4, + "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -RemoveRole @('Contribute', 'Design')" }, { "Id": 1492, - "CommandName": "Set-PnPGroupPermissions", "Rank": 5, + "CommandName": "Set-PnPGroupPermissions", "Command": "Set-PnPGroupPermissions -Identity 'My Site Members' -List 'MyList' -RemoveRole @('Contribute')" }, { "Id": 1493, - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 1, + "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $true" }, { "Id": 1494, - "CommandName": "Set-PnPHideDefaultThemes", "Rank": 2, + "CommandName": "Set-PnPHideDefaultThemes", "Command": "Set-PnPHideDefaultThemes -HideDefaultThemes $false" }, { "Id": 1495, - "CommandName": "Set-PnPHomePage", "Rank": 1, + "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl SitePages/Home.aspx" }, { "Id": 1496, - "CommandName": "Set-PnPHomePage", "Rank": 2, + "CommandName": "Set-PnPHomePage", "Command": "Set-PnPHomePage -RootFolderRelativeUrl Lists/Sample/AllItems.aspx" }, { "Id": 1497, - "CommandName": "Set-PnPHomeSite", "Rank": 1, + "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\"" }, { "Id": 1498, - "CommandName": "Set-PnPHomeSite", "Rank": 2, + "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true" }, { "Id": 1499, - "CommandName": "Set-PnPHomeSite", "Rank": 3, + "CommandName": "Set-PnPHomeSite", "Command": "Set-PnPHomeSite -HomeSiteUrl \"https://yourtenant.sharepoint.com/sites/myhome\" -VivaConnectionsDefaultStart:$true -DraftMode:$true" }, { "Id": 1500, - "CommandName": "Set-PnPHubSite", "Rank": 1, + "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Title \"My New Title\"" }, { "Id": 1501, - "CommandName": "Set-PnPHubSite", "Rank": 2, + "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -Description \"My updated description\"" }, { "Id": 1502, - "CommandName": "Set-PnPHubSite", "Rank": 3, + "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -SiteDesignId df8a3ef1-9603-44c4-abd9-541aea2fa745" }, { "Id": 1503, - "CommandName": "Set-PnPHubSite", "Rank": 4, + "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -LogoUrl \"https://tenant.sharepoint.com/SiteAssets/Logo.png\"" }, { "Id": 1504, - "CommandName": "Set-PnPHubSite", "Rank": 5, + "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -EnablePermissionsSync" }, { "Id": 1505, - "CommandName": "Set-PnPHubSite", "Rank": 6, + "CommandName": "Set-PnPHubSite", "Command": "Set-PnPHubSite -Identity \"https://tenant.sharepoint.com/sites/myhubsite\" -RequiresJoinApproval:$false" }, { "Id": 1506, - "CommandName": "Set-PnPImageListItemColumn", "Rank": 1, + "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -ServerRelativePath \"/sites/contoso/SiteAssets/test.png\"" }, { "Id": 1507, - "CommandName": "Set-PnPImageListItemColumn", "Rank": 2, + "CommandName": "Set-PnPImageListItemColumn", "Command": "Set-PnPImageListItemColumn -List \"Demo List\" -Identity 1 -Field \"Thumbnail\" -Path sample.png" }, { "Id": 1508, - "CommandName": "Set-PnPIndexedProperties", "Rank": 1, + "CommandName": "Set-PnPIndexedProperties", "Command": "Set-PnPIndexedProperties -Keys SiteClosed, PolicyName" }, { "Id": 1509, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 1, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $true" }, { "Id": 1510, - "CommandName": "Set-PnPInPlaceRecordsManagement", "Rank": 2, + "CommandName": "Set-PnPInPlaceRecordsManagement", "Command": "Set-PnPInPlaceRecordsManagement -Enabled $false" }, { "Id": 1511, - "CommandName": "Set-PnPKnowledgeHubSite", "Rank": 1, + "CommandName": "Set-PnPKnowledgeHubSite", "Command": "Set-PnPKnowledgeHubSite -KnowledgeHubSiteUrl \"https://yoursite.sharepoint.com/sites/knowledge\"" }, { "Id": 1512, - "CommandName": "Set-PnPList", "Rank": 1, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableContentTypes $true" }, { "Id": 1513, - "CommandName": "Set-PnPList", "Rank": 2, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Hidden $true" }, { "Id": 1514, - "CommandName": "Set-PnPList", "Rank": 3, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true" }, { "Id": 1515, - "CommandName": "Set-PnPList", "Rank": 4, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableVersioning $true -MajorVersions 20" }, { "Id": 1516, - "CommandName": "Set-PnPList", "Rank": 5, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo Library\" -EnableVersioning $true -EnableMinorVersions $true -MajorVersions 20 -MinorVersions 5" }, { "Id": 1517, - "CommandName": "Set-PnPList", "Rank": 6, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAttachments $true" }, { "Id": 1518, - "CommandName": "Set-PnPList", "Rank": 7, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Title \"Demo List 2\" -Path \"Lists/DemoList2\"" }, { "Id": 1519, - "CommandName": "Set-PnPList", "Rank": 8, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $true" }, { "Id": 1520, - "CommandName": "Set-PnPList", "Rank": 9, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 30 -MajorVersions 500" }, { "Id": 1521, - "CommandName": "Set-PnPList", "Rank": 10, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -EnableAutoExpirationVersionTrim $false -ExpireVersionsAfterDays 0 -MajorVersions 500" }, { "Id": 1522, - "CommandName": "Set-PnPList", "Rank": 11, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -DefaultSensitivityLabelForLibrary \"Confidential\"" }, { "Id": 1523, - "CommandName": "Set-PnPList", "Rank": 12, + "CommandName": "Set-PnPList", "Command": "Set-PnPList -Identity \"Demo List\" -Color Green -Icon \"Plane\"" }, { "Id": 1524, - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 1, + "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true" }, { "Id": 1525, - "CommandName": "Set-PnPListInformationRightsManagement", "Rank": 2, + "CommandName": "Set-PnPListInformationRightsManagement", "Command": "Set-PnPListInformationRightsManagement -List \"Documents\" -Enable $true -EnableDocumentAccessExpire $true -DocumentAccessExpireDays 14" }, { "Id": 1526, - "CommandName": "Set-PnPListItem", "Rank": 1, + "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { "Id": 1527, - "CommandName": "Set-PnPListItem", "Rank": 2, + "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -ContentType \"Company\" -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { "Id": 1528, - "CommandName": "Set-PnPListItem", "Rank": 3, + "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity $item -Values @{\"Title\" = \"Test Title\"; \"Category\"=\"Test Category\"}" }, { "Id": 1529, - "CommandName": "Set-PnPListItem", "Rank": 4, + "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Label \"Public\"" }, { "Id": 1530, - "CommandName": "Set-PnPListItem", "Rank": 5, + "CommandName": "Set-PnPListItem", "Command": "Set-PnPListItem -List \"Demo List\" -Identity 1 -Values @{\"Editor\"=\"testuser@domain.com\"} -UpdateType UpdateOverwriteVersion" }, { "Id": 1531, - "CommandName": "Set-PnPListItemAsRecord", "Rank": 1, + "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4" }, { "Id": 1532, - "CommandName": "Set-PnPListItemAsRecord", "Rank": 2, + "CommandName": "Set-PnPListItemAsRecord", "Command": "Set-PnPListItemAsRecord -List \"Documents\" -Identity 4 -DeclarationDate $date" }, { "Id": 1533, - "CommandName": "Set-PnPListItemPermission", "Rank": 1, + "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute'" }, { "Id": 1534, - "CommandName": "Set-PnPListItemPermission", "Rank": 2, + "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { "Id": 1535, - "CommandName": "Set-PnPListItemPermission", "Rank": 3, + "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -User 'user@contoso.com' -AddRole 'Contribute' -ClearExisting" }, { "Id": 1536, - "CommandName": "Set-PnPListItemPermission", "Rank": 4, + "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -InheritPermissions" }, { "Id": 1537, - "CommandName": "Set-PnPListItemPermission", "Rank": 5, + "CommandName": "Set-PnPListItemPermission", "Command": "Set-PnPListItemPermission -List 'Documents' -Identity 1 -AddRole 'Read' -RemoveRole 'Contribute' -Group \"Site collection Visitors\"" }, { "Id": 1538, - "CommandName": "Set-PnPListPermission", "Rank": 1, + "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -AddRole 'Contribute'" }, { "Id": 1539, - "CommandName": "Set-PnPListPermission", "Rank": 2, + "CommandName": "Set-PnPListPermission", "Command": "Set-PnPListPermission -Identity 'Documents' -User 'user@contoso.com' -RemoveRole 'Contribute'" }, { "Id": 1540, - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 1, + "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -ManualRecordDeclaration NeverAllowManualDeclaration" }, { "Id": 1541, - "CommandName": "Set-PnPListRecordDeclaration", "Rank": 2, + "CommandName": "Set-PnPListRecordDeclaration", "Command": "Set-PnPListRecordDeclaration -List \"Documents\" -AutoRecordDeclaration $true" }, { "Id": 1542, - "CommandName": "Set-PnPManagedAppId", "Rank": 1, - "Command": "Set-PnPManagedAppId -Name \"https://tenant.sharepoint.com\" -AppId d96c0a07-770d-46f4-bb38-a54084254bf7" + "CommandName": "Set-PnPManagedAppId", + "Command": "Set-PnPManagedAppId -Url \"https://tenant.sharepoint.com\" -AppId d96c0a07-770d-46f4-bb38-a54084254bf7" }, { "Id": 1543, - "CommandName": "Set-PnPMasterPage", "Rank": 1, + "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { "Id": 1544, - "CommandName": "Set-PnPMasterPage", "Rank": 2, + "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master -CustomMasterPageServerRelativeUrl /sites/projects/_catalogs/masterpage/oslo.master" }, { "Id": 1545, - "CommandName": "Set-PnPMasterPage", "Rank": 3, + "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { "Id": 1546, - "CommandName": "Set-PnPMasterPage", "Rank": 4, + "CommandName": "Set-PnPMasterPage", "Command": "Set-PnPMasterPage -MasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master -CustomMasterPageSiteRelativeUrl _catalogs/masterpage/oslo.master" }, { "Id": 1547, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\"" }, { "Id": 1548, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived -Identity \"MC123456\", \"MC234567\"" }, { "Id": 1549, - "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsArchived", "Command": "Set-PnPMessageCenterAnnouncementAsArchived" }, { "Id": 1550, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\"" }, { "Id": 1551, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite -Identity \"MC123456\", \"MC234567\"" }, { "Id": 1552, - "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsFavorite" }, { "Id": 1553, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\"" }, { "Id": 1554, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived -Identity \"MC123456\", \"MC234567\"" }, { "Id": 1555, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotArchived", "Command": "Set-PnPMessageCenterAnnouncementAsNotArchived" }, { "Id": 1556, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\"" }, { "Id": 1557, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite -Identity \"MC123456\", \"MC234567\"" }, { "Id": 1558, - "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsNotFavorite", "Command": "Set-PnPMessageCenterAnnouncementAsNotFavorite" }, { "Id": 1559, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\"" }, { "Id": 1560, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead -Identity \"MC123456\", \"MC234567\"" }, { "Id": 1561, - "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsRead", "Command": "Set-PnPMessageCenterAnnouncementAsRead" }, { "Id": 1562, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 1, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\"" }, { "Id": 1563, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 2, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread -Identity \"MC123456\", \"MC234567\"" }, { "Id": 1564, - "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Rank": 3, + "CommandName": "Set-PnPMessageCenterAnnouncementAsUnread", "Command": "Set-PnPMessageCenterAnnouncementAsUnread" }, { "Id": 1565, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 1, + "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -DisplayName \"My DisplayName\"" }, { "Id": 1566, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 2, + "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $groupId -Description \"My Description\" -DisplayName \"My DisplayName\"" }, { "Id": 1567, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 3, + "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -GroupLogoPath \".\\MyLogo.png\"" }, { "Id": 1568, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 4, + "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -IsPrivate:$false" }, { "Id": 1569, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 5, + "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -Owners demo@contoso.com" }, { "Id": 1570, - "CommandName": "Set-PnPMicrosoft365Group", "Rank": 6, + "CommandName": "Set-PnPMicrosoft365Group", "Command": "Set-PnPMicrosoft365Group -Identity $group -SensitivityLabels \"bc98af29-59eb-4869-baaa-9a8dff631aa4\"" }, { "Id": 1571, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 1, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"}" }, { "Id": 1572, - "CommandName": "Set-PnPMicrosoft365GroupSettings", "Rank": 2, + "CommandName": "Set-PnPMicrosoft365GroupSettings", "Command": "Set-PnPMicrosoft365GroupSettings -Identity $groupSettingId -Values @{\"AllowToAddGuests\"=\"true\"} -Group $groupId" }, { "Id": 1573, - "CommandName": "Set-PnPOrgAssetsLibrary", "Rank": 1, + "CommandName": "Set-PnPOrgAssetsLibrary", "Command": "Set-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -ThumbnailUrl \"https://yourtenant.sharepoint.com/sites/branding/logos/thumbnail.jpg\"" }, { "Id": 1574, - "CommandName": "Set-PnPOrgAssetsLibrary", "Rank": 2, + "CommandName": "Set-PnPOrgAssetsLibrary", "Command": "Set-PnPOrgAssetsLibrary -LibraryUrl \"https://yourtenant.sharepoint.com/sites/branding/logos\" -IsCopilotSearchable:$true" }, { "Id": 1575, - "CommandName": "Set-PnPPage", "Rank": 1, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -LayoutType Home -Title \"My Page\"" }, { "Id": 1576, - "CommandName": "Set-PnPPage", "Rank": 2, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled" }, { "Id": 1577, - "CommandName": "Set-PnPPage", "Rank": 3, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -CommentsEnabled:$false" }, { "Id": 1578, - "CommandName": "Set-PnPPage", "Rank": 4, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"hr/MyPage\" -HeaderType Default" }, { "Id": 1579, - "CommandName": "Set-PnPPage", "Rank": 5, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType None" }, { "Id": 1580, - "CommandName": "Set-PnPPage", "Rank": 6, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -HeaderType Custom -ServerRelativeImageUrl \"/sites/demo1/assets/myimage.png\" -TranslateX 10.5 -TranslateY 11.0" }, { "Id": 1581, - "CommandName": "Set-PnPPage", "Rank": 7, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ScheduledPublishDate (Get-Date).AddHours(1)" }, { "Id": 1582, - "CommandName": "Set-PnPPage", "Rank": 8, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate" }, { "Id": 1583, - "CommandName": "Set-PnPPage", "Rank": 9, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043" }, { "Id": 1584, - "CommandName": "Set-PnPPage", "Rank": 10, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -Translate -TranslationLanguageCodes 1043,1035" }, { "Id": 1585, - "CommandName": "Set-PnPPage", "Rank": 11, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage\" -ShowPublishDate $true -Publish" }, { "Id": 1586, - "CommandName": "Set-PnPPage", "Rank": 12, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage.aspx\" -Like" }, { "Id": 1587, - "CommandName": "Set-PnPPage", "Rank": 13, + "CommandName": "Set-PnPPage", "Command": "Set-PnPPage -Identity \"MyPage.aspx\" -Like:$false" }, { "Id": 1588, - "CommandName": "Set-PnPPageTextPart", "Rank": 1, + "CommandName": "Set-PnPPageTextPart", "Command": "Set-PnPPageTextPart -Page Home -InstanceId a2875399-d6ff-43a0-96da-be6ae5875f82 -Text \"MyText\"" }, { "Id": 1589, - "CommandName": "Set-PnPPageWebPart", "Rank": 1, + "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson \"`\"Property1`\"=`\"Value1`\"\"" }, { "Id": 1590, - "CommandName": "Set-PnPPageWebPart", "Rank": 2, + "CommandName": "Set-PnPPageWebPart", "Command": "Set-PnPPageWebPart -Page Home -Identity a2875399-d6ff-43a0-96da-be6ae5875f82 -PropertiesJson $myproperties" }, { "Id": 1591, - "CommandName": "Set-PnPPlannerBucket", "Rank": 1, + "CommandName": "Set-PnPPlannerBucket", "Command": "Set-PnPPlannerBucket -Bucket \"Todos\" -Group \"Marketing\" -Plan \"Conference Plan\" -Name \"Pre-conf Todos\"" }, { "Id": 1592, - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 1, + "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowRosterCreation:$false -IsPlannerAllowed:$true" }, { "Id": 1593, - "CommandName": "Set-PnPPlannerConfiguration", "Rank": 2, + "CommandName": "Set-PnPPlannerConfiguration", "Command": "Set-PnPPlannerConfiguration -AllowPlannerMobilePushNotifications $false" }, { "Id": 1594, - "CommandName": "Set-PnPPlannerPlan", "Rank": 1, + "CommandName": "Set-PnPPlannerPlan", "Command": "Set-PnPPlannerPlan -Group \"Marketing\" -Plan \"Conference\" -Title \"Conference 2020\"" }, { "Id": 1595, - "CommandName": "Set-PnPPlannerTask", "Rank": 1, + "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -StartDateTime 2020-10-01" }, { "Id": 1596, - "CommandName": "Set-PnPPlannerTask", "Rank": 2, + "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -Title \"New Title\" -Bucket \"To do\"" }, { "Id": 1597, - "CommandName": "Set-PnPPlannerTask", "Rank": 3, + "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AssignedTo \"user@contoso.com\",\"manager@contoso.com\"" }, { "Id": 1598, - "CommandName": "Set-PnPPlannerTask", "Rank": 4, + "CommandName": "Set-PnPPlannerTask", "Command": "Set-PnPPlannerTask -TaskId RSNNbc4HM0e7jt-btAKtTZYAFAf0 -AppliedCategories ${\"Category1\"=$true,\"Category5\"=$false}" }, { "Id": 1599, - "CommandName": "Set-PnPPlannerUserPolicy", "Rank": 1, + "CommandName": "Set-PnPPlannerUserPolicy", "Command": "Set-PnPPlannerUserPolicy -Identity \"johndoe@contoso.onmicrosoft.com\"" }, { "Id": 1600, - "CommandName": "Set-PnPPowerAppByPassConsent", "Rank": 1, + "CommandName": "Set-PnPPowerAppByPassConsent", "Command": "Set-PnPPowerAppByPassConsent -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Identity fba63225-baf9-4d76-86a1-1b42c917a182 -ByPassConsent true" }, { "Id": 1601, - "CommandName": "Set-PnPPowerAppByPassConsent", "Rank": 2, + "CommandName": "Set-PnPPowerAppByPassConsent", "Command": "Set-PnPPowerAppByPassConsent -Identity fba63225-baf9-4d76-86a1-1b42c917a182 -ByPassConsent false" }, { "Id": 1602, - "CommandName": "Set-PnPPropertyBagValue", "Rank": 1, + "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue" }, { "Id": 1603, - "CommandName": "Set-PnPPropertyBagValue", "Rank": 2, + "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /" }, { "Id": 1604, - "CommandName": "Set-PnPPropertyBagValue", "Rank": 3, + "CommandName": "Set-PnPPropertyBagValue", "Command": "Set-PnPPropertyBagValue -Key MyKey -Value MyValue -Folder /MyFolder" }, { "Id": 1605, - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 1, + "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Emails someone@example.com" }, { "Id": 1606, - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 2, + "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled" }, { "Id": 1607, - "CommandName": "Set-PnPRequestAccessEmails", "Rank": 3, + "CommandName": "Set-PnPRequestAccessEmails", "Command": "Set-PnPRequestAccessEmails -Disabled:$false" }, { "Id": 1608, - "CommandName": "Set-PnPRetentionLabel", "Rank": 1, + "CommandName": "Set-PnPRetentionLabel", "Command": "Set-PnPRetentionLabel -List \"Demo List\" -Label \"Project Documentation\"" }, { "Id": 1609, - "CommandName": "Set-PnPRetentionLabel", "Rank": 2, + "CommandName": "Set-PnPRetentionLabel", "Command": "Set-PnPRetentionLabel -List \"Demo List\" -Label \"Project Documentation\" -SyncToItems $true" }, { "Id": 1610, - "CommandName": "Set-PnPRetentionLabel", "Rank": 3, + "CommandName": "Set-PnPRetentionLabel", "Command": "Set-PnPRetentionLabel -List \"Demo List\" -ItemIds @(1,2,3) -Label \"My demo label\"" }, { "Id": 1611, - "CommandName": "Set-PnPRoleDefinition", "Rank": 1, + "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Clear EditListItems" }, { "Id": 1612, - "CommandName": "Set-PnPRoleDefinition", "Rank": 2, + "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"NoDelete\" -SelectAll -Clear DeleteListItems" }, { "Id": 1613, - "CommandName": "Set-PnPRoleDefinition", "Rank": 3, + "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -NewRoleName \"NoDelete\" -Description \"Contribute without delete\"" }, { "Id": 1614, - "CommandName": "Set-PnPRoleDefinition", "Rank": 4, + "CommandName": "Set-PnPRoleDefinition", "Command": "Set-PnPRoleDefinition -Identity \"CustomPerm\" -Order 500" }, { "Id": 1615, - "CommandName": "Set-PnPSearchConfiguration", "Rank": 1, + "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config" }, { "Id": 1616, - "CommandName": "Set-PnPSearchConfiguration", "Rank": 2, + "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Site" }, { "Id": 1617, - "CommandName": "Set-PnPSearchConfiguration", "Rank": 3, + "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Configuration $config -Scope Subscription" }, { "Id": 1618, - "CommandName": "Set-PnPSearchConfiguration", "Rank": 4, + "CommandName": "Set-PnPSearchConfiguration", "Command": "Set-PnPSearchConfiguration -Path searchconfig.xml -Scope Subscription" }, { "Id": 1619, - "CommandName": "Set-PnPSearchExternalConnection", "Rank": 1, + "CommandName": "Set-PnPSearchExternalConnection", "Command": "Set-PnPSearchExternalConnection -Identity \"pnppowershell\" -Name \"PnP PowerShell Rocks\"" }, { "Id": 1620, - "CommandName": "Set-PnPSearchExternalConnection", "Rank": 2, + "CommandName": "Set-PnPSearchExternalConnection", "Command": "Set-PnPSearchExternalConnection -Identity \"pnppowershell\" -Name \"PnP PowerShell Rocks\" -Description \"External content ingested using PnP PowerShell which rocks\"" }, { "Id": 1621, - "CommandName": "Set-PnPSearchExternalConnection", "Rank": 3, + "CommandName": "Set-PnPSearchExternalConnection", "Command": "Set-PnPSearchExternalConnection -Identity \"pnppowershell\" -AuthorizedAppIds \"00000000-0000-0000-0000-000000000000\",\"11111111-1111-1111-1111-111111111111\"" }, { "Id": 1622, - "CommandName": "Set-PnPSearchExternalItem", "Rank": 1, + "CommandName": "Set-PnPSearchExternalItem", "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantEveryone" }, { "Id": 1623, - "CommandName": "Set-PnPSearchExternalItem", "Rank": 2, + "CommandName": "Set-PnPSearchExternalItem", "Command": "Set-PnPSearchExternalItem -ConnectionId \"pnppowershell\" -ItemId \"12345\" -Properties @{ \"Test1\"= \"Test of this PnP PowerShell Connector\"; \"Test2\" = \"Red\",\"Blue\"; \"Test3\" = ([System.DateTime]::Now)} -ContentValue \"Sample value\" -ContentType Text -GrantUsers \"user@contoso.onmicrosoft.com\"" }, { "Id": 1624, - "CommandName": "Set-PnPSearchExternalSchema", "Rank": 1, + "CommandName": "Set-PnPSearchExternalSchema", "Command": "Set-PnPSearchExternalSchema -ConnectionId \"pnppowershell\" -SchemaAsText '{\r ; \"baseType\": \"microsoft.graph.externalItem\",\r ; \"properties\": [\r ; {\r ; \"name\": \"ticketTitle\",\r ; \"type\": \"String\",\r ; \"isSearchable\": \"true\",\r ; \"isRetrievable\": \"true\",\r ; \"labels\": [\r ; \"title\"\r ; ]\r ; },\r ; {\r ; \"name\": \"priority\",\r ; \"type\": \"String\",\r ; \"isQueryable\": \"true\",\r ; \"isRetrievable\": \"true\",\r ; \"isSearchable\": \"false\"\r ; },\r ; {\r ; \"name\": \"assignee\",\r ; \"type\": \"String\",\r ; \"isRetrievable\": \"true\"\r ; }\r ; ]\r ; }'" }, { "Id": 1625, - "CommandName": "Set-PnPSearchSettings", "Rank": 1, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Site" }, { "Id": 1626, - "CommandName": "Set-PnPSearchSettings", "Rank": 2, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchBoxInNavBar Hidden -Scope Web" }, { "Id": 1627, - "CommandName": "Set-PnPSearchSettings", "Rank": 3, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\"" }, { "Id": 1628, - "CommandName": "Set-PnPSearchSettings", "Rank": 4, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"\"" }, { "Id": 1629, - "CommandName": "Set-PnPSearchSettings", "Rank": 5, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchPageUrl \"https://contoso.sharepoint.com/sites/mysearch/SitePages/search.aspx\" -Scope Site" }, { "Id": 1630, - "CommandName": "Set-PnPSearchSettings", "Rank": 6, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Tenant" }, { "Id": 1631, - "CommandName": "Set-PnPSearchSettings", "Rank": 7, + "CommandName": "Set-PnPSearchSettings", "Command": "Set-PnPSearchSettings -SearchScope Hub" }, { "Id": 1632, - "CommandName": "Set-PnPSite", "Rank": 1, + "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification \"HBI\"" }, { "Id": 1633, - "CommandName": "Set-PnPSite", "Rank": 2, + "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -Classification $null" }, { "Id": 1634, - "CommandName": "Set-PnPSite", "Rank": 3, + "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows" }, { "Id": 1635, - "CommandName": "Set-PnPSite", "Rank": 4, + "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -DisableFlows:$false" }, { "Id": 1636, - "CommandName": "Set-PnPSite", "Rank": 5, + "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -LogoFilePath c:\\images\\mylogo.png" }, { "Id": 1637, - "CommandName": "Set-PnPSite", "Rank": 6, + "CommandName": "Set-PnPSite", "Command": "Set-PnPSite -NoScriptSite $false" }, { "Id": 1638, - "CommandName": "Set-PnPSiteArchiveState", "Rank": 1, + "CommandName": "Set-PnPSiteArchiveState", "Command": "Set-PnPSiteArchiveState https://contoso.sharepoint.com/sites/Marketing -ArchiveState Archived" }, { "Id": 1639, - "CommandName": "Set-PnPSiteArchiveState", "Rank": 2, + "CommandName": "Set-PnPSiteArchiveState", "Command": "Set-PnPSiteArchiveState https://contoso.sharepoint.com/sites/Marketing -ArchiveState Active" }, { "Id": 1640, - "CommandName": "Set-PnPSiteClassification", "Rank": 1, + "CommandName": "Set-PnPSiteClassification", "Command": "Set-PnPSiteClassification -Identity \"LBI\"" }, { "Id": 1641, - "CommandName": "Set-PnPSiteClosure", "Rank": 1, + "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Open" }, { "Id": 1642, - "CommandName": "Set-PnPSiteClosure", "Rank": 2, + "CommandName": "Set-PnPSiteClosure", "Command": "Set-PnPSiteClosure -State Closed" }, { "Id": 1643, - "CommandName": "Set-PnPSiteDesign", "Rank": 1, + "CommandName": "Set-PnPSiteDesign", "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Updated Company Design\"" }, { "Id": 1644, - "CommandName": "Set-PnPSiteDesign", "Rank": 2, + "CommandName": "Set-PnPSiteDesign", "Command": "Set-PnPSiteDesign -Identity 046e2e76-67ba-46ca-a5f6-8eb418a7821e -Title \"My Company Design\" -Description \"My description\" -ThumbnailUrl \"https://contoso.sharepoint.com/sites/templates/my images/logo.png\"" }, { "Id": 1645, - "CommandName": "Set-PnPSiteDocumentIdPrefix", "Rank": 1, + "CommandName": "Set-PnPSiteDocumentIdPrefix", "Command": "Set-PnPSiteDocumentIdPrefix \"TEST\"" }, { "Id": 1646, - "CommandName": "Set-PnPSiteDocumentIdPrefix", "Rank": 2, + "CommandName": "Set-PnPSiteDocumentIdPrefix", "Command": "Set-PnPSiteDocumentIdPrefix \"TEST\" -ScheduleAssignment $true -OverwriteExistingIds $true" }, { "Id": 1647, - "CommandName": "Set-PnPSiteGroup", "Rank": 1, + "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com/sites/siteA\" -Identity \"ProjectViewers\" -PermissionLevelsToRemove \"Full Control\" -PermissionLevelsToAdd \"View Only\"" }, { "Id": 1648, - "CommandName": "Set-PnPSiteGroup", "Rank": 2, + "CommandName": "Set-PnPSiteGroup", "Command": "Set-PnPSiteGroup -Site \"https://contoso.sharepoint.com\" -Identity \"ProjectViewers\" -Owner user@domain.com" }, { "Id": 1649, - "CommandName": "Set-PnPSitePolicy", "Rank": 1, + "CommandName": "Set-PnPSitePolicy", "Command": "Set-PnPSitePolicy -Name \"Contoso HBI\"" }, { "Id": 1650, - "CommandName": "Set-PnPSiteScript", "Rank": 1, + "CommandName": "Set-PnPSiteScript", "Command": "Set-PnPSiteScript -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { "Id": 1651, - "CommandName": "Set-PnPSiteScriptPackage", "Rank": 1, + "CommandName": "Set-PnPSiteScriptPackage", "Command": "Set-PnPSiteScriptPackage -Identity f1d55d9b-b116-4f54-bc00-164a51e7e47f -Title \"My Site Script\"" }, { "Id": 1652, - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 1, + "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity \"Top Secret\"" }, { "Id": 1653, - "CommandName": "Set-PnPSiteSensitivityLabel", "Rank": 2, + "CommandName": "Set-PnPSiteSensitivityLabel", "Command": "Set-PnPSiteSensitivityLabel -Identity a1888df2-84c2-4379-8d53-7091dd630ca7" }, { "Id": 1654, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 1, + "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateDisplayName \"DisplayNameValue\"" }, { "Id": 1655, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 2, + "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateDisplayName \"DisplayNameValue\"" }, { "Id": 1656, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 3, + "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { "Id": 1657, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 4, + "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateImagePreviewUrl \"Full URL of the Image Preview\"" }, { "Id": 1658, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 5, + "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.xml -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { "Id": 1659, - "CommandName": "Set-PnPSiteTemplateMetadata", "Rank": 6, + "CommandName": "Set-PnPSiteTemplateMetadata", "Command": "Set-PnPSiteTemplateMetadata -Path template.pnp -TemplateProperties @{\"Property1\" = \"Test Value 1\"; \"Property2\"=\"Test Value 2\"}" }, { "Id": 1660, - "CommandName": "Set-PnPSiteVersionPolicy", "Rank": 1, + "CommandName": "Set-PnPSiteVersionPolicy", "Command": "Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $true" }, { "Id": 1661, - "CommandName": "Set-PnPSiteVersionPolicy", "Rank": 2, + "CommandName": "Set-PnPSiteVersionPolicy", "Command": "Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MajorWithMinorVersions 10 -ExpireVersionsAfterDays 200" }, { "Id": 1662, - "CommandName": "Set-PnPSiteVersionPolicy", "Rank": 3, + "CommandName": "Set-PnPSiteVersionPolicy", "Command": "Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -MajorWithMinorVersions 20 -ExpireVersionsAfterDays 0" }, { "Id": 1663, - "CommandName": "Set-PnPSiteVersionPolicy", "Rank": 4, + "CommandName": "Set-PnPSiteVersionPolicy", "Command": "Set-PnPSiteVersionPolicy -InheritFromTenant" }, { "Id": 1664, - "CommandName": "Set-PnPSiteVersionPolicy", "Rank": 5, + "CommandName": "Set-PnPSiteVersionPolicy", "Command": "Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $true -ApplyToNewDocumentLibraries" }, { "Id": 1665, - "CommandName": "Set-PnPSiteVersionPolicy", "Rank": 6, + "CommandName": "Set-PnPSiteVersionPolicy", "Command": "Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -ExpireVersionsAfterDays 200 -ApplyToNewDocumentLibraries" }, { "Id": 1666, - "CommandName": "Set-PnPSiteVersionPolicy", "Rank": 7, + "CommandName": "Set-PnPSiteVersionPolicy", "Command": "Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $false -MajorVersions 300 -ExpireVersionsAfterDays 0 -ApplyToNewDocumentLibraries" }, { "Id": 1667, - "CommandName": "Set-PnPSiteVersionPolicy", "Rank": 8, + "CommandName": "Set-PnPSiteVersionPolicy", "Command": "Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $true -ApplyToExistingDocumentLibraries" }, { "Id": 1668, - "CommandName": "Set-PnPSiteVersionPolicy", "Rank": 9, + "CommandName": "Set-PnPSiteVersionPolicy", "Command": "Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MajorWithMinorVersions 5 -ExpireVersionsAfterDays 200 -ApplyToExistingDocumentLibraries" }, { "Id": 1669, - "CommandName": "Set-PnPSiteVersionPolicy", "Rank": 10, + "CommandName": "Set-PnPSiteVersionPolicy", "Command": "Set-PnPSiteVersionPolicy -EnableAutoExpirationVersionTrim $false -MajorVersions 100 -MajorWithMinorVersions 5 -ExpireVersionsAfterDays 0 -ApplyToExistingDocumentLibraries" }, { "Id": 1670, - "CommandName": "Set-PnPSiteVersionPolicy", "Rank": 11, + "CommandName": "Set-PnPSiteVersionPolicy", "Command": "Set-PnPSiteVersionPolicy -CancelForExistingDocumentLibraries" }, { "Id": 1671, - "CommandName": "Set-PnPStorageEntity", "Rank": 1, + "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { "Id": 1672, - "CommandName": "Set-PnPStorageEntity", "Rank": 2, + "CommandName": "Set-PnPStorageEntity", "Command": "Set-PnPStorageEntity -Scope Site -Key MyKey -Value \"MyValue\" -Comment \"My Comment\" -Description \"My Description\"" }, { "Id": 1673, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $true -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { "Id": 1674, - "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheSiteState", "Command": "Set-PnPStructuralNavigationCacheSiteState -IsEnabled $false -SiteUrl \"https://contoso.sharepoint.com/sites/product/\"" }, { "Id": 1675, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 1, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $true -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { "Id": 1676, - "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Rank": 2, + "CommandName": "Set-PnPStructuralNavigationCacheWebState", "Command": "Set-PnPStructuralNavigationCacheWebState -IsEnabled $false -WebUrl \"https://contoso.sharepoint.com/sites/product/electronics\"" }, { "Id": 1677, - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 1, + "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermId 863b832b-6818-4e6a-966d-2d3ee057931c" }, { "Id": 1678, - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 2, + "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -TermPath 'CORPORATE|DEPARTMENTS|HR'" }, { "Id": 1679, - "CommandName": "Set-PnPTaxonomyFieldValue", "Rank": 3, + "CommandName": "Set-PnPTaxonomyFieldValue", "Command": "Set-PnPTaxonomyFieldValue -ListItem $item -InternalFieldName 'Department' -Terms @{\"TermId1\"=\"Label1\";\"TermId2\"=\"Label2\"}" }, { "Id": 1680, - "CommandName": "Set-PnPTeamifyPromptHidden", "Rank": 1, + "CommandName": "Set-PnPTeamifyPromptHidden", "Command": "Set-PnPTeamifyPromptHidden" }, { "Id": 1681, - "CommandName": "Set-PnPTeamsChannel", "Rank": 1, + "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -DisplayName \"My Channel\"" }, { "Id": 1682, - "CommandName": "Set-PnPTeamsChannel", "Rank": 2, + "CommandName": "Set-PnPTeamsChannel", "Command": "Set-PnPTeamsChannel -Team \"MyTeam\" -Channel \"MyChannel\" -IsFavoriteByDefault $true" }, { "Id": 1683, - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 1, + "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team 4efdf392-8225-4763-9e7f-4edeb7f721aa -Channel \"19:796d063b63e34497aeaf092c8fb9b44e@thread.skype\" -Identity MCMjMiMjMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIyMxOTowMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMEB0aHJlYWQuc2t5cGUjIzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMA== -Role Owner" }, { "Id": 1684, - "CommandName": "Set-PnpTeamsChannelUser", "Rank": 2, + "CommandName": "Set-PnpTeamsChannelUser", "Command": "Set-PnPTeamsChannelUser -Team \"My Team\" -Channel \"My Private Channel\" -Identity john@doe.com -Role Member" }, { "Id": 1685, - "CommandName": "Set-PnPTeamsTab", "Rank": 1, + "CommandName": "Set-PnPTeamsTab", "Command": "Set-PnPTeamsTab -Team \"MyTeam\" -Channel \"My Channel\" -Identity \"Wiki\" -DisplayName \"Channel Wiki\"" }, { "Id": 1686, - "CommandName": "Set-PnPTeamsTag", "Rank": 1, + "CommandName": "Set-PnPTeamsTag", "Command": "Set-PnPTeamsTag -Team 5beb63c5-0571-499e-94d5-3279fdd9b6b5 -Identity \"ZmY1ZjdmMjctZDhiNy00MWRkLTk2ZDQtYzcyYmVhMWIwOGYxIyM3ZTVhNGRmZS1kNWNlLTRkOTAtODM4MC04ZDIxM2FkYzYzOGIjI3RiVlVpR01rcg==\" -DisplayName \"Updated Tag\"" }, { "Id": 1687, - "CommandName": "Set-PnPTeamsTeam", "Rank": 1, + "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity 'MyTeam' -DisplayName 'My Team'" }, { "Id": 1688, - "CommandName": "Set-PnPTeamsTeam", "Rank": 2, + "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"baba9192-55be-488a-9fb7-2e2e76edbef2\" -Visibility Public" }, { "Id": 1689, - "CommandName": "Set-PnPTeamsTeam", "Rank": 3, + "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -AllowTeamMentions $false -AllowChannelMentions $true -AllowDeleteChannels $false" }, { "Id": 1690, - "CommandName": "Set-PnPTeamsTeam", "Rank": 4, + "CommandName": "Set-PnPTeamsTeam", "Command": "Set-PnPTeamsTeam -Identity \"My Team\" -GiphyContentRating Moderate" }, { "Id": 1691, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 1, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true" }, { "Id": 1692, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 2, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $false" }, { "Id": 1693, - "CommandName": "Set-PnPTeamsTeamArchivedState", "Rank": 3, + "CommandName": "Set-PnPTeamsTeamArchivedState", "Command": "Set-PnPTeamsTeamArchivedState -Identity \"My Team\" -Archived $true -SetSiteReadOnlyForMembers $true" }, { "Id": 1694, - "CommandName": "Set-PnPTeamsTeamPicture", "Rank": 1, + "CommandName": "Set-PnPTeamsTeamPicture", "Command": "Set-PnPTeamsTeamPicture -Team \"MyTeam\" -Path \"c:\\myimage.jpg\"" }, { "Id": 1695, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 1, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $true" }, { "Id": 1696, - "CommandName": "Set-PnPTemporarilyDisableAppBar", "Rank": 2, + "CommandName": "Set-PnPTemporarilyDisableAppBar", "Command": "Set-PnPTemporarilyDisableAppBar $false" }, { "Id": 1697, - "CommandName": "Set-PnPTenant", "Rank": 1, + "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/team1\" -LockState NoAccess\r ; Set-PnPTenant -NoAccessRedirectUrl \"http://www.contoso.com\"" }, { "Id": 1698, - "CommandName": "Set-PnPTenant", "Rank": 2, + "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowEveryoneExceptExternalUsersClaim $false" }, { "Id": 1699, - "CommandName": "Set-PnPTenant", "Rank": 3, + "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -ShowAllUsersClaim $false" }, { "Id": 1700, - "CommandName": "Set-PnPTenant", "Rank": 4, + "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -UsePersistentCookiesForExplorerView $true" }, { "Id": 1701, - "CommandName": "Set-PnPTenant", "Rank": 5, + "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -GuestSharingGroupAllowListInTenantByPrincipalIdentity {c:0o.c|federateddirectoryclaimprovider|ee0f40fc-b2f7-45c7-b62d-11b90dd2ea8e}" }, { "Id": 1702, - "CommandName": "Set-PnPTenant", "Rank": 6, + "CommandName": "Set-PnPTenant", "Command": "Set-PnPTenant -GuestSharingGroupAllowListInTenantByPrincipalIdentity {}" }, { "Id": 1703, - "CommandName": "Set-PnPTenantAppCatalogUrl", "Rank": 1, + "CommandName": "Set-PnPTenantAppCatalogUrl", "Command": "Set-PnPTenantAppCatalogUrl -Url \"https://yourtenant.sharepoint.com/sites/appcatalog\"" }, { "Id": 1704, - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 1, + "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true" }, { "Id": 1705, - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 2, + "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Private -Enable $false" }, { "Id": 1706, - "CommandName": "Set-PnPTenantCdnEnabled", "Rank": 3, + "CommandName": "Set-PnPTenantCdnEnabled", "Command": "Set-PnPTenantCdnEnabled -CdnType Public -Enable $true -NoDefaultOrigins" }, { "Id": 1707, - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 1, + "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType IncludeFileExtensions -PolicyValue \"CSS,EOT,GIF,ICO,JPEG,JPG,JS,MAP,PNG,SVG,TTF,WOFF\"" }, { "Id": 1708, - "CommandName": "Set-PnPTenantCdnPolicy", "Rank": 2, + "CommandName": "Set-PnPTenantCdnPolicy", "Command": "Set-PnPTenantCdnPolicy -CdnType Public -PolicyType ExcludeRestrictedSiteClassifications -PolicyValue \"Confidential,Restricted\"" }, { "Id": 1709, - "CommandName": "Set-PnPTenantPronounsSetting", "Rank": 1, + "CommandName": "Set-PnPTenantPronounsSetting", "Command": "Set-PnPTenantPronounsSetting -IsEnabledInOrganization:$true" }, { "Id": 1710, - "CommandName": "Set-PnPTenantPronounsSetting", "Rank": 2, + "CommandName": "Set-PnPTenantPronounsSetting", "Command": "Set-PnPTenantPronounsSetting -IsEnabledInOrganization:$false" }, { "Id": 1711, - "CommandName": "Set-PnPTenantRestrictedSearchMode", "Rank": 1, + "CommandName": "Set-PnPTenantRestrictedSearchMode", "Command": "Set-PnPTenantRestrictedSearchMode -Mode Enabled" }, { "Id": 1712, - "CommandName": "Set-PnPTenantRestrictedSearchMode", "Rank": 2, + "CommandName": "Set-PnPTenantRestrictedSearchMode", "Command": "Set-PnPTenantRestrictedSearchMode -Mode Disabled" }, { "Id": 1713, - "CommandName": "Set-PnPTenantSite", "Rank": 1, + "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -SharingCapability Disabled" }, { "Id": 1714, - "CommandName": "Set-PnPTenantSite", "Rank": 2, + "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com\" -Title \"Contoso Website\" -StorageWarningLevel 8000 -StorageMaximumLevel 10000" }, { "Id": 1715, - "CommandName": "Set-PnPTenantSite", "Rank": 3, + "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners \"user@contoso.onmicrosoft.com\"" }, { "Id": 1716, - "CommandName": "Set-PnPTenantSite", "Rank": 4, + "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -Owners @(\"user1@contoso.onmicrosoft.com\", \"user2@contoso.onmicrosoft.com\")" }, { "Id": 1717, - "CommandName": "Set-PnPTenantSite", "Rank": 5, + "CommandName": "Set-PnPTenantSite", "Command": "Set-PnPTenantSite -Identity \"https://contoso.sharepoint.com/sites/sales\" -DenyAddAndCustomizePages:$false" }, { "Id": 1718, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 1, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -BlockMacSync:$false" }, { "Id": 1719, - "CommandName": "Set-PnPTenantSyncClientRestriction", "Rank": 2, + "CommandName": "Set-PnPTenantSyncClientRestriction", "Command": "Set-PnPTenantSyncClientRestriction -ExcludedFileExtensions \"pptx;docx;xlsx\"" }, { "Id": 1720, - "CommandName": "Set-PnPTerm", "Rank": 1, + "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity 3d9e60e8-d89c-4cd4-af61-a010cf93b380 -Name \"New Name\"" }, { "Id": 1721, - "CommandName": "Set-PnPTerm", "Rank": 2, + "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { "Id": 1722, - "CommandName": "Set-PnPTerm", "Rank": 3, + "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Name \"Finance\" -DeleteAllCustomProperties -CustomProperties @{\"IsCorporate\"=\"True\"}" }, { "Id": 1723, - "CommandName": "Set-PnPTerm", "Rank": 4, + "CommandName": "Set-PnPTerm", "Command": "Set-PnPTerm -Identity \"Marketing\" -TermSet \"Departments\" -TermGroup \"Corporate\" -Deprecated $true" }, { "Id": 1724, - "CommandName": "Set-PnPTermGroup", "Rank": 1, + "CommandName": "Set-PnPTermGroup", "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\"" }, { "Id": 1725, - "CommandName": "Set-PnPTermGroup", "Rank": 2, + "CommandName": "Set-PnPTermGroup", "Command": "Set-PnPTermGroup -Identity \"Departments\" -Name \"Company Units\" -Contributors @(\"i:0#.f|membership|pradeepg@gautamdev.onmicrosoft.com\",\"i:0#.f|membership|adelev@gautamdev.onmicrosoft.com\") -Managers @(\"i:0#.f|membership|alexw@gautamdev.onmicrosoft.com\",\"i:0#.f|membership|diegos@gautamdev.onmicrosoft.com\")" }, { "Id": 1726, - "CommandName": "Set-PnPTermSet", "Rank": 1, + "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -Name \"Business Units\"" }, { "Id": 1727, - "CommandName": "Set-PnPTermSet", "Rank": 2, + "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -UseForSiteNavigation $true" }, { "Id": 1728, - "CommandName": "Set-PnPTermSet", "Rank": 3, + "CommandName": "Set-PnPTermSet", "Command": "Set-PnPTermSet -Identity \"Departments\" -TermGroup \"Corporate\" -IsAvailableForTagging $false" }, { "Id": 1729, - "CommandName": "Set-PnPTheme", "Rank": 1, + "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme" }, { "Id": 1730, - "CommandName": "Set-PnPTheme", "Rank": 2, + "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor" }, { "Id": 1731, - "CommandName": "Set-PnPTheme", "Rank": 3, + "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png'" }, { "Id": 1732, - "CommandName": "Set-PnPTheme", "Rank": 4, + "CommandName": "Set-PnPTheme", "Command": "Set-PnPTheme -ColorPaletteUrl _catalogs/theme/15/company.spcolor -BackgroundImageUrl 'style library/background.png' -ResetSubwebsToInherit" }, { "Id": 1733, - "CommandName": "Set-PnPUserOneDriveQuota", "Rank": 1, + "CommandName": "Set-PnPUserOneDriveQuota", "Command": "Set-PnPUserOneDriveQuota -Account 'user@domain.com' -Quota 5368709120 -QuotaWarning 4831838208" }, { "Id": 1734, - "CommandName": "Set-PnPUserProfilePhoto", "Rank": 1, + "CommandName": "Set-PnPUserProfilePhoto", "Command": "Set-PnPUserProfilePhoto -Identity \"john@contoso.onmicrosoft.com\" -Path \"c:\\myimage.jpg\"" }, { "Id": 1735, - "CommandName": "Set-PnPUserProfileProperty", "Rank": 1, + "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'john@domain.com' -Property 'SPS-Location' -Value 'Stockholm'" }, { "Id": 1736, - "CommandName": "Set-PnPUserProfileProperty", "Rank": 2, + "CommandName": "Set-PnPUserProfileProperty", "Command": "Set-PnPUserProfileProperty -Account 'john@domain.com' -Property 'MyProperty' -Values 'Value 1','Value 2'" }, { "Id": 1737, - "CommandName": "Set-PnPView", "Rank": 1, + "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Tasks\" -Identity \"All Tasks\" -Values @{JSLink=\"hierarchytaskslist.js|customrendering.js\";Title=\"My view\"}" }, { "Id": 1738, - "CommandName": "Set-PnPView", "Rank": 2, + "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\"" }, { "Id": 1739, - "CommandName": "Set-PnPView", "Rank": 3, + "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Corporate Documents\" -Fields \"Title\",\"Created\" -Aggregations \"\"" }, { "Id": 1740, - "CommandName": "Set-PnPView", "Rank": 4, + "CommandName": "Set-PnPView", "Command": "Set-PnPView -List \"Documents\" -Identity \"Dept Documents\" -Fields \"Title,\"Created\" -Values @{Paged=$true;RowLimit=[UInt32]\"100\"}" }, { "Id": 1741, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 1, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4 -CardSize Large -PropertiesJSON $myProperties" }, { "Id": 1742, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 2, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -Title \"Update title\" -Description \"Update Description\"" }, { "Id": 1743, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 3, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -IconProperty \"https://cdn.hubblecontent.osi.office.net/m365content/publish/002f8bf9-b8ee-4689-ae97-e411b756099d/691108002.jpg\" -Order 4" }, { "Id": 1744, - "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Rank": 4, + "CommandName": "Set-PnPVivaConnectionsDashboardACE", "Command": "Set-PnPVivaConnectionsDashboardACE -Identity \"58108715-185e-4214-8786-01218e7ab9ef\" -CardSize Large" }, { "Id": 1745, - "CommandName": "Set-PnPVivaEngageCommunity", "Rank": 1, + "CommandName": "Set-PnPVivaEngageCommunity", "Command": "Set-PnPVivaEngageCommunity -Identity \"eyJfdHlwZSI6Ikdyb3VwIiwiaWQiOiIyMTI0ODA3MTI3MDQifQ\" -DisplayName \"New Viva Community\"" }, { "Id": 1746, - "CommandName": "Set-PnPVivaEngageCommunity", "Rank": 2, + "CommandName": "Set-PnPVivaEngageCommunity", "Command": "Set-PnPVivaEngageCommunity -Identity \"eyJfdHlwZSI6Ikdyb3VwIiwiaWQiOiIyMTI0ODA3MTI3MDQifQ\" -DisplayName \"New Viva Community\" -Description \"Updated description\" -Privacy Private" }, { "Id": 1747, - "CommandName": "Set-PnPWeb", "Rank": 1, + "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -CommentsOnSitePagesDisabled:$true" }, { "Id": 1748, - "CommandName": "Set-PnPWeb", "Rank": 2, + "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -QuickLaunchEnabled:$false" }, { "Id": 1749, - "CommandName": "Set-PnPWeb", "Rank": 3, + "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -HeaderEmphasis Strong -HeaderLayout Compact" }, { "Id": 1750, - "CommandName": "Set-PnPWeb", "Rank": 4, + "CommandName": "Set-PnPWeb", "Command": "Set-PnPWeb -NoCrawl:$true" }, { "Id": 1751, - "CommandName": "Set-PnPWebHeader", "Rank": 1, + "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderBackgroundImageUrl \"/sites/hrdepartment/siteassets/background.png\" -HeaderLayout Extended" }, { "Id": 1752, - "CommandName": "Set-PnPWebHeader", "Rank": 2, + "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -HeaderEmphasis Strong" }, { "Id": 1753, - "CommandName": "Set-PnPWebHeader", "Rank": 3, + "CommandName": "Set-PnPWebHeader", "Command": "Set-PnPWebHeader -LogoAlignment Middle" }, { "Id": 1754, - "CommandName": "Set-PnPWebhookSubscription", "Rank": 1, + "CommandName": "Set-PnPWebhookSubscription", "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook" }, { "Id": 1755, - "CommandName": "Set-PnPWebhookSubscription", "Rank": 2, + "CommandName": "Set-PnPWebhookSubscription", "Command": "Set-PnPWebhookSubscription -List MyList -Subscription ea1533a8-ff03-415b-a7b6-517ee50db8b6 -NotificationUrl https://my-func.azurewebsites.net/webhook -ExpirationDate \"2017-09-01\"" }, { "Id": 1756, - "CommandName": "Set-PnPWebPartProperty", "Rank": 1, + "CommandName": "Set-PnPWebPartProperty", "Command": "Set-PnPWebPartProperty -ServerRelativePageUrl /sites/demo/sitepages/home.aspx -Identity ccd2c98a-c9ae-483b-ae72-19992d583914 -Key \"Title\" -Value \"New Title\"" }, { "Id": 1757, - "CommandName": "Set-PnPWebPermission", "Rank": 1, + "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { "Id": 1758, - "CommandName": "Set-PnPWebPermission", "Rank": 2, + "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Group \"Project Managers\" -AddRole \"Contribute\"" }, { "Id": 1759, - "CommandName": "Set-PnPWebPermission", "Rank": 3, + "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -Identity projectA -User \"user@contoso.com\" -AddRole \"Contribute\"" }, { "Id": 1760, - "CommandName": "Set-PnPWebPermission", "Rank": 4, + "CommandName": "Set-PnPWebPermission", "Command": "Set-PnPWebPermission -User \"user@contoso.com\" -AddRole \"Custom Role 1\",\"Custom Role 2\"" }, { "Id": 1761, - "CommandName": "Set-PnPWebTheme", "Rank": 1, + "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme MyTheme" }, { "Id": 1762, - "CommandName": "Set-PnPWebTheme", "Rank": 2, + "CommandName": "Set-PnPWebTheme", "Command": "Set-PnPWebTheme -Theme \"MyCompanyTheme\" -WebUrl https://contoso.sharepoint.com/sites/MyWeb" }, { "Id": 1763, - "CommandName": "Set-PnPWikiPageContent", "Rank": 1, + "CommandName": "Set-PnPWikiPageContent", "Command": "Set-PnPWikiPageContent -ServerRelativePageUrl /sites/PnPWikiCollection/SitePages/OurWikiPage.aspx -Path .\\sampleblog.html" }, { "Id": 1764, - "CommandName": "Start-PnPEnterpriseAppInsightsReport", "Rank": 1, + "CommandName": "Start-PnPEnterpriseAppInsightsReport", "Command": "Start-PnPEnterpriseAppInsightsReport" }, { "Id": 1765, - "CommandName": "Start-PnPEnterpriseAppInsightsReport", "Rank": 2, + "CommandName": "Start-PnPEnterpriseAppInsightsReport", "Command": "Start-PnPEnterpriseAppInsightsReport 28" }, { "Id": 1766, - "CommandName": "Start-PnPTraceLog", "Rank": 1, + "CommandName": "Start-PnPTraceLog", "Command": "Start-PnPTraceLog -Path ./TraceOutput.txt" }, { "Id": 1767, - "CommandName": "Start-PnPTraceLog", "Rank": 2, + "CommandName": "Start-PnPTraceLog", "Command": "Start-PnPTraceLog -Path ./TraceOutput.txt -Level Debug" }, { "Id": 1768, - "CommandName": "Start-PnPTraceLog", "Rank": 3, + "CommandName": "Start-PnPTraceLog", "Command": "Start-PnPTraceLog -WriteToConsole -WriteToLogStream -Level Debug" }, { "Id": 1769, - "CommandName": "Start-PnPTraceLog", "Rank": 4, + "CommandName": "Start-PnPTraceLog", "Command": "Start-PnPTraceLog -WriteToConsole -Level Debug" }, { "Id": 1770, - "CommandName": "Stop-PnPFlowRun", "Rank": 1, + "CommandName": "Stop-PnPFlowRun", "Command": "Stop-PnPFlowRun -Flow fba63225-baf9-4d76-86a1-1b42c917a182 -Identity 08585531682024670884771461819CU230" }, { "Id": 1771, - "CommandName": "Stop-PnPFlowRun", "Rank": 2, + "CommandName": "Stop-PnPFlowRun", "Command": "Stop-PnPFlowRun -Environment (Get-PnPPowerPlatformEnvironment -Identity \"myenvironment\") -Flow fba63225-baf9-4d76-86a1-1b42c917a182 -Identity 08585531682024670884771461819CU230 -Force" }, { "Id": 1772, - "CommandName": "Stop-PnPTraceLog", "Rank": 1, + "CommandName": "Stop-PnPTraceLog", "Command": "Stop-PnPTraceLog" }, { "Id": 1773, - "CommandName": "Stop-PnPTraceLog", "Rank": 2, + "CommandName": "Stop-PnPTraceLog", "Command": "Stop-PnPTraceLog -StopFileLogging -StopConsoleLogging" }, { "Id": 1774, - "CommandName": "Submit-PnPSearchQuery", "Rank": 1, + "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"finance\"" }, { "Id": 1775, - "CommandName": "Submit-PnPSearchQuery", "Rank": 2, + "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -MaxResults 10" }, { "Id": 1776, - "CommandName": "Submit-PnPSearchQuery", "Rank": 3, + "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -All" }, { "Id": 1777, - "CommandName": "Submit-PnPSearchQuery", "Rank": 4, + "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"Title:Intranet*\" -Refiners \"contentclass,FileType(filter=6/0/*)\"" }, { "Id": 1778, - "CommandName": "Submit-PnPSearchQuery", "Rank": 5, + "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SelectProperties ComplianceTag,InformationProtectionLabelId -All" }, { "Id": 1779, - "CommandName": "Submit-PnPSearchQuery", "Rank": 6, + "CommandName": "Submit-PnPSearchQuery", "Command": "Submit-PnPSearchQuery -Query \"contentclass:STS_ListItem_DocumentLibrary\" -SortList @{\"filename\" = \"ascending\"} -All" }, { "Id": 1780, - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 1, + "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A new message\"" }, { "Id": 1781, - "CommandName": "Submit-PnPTeamsChannelMessage", "Rank": 2, + "CommandName": "Submit-PnPTeamsChannelMessage", "Command": "Submit-PnPTeamsChannelMessage -Team MyTestTeam -Channel \"My Channel\" -Message \"A bold new message\" -ContentType Html" }, { "Id": 1782, - "CommandName": "Sync-PnPAppToTeams", "Rank": 1, + "CommandName": "Sync-PnPAppToTeams", "Command": "Sync-PnPAppToTeams -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { "Id": 1783, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 1, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"HomePhone\"=\"phone\";\"CustomProperty\"=\"DisplayName\"}" }, { "Id": 1784, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 2, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\"" }, { "Id": 1785, - "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Rank": 3, + "CommandName": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory", "Command": "Sync-PnPSharePointUserProfilesFromAzureActiveDirectory -UserProfilePropertyMapping @{\"CostCenter\"=\"extension_b0b5aaa58a0a4287acd826c5b8330e48_CostCenter\"} -Folder \"User Profile Sync\\Jobs\" -Wait -Verbose" }, { "Id": 1786, - "CommandName": "Test-PnPListItemIsRecord", "Rank": 1, + "CommandName": "Test-PnPListItemIsRecord", "Command": "Test-PnPListItemIsRecord -List \"Documents\" -Identity 4" }, { "Id": 1787, - "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Rank": 1, + "CommandName": "Test-PnPMicrosoft365GroupAliasIsUsed", "Command": "Test-PnPMicrosoft365GroupAliasIsUsed -Alias \"MyGroup\"" }, { "Id": 1788, - "CommandName": "Test-PnPSite", "Rank": 1, + "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\"" }, { "Id": 1789, - "CommandName": "Test-PnPSite", "Rank": 2, + "CommandName": "Test-PnPSite", "Command": "Test-PnPSite -Identity \"https://contoso.sharepoint.com/sites/marketing\" -RuleID \"ee967197-ccbe-4c00-88e4-e6fab81145e1\"" }, { "Id": 1790, - "CommandName": "Test-PnPTenantTemplate", "Rank": 1, + "CommandName": "Test-PnPTenantTemplate", "Command": "Test-PnPTenantTemplate -Template $myTemplate" }, { "Id": 1791, - "CommandName": "Undo-PnPFileCheckedOut", "Rank": 1, + "CommandName": "Undo-PnPFileCheckedOut", "Command": "Undo-PnPFileCheckedOut -Url \"/sites/PnP/Shared Documents/Contract.docx\"" }, { "Id": 1792, - "CommandName": "Uninstall-PnPApp", "Rank": 1, + "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { "Id": 1793, - "CommandName": "Uninstall-PnPApp", "Rank": 2, + "CommandName": "Uninstall-PnPApp", "Command": "Uninstall-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { "Id": 1794, - "CommandName": "Unlock-PnPSensitivityLabelEncryptedFile", "Rank": 1, + "CommandName": "Unlock-PnPSensitivityLabelEncryptedFile", "Command": "Unlock-PnPSensitivityLabelEncryptedFile -Url \"https://contoso.com/sites/Marketing/Shared Documents/Doc1.docx\" -JustificationText \"Need to access file\"" }, { "Id": 1795, - "CommandName": "Unpublish-PnPApp", "Rank": 1, + "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { "Id": 1796, - "CommandName": "Unpublish-PnPApp", "Rank": 2, + "CommandName": "Unpublish-PnPApp", "Command": "Unpublish-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { "Id": 1797, - "CommandName": "Unpublish-PnPContentType", "Rank": 1, + "CommandName": "Unpublish-PnPContentType", "Command": "Unpublish-PnPContentType -ContentType 0x0101" }, { "Id": 1798, - "CommandName": "Unpublish-PnPSyntexModel", "Rank": 1, + "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -ListWebUrl \"https://contoso.sharepoint.com/sites/finance\" -List \"Documents\"" }, { "Id": 1799, - "CommandName": "Unpublish-PnPSyntexModel", "Rank": 2, + "CommandName": "Unpublish-PnPSyntexModel", "Command": "Unpublish-PnPSyntexModel -Model \"Invoice model\" -TargetSiteUrl \"https://contoso.sharepoint.com/sites/finance\" -TargetWebServerRelativeUrl \"/sites/finance\" -TargetLibraryServerRelativeUrl \"/sites/finance/shared%20documents\" -Batch $batch" }, { "Id": 1800, - "CommandName": "Unregister-PnPHubSite", "Rank": 1, + "CommandName": "Unregister-PnPHubSite", "Command": "Unregister-PnPHubSite -Site \"https://tenant.sharepoint.com/sites/myhubsite\"" }, { "Id": 1801, - "CommandName": "Update-PnPApp", "Rank": 1, + "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe" }, { "Id": 1802, - "CommandName": "Update-PnPApp", "Rank": 2, + "CommandName": "Update-PnPApp", "Command": "Update-PnPApp -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe -Scope Site" }, { "Id": 1803, - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 1, + "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -Classifications \"HBI\",\"Top Secret\"" }, { "Id": 1804, - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 2, + "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -DefaultClassification \"LBI\"" }, { "Id": 1805, - "CommandName": "Update-PnPAvailableSiteClassification", "Rank": 3, + "CommandName": "Update-PnPAvailableSiteClassification", "Command": "Update-PnPAvailableSiteClassification -UsageGuidelinesUrl https://aka.ms/m365pnp" }, { "Id": 1806, - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 1, + "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll" }, { "Id": 1807, - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 2, + "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Identity \"Contoso Project\" -IncludeAll -Lists (\"/lists/Issue list\", \"Shared Documents)" }, { "Id": 1808, - "CommandName": "Update-PnPSiteDesignFromWeb", "Rank": 3, + "CommandName": "Update-PnPSiteDesignFromWeb", "Command": "Update-PnPSiteDesignFromWeb -Url https://contoso.sharepoint.com/sites/template -Identity \"Contoso Project\" -Lists \"/lists/Issue list\"" }, { "Id": 1809, - "CommandName": "Update-PnPTeamsApp", "Rank": 1, + "CommandName": "Update-PnPTeamsApp", "Command": "Update-PnPTeamsApp -Identity 4efdf392-8225-4763-9e7f-4edeb7f721aa -Path c:\\myapp.zip" }, { "Id": 1810, - "CommandName": "Update-PnPTeamsUser", "Rank": 1, + "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Owner" }, { "Id": 1811, - "CommandName": "Update-PnPTeamsUser", "Rank": 2, + "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team MyTeam -User john@doe.com -Role Member" }, { "Id": 1812, - "CommandName": "Update-PnPTeamsUser", "Rank": 3, + "CommandName": "Update-PnPTeamsUser", "Command": "Update-PnPTeamsUser -Team a0c0a395-4ba6-4fff-958a-000000506d18 -User john@doe.com -Role Member -Force" }, { "Id": 1813, - "CommandName": "Update-PnPTodoList", "Rank": 1, + "CommandName": "Update-PnPTodoList", "Command": "Update-PnPTodoList -Identity \"AAMkAGU4MGE1OTRiLTUzMGEtNDRjZi05ZmVmLWFiMTkyYmQxODRjOQAuAAAAAACQV8RStyZCQJ4ydzjIK5HmAQD2LFcxdwYMRqbupn47nEYYAASYG0vWAAA=\" -DisplayName \"Travel items\"" }, { "Id": 1814, - "CommandName": "Update-PnPTodoList", "Rank": 2, + "CommandName": "Update-PnPTodoList", "Command": "Update-PnPTodoList -Identity \"AAMkAGU4MGE1OTRiLTUzMGEtNDRjZi05ZmVmLWFiMTkyYmQxODRjOQAuAAAAAACQV8RStyZCQJ4ydzjIK5HmAQD2LFcxdwYMRqbupn47nEYYAASYG0vWAAA=\" -User john@doe.com -DisplayName \"Travel Items\"" }, { "Id": 1815, - "CommandName": "Update-PnPUserType", "Rank": 1, + "CommandName": "Update-PnPUserType", "Command": "Update-PnPUserType -LoginName jdoe@contoso.com" }, { "Id": 1816, - "CommandName": "Use-PnPBrandCenterFontPackage", "Rank": 1, + "CommandName": "Use-PnPBrandCenterFontPackage", "Command": "Use-PnPBrandCenterFontPackage -Identity \"2812cbd8-7176-4e45-8911-6a063f89a1f1\"" }, { "Id": 1817, - "CommandName": "Use-PnPBrandCenterFontPackage", "Rank": 2, + "CommandName": "Use-PnPBrandCenterFontPackage", "Command": "Use-PnPBrandCenterFontPackage -Identity \"My awesome font\" -Store Tenant" }, { "Id": 1818, - "CommandName": "Write-PnPTraceLog", "Rank": 1, + "CommandName": "Write-PnPTraceLog", "Command": "Write-PnPTraceLog \"Hello World\"" }, { "Id": 1819, - "CommandName": "Write-PnPTraceLog", "Rank": 2, + "CommandName": "Write-PnPTraceLog", "Command": "Write-PnPTraceLog \"Hello World\" -Level Warning" }, { "Id": 1820, - "CommandName": "Write-PnPTraceLog", "Rank": 3, + "CommandName": "Write-PnPTraceLog", "Command": "Write-PnPTraceLog \"Hello World\" -Level Error -Source \"MyScript\"" }, { "Id": 1821, - "CommandName": "Write-PnPTraceLog", "Rank": 4, + "CommandName": "Write-PnPTraceLog", "Command": "Write-PnPTraceLog \"Hello World\" -Level Debug -Source \"MyScript\" -CorrelationId \"5a6206a0-6c83-4446-9d1b-38c14f93cb60\" -EllapsedMilliseconds 1000" } ] diff --git a/src/Commands/Admin/GetTenantRestrictedSearchMode.cs b/src/Commands/Admin/GetTenantRestrictedSearchMode.cs index 803d11e51..cddfbd54b 100644 --- a/src/Commands/Admin/GetTenantRestrictedSearchMode.cs +++ b/src/Commands/Admin/GetTenantRestrictedSearchMode.cs @@ -10,9 +10,16 @@ public class GetTenantRestrictedSearchMode : PnPSharePointOnlineAdminCmdlet { protected override void ExecuteCmdlet() { - var results = Tenant.GetSPORestrictedSearchMode(); - AdminContext.ExecuteQueryRetry(); - WriteObject(results, true); + try + { + var results = Tenant.GetSPORestrictedSearchMode(); + AdminContext.ExecuteQueryRetry(); + WriteObject(results, true); + } + catch + { + WriteObject("Restricted search mode is currently not set."); + } } } } diff --git a/src/Commands/Admin/SetHomeSite.cs b/src/Commands/Admin/SetHomeSite.cs index 549fbb8eb..1cf65a227 100644 --- a/src/Commands/Admin/SetHomeSite.cs +++ b/src/Commands/Admin/SetHomeSite.cs @@ -27,6 +27,28 @@ public class SetHomeSite : PnPSharePointOnlineAdminCmdlet protected override void ExecuteCmdlet() { Tenant.EnsureProperties(t => t.IsMultipleVivaConnectionsFlightEnabled, t => t.IsVivaHomeFlightEnabled); + HomeSiteConfigurationParam configurationParam; + + bool hasVivaConnectionsDefaultStart = ParameterSpecified(nameof(VivaConnectionsDefaultStart)); + bool hasDraftMode = ParameterSpecified(nameof(DraftMode)); + + // Replace the current configurationParam assignment block with the following: + + configurationParam = null; + if (hasVivaConnectionsDefaultStart || hasDraftMode) + { + configurationParam = new(); + if (hasVivaConnectionsDefaultStart) + { + configurationParam.vivaConnectionsDefaultStart = VivaConnectionsDefaultStart; + configurationParam.IsVivaConnectionsDefaultStartPresent = true; + } + if (hasDraftMode) + { + configurationParam.isInDraftMode = DraftMode; + configurationParam.IsInDraftModePresent = true; + } + } if (Tenant.IsMultipleVivaConnectionsFlightEnabled) { @@ -34,12 +56,10 @@ protected override void ExecuteCmdlet() { IEnumerable enumerable = Tenant.GetTargetedSitesDetails()?.Where((TargetedSiteDetails hs) => !hs.IsVivaBackendSite); AdminContext.ExecuteQueryRetry(); - bool flag = false; if (enumerable == null || enumerable.Count() == 0) { Tenant.AddHomeSite(HomeSiteUrl, 1, null); AdminContext.ExecuteQueryRetry(); - flag = true; } else if (enumerable.Count() == 1 && !IsSameSiteUrl(enumerable.First().Url, HomeSiteUrl)) { @@ -47,16 +67,10 @@ protected override void ExecuteCmdlet() AdminContext.ExecuteQueryRetry(); Tenant.AddHomeSite(HomeSiteUrl, 1, null); AdminContext.ExecuteQueryRetry(); - flag = true; } - HomeSiteConfigurationParam configurationParam = new() - { - vivaConnectionsDefaultStart = VivaConnectionsDefaultStart, - IsVivaConnectionsDefaultStartPresent = VivaConnectionsDefaultStart, - isInDraftMode = DraftMode, - IsInDraftModePresent = DraftMode || flag - }; + ClientResult clientResult = Tenant.UpdateTargetedSite(HomeSiteUrl, configurationParam); + AdminContext.ExecuteQueryRetry(); WriteObject(clientResult.Value); } @@ -64,18 +78,7 @@ protected override void ExecuteCmdlet() else if (Force || ShouldContinue("Before you set a Home site, make sure you review the documentation at https://aka.ms/homesites.", Properties.Resources.Confirm)) { Tenant.ValidateVivaHomeParameterExists(VivaConnectionsDefaultStart); - HomeSiteConfigurationParam configuration = null; - if (VivaConnectionsDefaultStart || DraftMode) - { - configuration = new HomeSiteConfigurationParam - { - vivaConnectionsDefaultStart = VivaConnectionsDefaultStart, - IsVivaConnectionsDefaultStartPresent = VivaConnectionsDefaultStart, - isInDraftMode = DraftMode, - IsInDraftModePresent = DraftMode - }; - } - ClientResult clientResult = Tenant.SetSPHSiteWithConfiguration(HomeSiteUrl, configuration); + ClientResult clientResult = Tenant.SetSPHSiteWithConfiguration(HomeSiteUrl, configurationParam); AdminContext.ExecuteQueryRetry(); WriteObject(clientResult.Value); } diff --git a/src/Commands/Admin/SetTenantSite.cs b/src/Commands/Admin/SetTenantSite.cs index 3cb89c009..e7c2852bb 100644 --- a/src/Commands/Admin/SetTenantSite.cs +++ b/src/Commands/Admin/SetTenantSite.cs @@ -223,6 +223,9 @@ public class SetTenantSite : PnPSharePointOnlineAdminCmdlet [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] public bool RequestFilesLinkEnabled; + [Parameter(Mandatory = false, ParameterSetName = ParameterSet_PROPERTIES)] + public bool AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled; + [Parameter(Mandatory = false)] public SwitchParameter Wait; @@ -668,6 +671,12 @@ private void SetSiteProperties(Func timeoutFunctio updateRequired = true; } + if (ParameterSpecified(nameof(AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled))) + { + props.AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled = AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled; + updateRequired = true; + } + if (updateRequired) { var op = props.Update(); diff --git a/src/Commands/Base/PnPConnection.cs b/src/Commands/Base/PnPConnection.cs index 4a8868eca..62b04cc04 100644 --- a/src/Commands/Base/PnPConnection.cs +++ b/src/Commands/Base/PnPConnection.cs @@ -286,15 +286,34 @@ internal static PnPConnection CreateWithDeviceLogin(string clientId, string url, } else { + var copiedToClipboard = true; try { ClipboardService.SetText(deviceCodeResult.UserCode); } catch { + copiedToClipboard = false; + } + + var browserOpened = true; + try + { + BrowserHelper.OpenBrowserForInteractiveLogin(deviceCodeResult.VerificationUrl, BrowserHelper.FindFreeLocalhostRedirectUri(), cancellationTokenSource); + } + catch + { + browserOpened = false; + } + + if (copiedToClipboard && browserOpened) + { + messageWriter.LogWarning($"\n\nCode {deviceCodeResult.UserCode} has been copied to your clipboard and a new tab in the browser has been opened. Please paste this code in there and proceed.\n\n"); + } + else + { + messageWriter.LogWarning($"\n\nOpen a browser, navigate to {deviceCodeResult.VerificationUrl} and authenticate using code {deviceCodeResult.UserCode} to proceed.\n\n"); } - messageWriter.LogWarning($"\n\nCode {deviceCodeResult.UserCode} has been copied to your clipboard and a new tab in the browser has been opened. Please paste this code in there and proceed.\n\n"); - BrowserHelper.OpenBrowserForInteractiveLogin(deviceCodeResult.VerificationUrl, BrowserHelper.FindFreeLocalhostRedirectUri(), cancellationTokenSource); } return Task.FromResult(0); diff --git a/src/Commands/Model/SPOSite.cs b/src/Commands/Model/SPOSite.cs index 5a5f703a6..830c2bdc0 100644 --- a/src/Commands/Model/SPOSite.cs +++ b/src/Commands/Model/SPOSite.cs @@ -103,6 +103,7 @@ public class SPOSite public bool ReadOnlyForUnmanagedDevices { get; set; } public SiteUserInfoVisibilityPolicyValue OverrideBlockUserInfoVisibility { get; set; } public bool OverrideSharingCapability { get; set; } + public bool AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled { get; set; } #endregion @@ -200,6 +201,7 @@ public SPOSite(SiteProperties props, bool? disableSharingForNonOwnersStatus) ReadOnlyForUnmanagedDevices = props.ReadOnlyForUnmanagedDevices; OverrideSharingCapability = props.OverrideSharingCapability; OverrideBlockUserInfoVisibility = props.OverrideBlockUserInfoVisibility; + AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled = props.AllowWebPropertyBagUpdateWhenDenyAddAndCustomizePagesIsEnabled; } } } \ No newline at end of file diff --git a/src/Commands/Provisioning/Site/AddDataRowsToSiteTemplate.cs b/src/Commands/Provisioning/Site/AddDataRowsToSiteTemplate.cs index 47efdf2f0..6933b006a 100644 --- a/src/Commands/Provisioning/Site/AddDataRowsToSiteTemplate.cs +++ b/src/Commands/Provisioning/Site/AddDataRowsToSiteTemplate.cs @@ -160,43 +160,42 @@ protected override void ExecuteCmdlet() } } } + + List fieldsToExport; + // Get the fieds to export if (Fields != null) { + fieldsToExport = []; foreach (var fieldName in Fields) { - Microsoft.SharePoint.Client.Field dataField = fieldCollection.FirstOrDefault(f => f.InternalName == fieldName); - + // Discard all fields unsupported + Microsoft.SharePoint.Client.Field dataField = fieldCollection.FirstOrDefault(f => f.InternalName == fieldName && !_unsupportedFieldTypes.Contains(f.FieldTypeKind)); if (dataField != null) { - var defaultFieldValue = GetFieldValueAsText(ClientContext.Web, listItem, dataField); - if (TokenizeUrls.IsPresent) - { - defaultFieldValue = Tokenize(defaultFieldValue, ClientContext.Web, ClientContext.Site); - } - - row.Values.Add(fieldName, defaultFieldValue); + fieldsToExport.Add(dataField); } } } else { - // All fields are added except readonly fields and unsupported field type - var fieldsToExport = fieldCollection.AsEnumerable() - .Where(f => !f.ReadOnlyField && !_unsupportedFieldTypes.Contains(f.FieldTypeKind)); - foreach (var field in fieldsToExport) + // Discard all fields readonly and unsupported field type + fieldsToExport = [.. fieldCollection.AsEnumerable().Where(f => !f.ReadOnlyField && !_unsupportedFieldTypes.Contains(f.FieldTypeKind))]; + } + + // Get validate field and get data + foreach (Microsoft.SharePoint.Client.Field field in fieldsToExport) + { + if (listItem.FieldExistsAndUsed(field.InternalName)) { - var fldKey = (from f in listItem.FieldValues.Keys where f == field.InternalName select f).FirstOrDefault(); - if (!string.IsNullOrEmpty(fldKey)) + var fieldValue = GetFieldValueAsText(ClientContext.Web, listItem, field); + if (TokenizeUrls.IsPresent) { - var fieldValue = GetFieldValueAsText(ClientContext.Web, listItem, field); - if (TokenizeUrls.IsPresent) - { - fieldValue = Tokenize(fieldValue, ClientContext.Web, ClientContext.Site); - } - row.Values.Add(field.InternalName, fieldValue); + fieldValue = Tokenize(fieldValue, ClientContext.Web, ClientContext.Site); } + row.Values.Add(field.InternalName, fieldValue); } } + rows.Add(row); } } diff --git a/src/Commands/Taxonomy/RemoveTermLabel.cs b/src/Commands/Taxonomy/RemoveTermLabel.cs index 8bcb7ed38..3c9e8d19b 100644 --- a/src/Commands/Taxonomy/RemoveTermLabel.cs +++ b/src/Commands/Taxonomy/RemoveTermLabel.cs @@ -32,6 +32,9 @@ public class RemoveTermLabel : PnPSharePointCmdlet [Parameter(Mandatory = false, ValueFromPipeline = true, ParameterSetName = ParameterAttribute.AllParameterSets)] public TaxonomyTermStorePipeBind TermStore; + [Parameter(Mandatory = false)] + public SwitchParameter Force; + protected override void ExecuteCmdlet() { var taxonomySession = TaxonomySession.GetTaxonomySession(ClientContext); @@ -67,7 +70,7 @@ protected override void ExecuteCmdlet() if (term != null) { term.EnsureProperties(t => t.Name, t => t.Id); - if (ShouldContinue($"Delete label {Label} for language {Lcid} from Term {term.Name} with id {term.Id}", Properties.Resources.Confirm)) + if (Force || ShouldContinue($"Delete label {Label} for language {Lcid} from Term {term.Name} with id {term.Id}", Properties.Resources.Confirm)) { var labels = term.GetAllLabels(Lcid); ClientContext.Load(labels); diff --git a/version.json b/version.json index 67ff2570f..7cb8530be 100644 --- a/version.json +++ b/version.json @@ -1,4 +1,4 @@ { "Message": "", - "Version": "3.1.102" + "Version": "3.1.127" } \ No newline at end of file diff --git a/version.txt b/version.txt index c65d535e4..de4beac65 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -3.1.102 \ No newline at end of file +3.1.127 \ No newline at end of file