Neighbourhoods
Overview
Microsoft 365 configuration
PowerShell script
$rooms = @("Room1", "Room2", "Room3")
$users = "[email protected]","[email protected]"
foreach ($room in $rooms) {
Set-MailboxCalendarSettings -Identity $room `
-BookInPolicy $users `
-RequestOutOfPolicy $false `
-ResourceDelegates @()
Set-CalendarProcessing -Identity $room -AutomateProcessing AutoAccept
}Explanation
Google Workspace configuration
Create the resource:
Share the resource with specific users or groups:
Set Auto-Accept invitations:
Restrict booking permissions:
Test the configuration:
Last updated
Was this helpful?