LogoLogo
HomeSign-in
  • Introduction
  • First steps
    • Getting started with Google Calendar
    • Getting started with Microsoft Office 365
    • Getting started with Zoho
    • Setting up a TV with meeting room status board
    • Setting up tablet featuring multiple meeting rooms
  • Tutorials & troubleshooting
    • How to configure devices to run Roombelt
      • How to configure iOS tablet to run Roombelt
      • How to configure Android tablet to run Roombelt
      • How to configure Philips digital signage devices to run Roombelt
      • How to configure Qbic TD-1060 to run Roombelt
    • How to add missing Google Calendar room
    • How to add missing Microsoft 365 room
    • How to show meeting summary in Office 365
    • How to automatically remove "no-show" meetings
    • How to change device background
    • How to ask for confirmation prior to booking a room from a display
    • How to setup a slide show on Roombelt status board
    • How to ensure device stays connected after restart
    • How to setup Roombelt Self-hosted
      • How to setup Roombelt Self-hosted for Google Calendar
      • How to setup Roombelt Self-hosted for Microsoft Office 365
  • Reference
    • Supported hardware
    • Administration panel
    • Account settings
      • Managing subscription
      • Organization
      • Energy saving
      • Email notifications
    • Device settings
      • Device view modes
      • Single calendar view settings
      • Multiple calendars view settings
      • Status board view settings
      • Custom background & theme
    • Audit log
    • Office maps
    • Bulk editing devices
    • Disabling devices
    • Reconnecting devices
  • Supplemental info
    • About us
    • Understanding permissions in Google Calendar
    • Understanding permissions in Microsoft Office 365
Powered by GitBook
On this page
  1. Tutorials & troubleshooting

How to show meeting summary in Office 365

PreviousHow to add missing Microsoft 365 roomNextHow to automatically remove "no-show" meetings

Last updated 10 months ago

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 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

Microsoft Exchange documentation