> For the complete documentation index, see [llms.txt](https://support.meetuma.ai/uma-knowledgebase/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://support.meetuma.ai/uma-knowledgebase/integrations/calendar/microsoft-365/room-display-preparation.md).

# Room display preparation

<figure><img src="/files/ie5ZNYl80zFxnZsJWXWo" alt=""><figcaption></figcaption></figure>

In Microsoft 365, by default, resources will show the meeting organiser rather than the meeting subject. It will also display the subject and organiser of private meetings.

To change this setting for each resource you will need to connect to PowerShell using multi-factor authentication as explained in the guide [here](https://docs.microsoft.com/en-us/powershell/exchange/connect-to-exchange-online-powershell?view=exchange-ps).

To correctly display the meeting subject on the meeting room display panel you will need to run the below PowerShell command for each resource.

```
Get-MailBox –Identity <resourceemail> | Set-CalendarProcessing -AddOrganizerToSubject $false -DeleteSubject $false -DeleteComments $false
```

Alongside the above, if you want private meetings to not display the subject or organiser then run the following command instead and this will take care of both.

```
Get-MailBox –Identity <resourceemail> | Set-CalendarProcessing -AddOrganizerToSubject $false -DeleteSubject $false -DeleteComments $false -RemovePrivateProperty $false
```
