Add Fullmailbox Permission in PowerShell using a CSV file

Create a CSV with following fields and save it in a temp folder

UserMailbox and User

copy the below and save as .ps1 file in the same temp folder e.g C:\temp

$csv = Import-csv -path “C:\temp\fullaccess.csv”
foreach($User in $csv)
{
Add-MailboxPermission -Identity $user.UserMailbox -User $user.User -AccessRights FullAccess -InheritanceType All
}

 

Run the script to apply permissions

One thought on “Add Fullmailbox Permission in PowerShell using a CSV file

  1. Jack's avatar Jack February 9, 2025 / 4:16 pm

    This is a helpful guide for managing mailbox access.

    Like

Leave a reply to Jack Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.