Forum Discussion
Hasan Siddiqui
Mar 07, 2018Copper Contributor
Resource Scheduling in Room
Hi,
I have a room and i want to restrict it so only members of specific group or DDL can book it. I am setting Scheduling permissions.
The attached pic is what my current configuration is. There is DL in first option and there is DL in second option as well. I am member of second option DL. When i send meeting request to this room, it send me message that your meeting is pending approval. But who will approve this. Because when i set delegate from EAC, it remove this option. When i select this option, it remove delegate. So who is gettign email to approve it?
Sorry Hasan i miss understood your issue.
I think you are only missing the delegate, have you set one?
Via PowerShell it would look like this:
Set-CalendarProcessing -Identity resource@contoso.com -AllBookInPolicy $false -AllRequestInPolicy $false -ForwardRequestsToDelegates $true -BookInPolicy DDL@contoso.com -RequestInPolicy DL@contoso.com -ResourceDelegates user.delegate@contoso.comI could do it but it takes some time to replicate.
Hope this helps
9 Replies
Sort By
- Ricardo VianaSteel Contributor
Hi Hasan,
The second option requires owner approval so that is why it stays as pending. Regarding the owner, it is the resource itself so the request will be in resource mailbox.
The easiest way to accomplish what you want is through PS:
Set-CalendarProcessing -Identity resource@contoso.com -AllBookInPolicy $false -AllRequestInPolicy $false -BookInPolicy DL@contoso.comAlso verify if:
- Hasan SiddiquiCopper Contributor
Thanks Ricardo.
So where this PS is adding a DL which requires approval?
I have one DDL which needs no approval.
I have one DL which should ask for approval.
Rest of users should just get deny.
Is there any way to achieve? Like someone else other than the resource itself should approve request. Is it possible?
- Ricardo VianaSteel Contributor
Sorry Hasan i miss understood your issue.
I think you are only missing the delegate, have you set one?
Via PowerShell it would look like this:
Set-CalendarProcessing -Identity resource@contoso.com -AllBookInPolicy $false -AllRequestInPolicy $false -ForwardRequestsToDelegates $true -BookInPolicy DDL@contoso.com -RequestInPolicy DL@contoso.com -ResourceDelegates user.delegate@contoso.comI could do it but it takes some time to replicate.
Hope this helps