Reviewer Permissions

Rising Flight 3,751 Reputation points
2020-10-15T15:24:29.667+00:00

Hi Experts

i have unified group, i want to provide access to 200 users to this unified group. I want to provide Reviewer Access to the users. i.e users can just view the emails but not send emails to this unified group. I can create shared mailbox but shared mailbox will not be automapped to MAC users where as unified groups are mapped.. is there any access by Reviewer in Unified groups.
I have a csv file in the below format.
users
user1@Company portal .com
user2@Company portal .com

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
9,684 questions
Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,193 questions
{count} votes

Accepted answer
  1. Jerryzy 10,566 Reputation points
    2020-10-16T05:37:07.81+00:00

    Hi @Rising Flight ,

    You can refer sharatha's suggestion, but if the CSV file in your side have only users column and the group is a fixed value, then modify a bit like this:

    #Get Credentials to connect  
    $Credential = Get-Credential  
        
    #Create the session  
    $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ `  
               -Credential $Credential -Authentication Basic -AllowRedirection  
        
    #Import the session  
    Import-PSSession $Session -DisableNameChecking  
       
    #PowerShell to Import Members to office 365 group from CSV  
    Import-CSV "C:\temp\GroupMembers.csv" | ForEach-Object {  
        Add-UnifiedGroupLinks –Identity "jerrygroup@zheguo.onmicrosoft.com" –LinkType Members –Links $_.users  
        Write-host -f Green "Added Member '$($_.users)' to Office 365 Group 'jerrygroup@zheguo.onmicrosoft.com'"  
    }  
       
    #Remove the session  
    Remove-PSSession $Session  
    

    32837-snipaste-2020-10-16-13-32-06.png

    32804-snipaste-2020-10-16-13-28-00.png

    32766-snipaste-2020-10-16-13-33-16.png


    If an Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Sharath Kumar Aluri 3,071 Reputation points
    2020-10-15T16:17:06.947+00:00

    Below script will help you to do that. check the below article for .csv file.

    #Get Credentials to connect
    $Credential = Get-Credential
    
    #Create the session
    $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ `
               -Credential $Credential -Authentication Basic -AllowRedirection
    
    #Import the session
    Import-PSSession $Session -DisableNameChecking
    
    #PowerShell to Import Members to office 365 group from CSV
    Import-CSV "C:\Temp\GroupMembers.csv" | ForEach-Object {
        Add-UnifiedGroupLinks –Identity $_.GroupID –LinkType Members –Links $_.Member
        Write-host -f Green "Added Member '$($_.Member)' to Office 365 Group '$($_.GroupID)'"
    }
    
    #Remove the session
    Remove-PSSession $Session
    

    Reference: https://www.sharepointdiary.com/2018/05/add-members-to-office-365-group-using-powershell.html#:~:text=Expand%20Groups%20and%20Click%20on%20Groups%20link%20in%20the%20left%20navigation.&text=Click%20on%20Edit%20link%20next,users%20in%20a%20single%20stretch.

    Thanks & Regards,

    0 comments No comments