Hi @Davit Ubilava ,
I agree with the suggestions above, the cross-premises users may be judged as external which leads to this issue. You could firstly check if ProcessExternalMeetingMessages is enabled for this room mailbox
Get-Mailbox "Room" | Get-CalendarProcessing | Select *external*
If the result returns ProcessExternalMeetingMessages : False, use the command below to configure the room mailbox process external meeting requests:
Get-Mailbox "Room" | Set-CalendarProcessing -ProcessExternalMeetingMessages $true
Please note that this change will also only take effect for new meeting requests. Any meeting requests from external senders that were received before the setting was enabled will not be processed.
If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.