Hi All
I want to provide calendar access for few users to a room mailbox. is the below syntax correct. my csv file is in the below format. do i also need to use -Confirm:$false
users
user1@contoso.com
user2@contoso.com
$UserList = import-csv C:\temp\input.csv
ForEach ($User in $UserList)
{
Add-MailboxFolderPermission -identity room-mailbox@contoso.com:\calendar -user $_.users -accessrights Reviewer
}

