I'd script it so you give them rights to the mailbox calendar and send a sharing invite. that will add it
Add-MailboxFolderPermission -Identity ******@contoso.com:\calendar -user newUser -AccessRights Reviewer -SendNotificationToUser $true
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I want new users in my organization to always have a few specific meeting rooms visible in their calendar. As in the box for that room should be checked by default so I don't have to do this manually everytime we get a new user (Which happens very often).
Would this be possible with a script, policy or another way?
Sincerely,
John
I'd script it so you give them rights to the mailbox calendar and send a sharing invite. that will add it
Add-MailboxFolderPermission -Identity ******@contoso.com:\calendar -user newUser -AccessRights Reviewer -SendNotificationToUser $true
Hello there,
I suppose you can create a new calendar group and assign a default meeting room to the group and then add the new users to the group.
If you are the administrator, you'll need to connect to PowerShell and run the following cmdlets:
New-DistributionGroup -Name "room list name" –RoomList
Add-DistributionGroupMember -Identity "room list name" -Member "room mailbox name"
This will allow the Room Finder to show up and allow you to view the room list and choose from the available rooms as desired.
---------------------------------------------------------------------------------------------------------------------------------------------
--If the reply is helpful, please Upvote and Accept it as an answer–