Permission matrix Report

Judedouard Chenet 0 Reputation points
2024-07-16T19:48:02.0033333+00:00

I need a PowerShell script for SharePoint User/Site/Permission Matrix for all user in GCC High tenant.

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
10,740 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Zurita, Michael 0 Reputation points
    2024-07-16T20:49:15.76+00:00

    Hi Jude,

    The 'Get-SPO' cmdlet should work for your needs. The SPO module should work for GCC low & high as it has selectors specific to GCC high.

    Get-SPOUser -Site https://domain-admin.sharepoint.com | where {$_.IsGroup -eq $false}

    Replacing 'domain' for yours. Scripting in each specific domain would give you the full list needed.

    Here's some additional information towards scripting this fully:

    [https://learn.microsoft.com/en-us/answers/questions/1276124/ps-script-to-check-what-sites-the-user-has-access

    ](https://learn.microsoft.com/en-us/answers/questions/1276124/ps-script-to-check-what-sites-the-user-has-access

    )

    If this answers your needs please mark this as the correct answer!

    -Mike Z

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.