Forum Discussion
Resource Mailbox
Hi Experts
For one of my resource mailbox i have given booking delegates access to one user lets say user1@contoso.com using the below syntax
Set-CalendarProcessing -Identity "My Meeting Room-11thFloor" -AutomateProcessing AutoAccept -AllRequestInPolicy $true -AllBookInPolicy $false -ResourceDelegates "user1@contoso.com"
i have few users for example user2@contoso.com, user3@contoso.com, user4@contoso.com, user5@contoso.com
When these 4 users send Booking Requests, the booking should happen automatically without delegate approval and for rest any user the delegate has to approve.Is it possible to achieve this, will the below syntax work for me as i am not sure
Set-CalendarProcessing -Identity "My Meeting Room-11thFloor" -AutomateProcessing AutoAccept -BookInPolicy "user2@contoso.com","user3@contoso.com" -ResourceDelegates "user1@contoso.com" -AllBookInPolicy $false -AllRequestInPolicy $true -AllRequestOutOfPolicy $false -RequestInPolicy $null -RequestOutOfPolicy $null
5 Replies
Yes, that should do it. You don't need to change the RequestOutOfPolicy settings from their defaults.
- Roger RogerIron Contributor
so do i need to use AllRequestOutOfPolicy $null or AllRequestOutOfPolicy $false
You don't need to use anything, just remove those parameters from the cmdlet.