Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Based on organizational requirements, you may wish to customize how the resource account responds to and processes meeting invitations. Using Exchange PowerShell, you can set many properties, review the Set-CalendarProcessing cmdlet for all available configurations. The following are recommended for Teams Rooms:
AutomateProcessing:
AutoAcceptMeeting organizers receive the room reservation decision directly without human intervention.AddOrganizerToSubject:
$falseThe meeting organizer isn't added to the subject of the meeting request on the resource account calendar.AllowRecurringMeetings:
$trueRecurring meetings are accepted.DeleteAttachments:
$trueTeams Rooms devices can't access meeting attachments, deleting attachments ensures they're not stored on the resource account calendar.DeleteComments:
$falseKeep any text in the message body of incoming meeting requests which is required to create join buttons for third-party meetings on a Teams Rooms device.DeleteSubject:
$falseKeep the subject of incoming meeting requests on the resource accounts calendar.ProcessExternalMeetingMessages:
$trueSpecifies whether to process meeting requests organized outside your Exchange environment. This option is required for meeting invites sent directly by an external organizer as well external organized meetings forwarded by an internal user.RemovePrivateProperty:
$falseEnsures the private flag that sent by the meeting organizer in the original meeting request remains as specified.AddAdditionalResponse:
$trueThe text specified by the AdditionalResponse parameter is added to meeting requests.AdditionalResponse: "This is a Microsoft Teams Meeting room!" The text to add to the meeting acceptance body. You can also format HTML content in the automatic reply if you wish.
To configure these properties, you need to connect to Exchange Online PowerShell. For more information, see Connect to Exchange Online PowerShell.
The following example sets the properties for the ConferenceRoom01 resource account:
Set-CalendarProcessing -Identity "ConferenceRoom01" -AutomateProcessing AutoAccept -AddOrganizerToSubject $false -AllowRecurringMeetings $true -DeleteAttachments $true -DeleteComments $false -DeleteSubject $false -ProcessExternalMeetingMessages $true -RemovePrivateProperty $false -AddAdditionalResponse $true -AdditionalResponse "This is a Microsoft Teams Meeting room!"