Help with Calendar Processing for Room Bookings in Exchange

0
0
Asked By MysteriousMuffin42 On

I'm facing some challenges with configuring Calendar Processing settings for room bookings in Exchange. I want to make it so that only members of a specific mail-enabled group ([email protected]) can book a meeting room (specifically, [email protected]). Additionally, bookings should remain tentative until they are approved by designated delegates (like [email protected] and [email protected]). Everyone else should be able to view the room, but their booking requests should be automatically declined. I'd really appreciate any guidance on how to set this up correctly using PowerShell or through the Exchange Admin interface! Thanks!

1 Answer

Answered By WiseOldOwl63 On

It sounds like you're trying to limit who can book the room. You'll want to include your allowed group in the "RequestInPolicy" and set "AllRequestInPolicy" to $false. You can do it like this:

`Set-CalendarProcessing -Identity "[email protected]" -AutomateProcessing 'AutoAccept' -AllBookInPolicy $false -AllRequestInPolicy $false -RequestInPolicy [email protected] -ResourceDelegates "[email protected],[email protected]"`

With this setup, only members of thehobbits can request the room, and the bookings will be confirmed after delegate approval. Others won't be able to book at all.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

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