> For the complete documentation index, see [llms.txt](https://docs.roombelt.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.roombelt.com/tutorials-and-troubleshooting/how-to-show-meeting-summary-in-office-365.md).

# How to show meeting summary in Office 365

One issue most Roombelt evaluators face when using Office 365 is that Roombelt displays an organizer name instead of the meeting summary. The default Office 365 configuration causes this and can be easily fixed by following the steps described below:

1. Open Powershell on your Windows machine.
2. Install the Exchange Online Powershell V2 module:\
   `PS> Install-Module -Name ExchangeOnlineManagement -Scope CurrentUser`\
   \
   The [Microsoft Exchange documentation](https://docs.microsoft.com/en-us/powershell/exchange/exchange-online-powershell-v2?view=exchange-ps) provides more information about ExchangeOnlineManagement.
3. Sign in to the Exchange Online:\
   `PS> Import-Module ExchangeOnlineManagement`\
   `PS> Connect-ExchangeOnline`
4. Update configuration of your room's mailboxes:\
   `PS> Get-Mailbox -RecipientTypeDetails RoomMailbox | Set-CalendarProcessing -RemovePrivateProperty $false -DeleteComments $false -DeleteSubject $false -AddOrganizerToSubject $false`\
   \
   The command updates settings for calendars of all rooms in your organization. The flags used are:
   * `RemovePrivateProperty $false` - private meetings will be flagged as private in the meeting room calendar.
   * `DeleteComments $false` - keep meeting description in the meeting room calendar.
   * `DeleteSubject $false -AddOrganizerToSubject $false` - don't replace the meeting summary with the organizer's name
5. Disconnect from Exchange Online:\
   `PS> Disconnect-ExchangeOnline`


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.roombelt.com/tutorials-and-troubleshooting/how-to-show-meeting-summary-in-office-365.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
