I have setup 5 Room accounts for meeting invites. When users invite those rooms, they show as tentative.
How can i set this to show as "accepted"
Thanks,
Technology Tips and News
I have setup 5 Room accounts for meeting invites. When users invite those rooms, they show as tentative.
How can i set this to show as "accepted"
Thanks,
Hi
on the resource mailbox, there is an option to show as tentative, is this selected?
Hi,
Execute the following cmdlet:
Get-CalendarProcessing "Name of Room" | fl
Check to see if "AllRequestOutOfPolicy" is set to $True. If it is use the command below to change this setting to correct this issue
Set-CalendarProcessing "Name of Room" -AllRequestOutOfPolicy $False
It is showing as False, however when users invite the room the scheduling assistant still shows them as tentative
Hi,
Can you also check the value set for AddNewRequestsTentatively on the result of the following cmdlet?
Get-CalendarProcessing "Name of Room" | fl
Can you change that to $true or $false and see how it works?
Run set-calendarprocessing "name of the room" -AutomateProcessing AutoAccept
This will auto accept invites and set as busy
Thank you for your help
I was able to use: Set-CalendarProcessing -Identity "Name of Room" -AutomateProcessing AutoAccept
by running your command i saw that AutomateProcessing was set to AutoUpdate on my problem rooms
All is resolved
Thanks!