Forum Discussion
EmergeTechnologiesRNC
Jan 25, 2022Copper Contributor
Room Bookings: How to enable Automatic Processing but disable Auto-Deletion of event updates?
Hey Everyone, I work in IT, and have a client who would like their Meeting Room bookings to be automatically responded to, depending on whether there is a conflict or not. *This part works fine.*...
VasilMichev
Jan 25, 2022MVP
Define "email"? Messages that are not meeting requests can be set to automatically be deleted for Room mailboxes. You can check the value of this setting via
Get-CalendarProcessing roomname | select DeleteNonCalendarItems
and toggle it off accordingly:
Set-CalendarProcessing roomname -DeleteNonCalendarItems $false
Get-CalendarProcessing roomname | select DeleteNonCalendarItems
and toggle it off accordingly:
Set-CalendarProcessing roomname -DeleteNonCalendarItems $false