Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 27 Next »

Content

Introduction

Microsoft announced that Exchange Online (Office 365) - EWS will not be available anymore starting October 13th, 2020.

The Microsoft's recommendation is now to use Microsoft Graph. For Exchange On-Premise, EWS will stay the solution to use.

This documentation describes the steps required in order get ROOMZ access to the agenda of the meeting rooms using Microsoft Graph.

Register the ROOMZ Application

The first step consists of creating a ROOMZ application on Microsoft Azure in order to provide the access to the agendas.

  1. Open Microsoft Azure Portal and log in with an administrator account.

  2. Once logged, search for Azure Active Directory:

  3. On the left panel, search for App registrations:

  4. Click on + New registration:

  5. Specify the name of the application (e.g. ROOMZGraph) and the first option Account in this organizational directory only

  6. Click on API permissions:

  7. Should you have already a permission, you can remove it:

  8. Then click on + Add a permission, and select Microsoft Graph:

  9. Chose Application permissions:

  10. In the list of permissions, select Calendars.ReadWrite: and then click Add permissions:

  11. Click on Grant admin consent for your company:

  12. Once accepted, it should look like the following:

  13. Click on Certificates & secrets:

  14. Click on + New client secret:

  15. Define the wished expiry date. When the secret expires, you will have to renew it and adapt it in the ROOMZ Portal. Today, the longest possible period is 2 years (even when choosing the "Custom" option). We recommend defining the expiry to 24 months:

  16. Here you will find the Client Secret. This information will be required for the connector, you should copy it for example in your Notepad. It is important that you copy the Value of the client secret, and not the Secret ID


  17. When clicking now on Overview, you will find the Application (client) ID and the Directory (tenant) ID. The 2 values will also be required for the connector, please copy them too

  18. The registration of the ROOMZ application is done.


Limit access to meeting rooms only

With the previous configuration, the application is allowed to access the agenda of all resources and users of the organization.

ROOMZ only requires to have access to the agenda of the meeting rooms. For this reason, we recommend to execute the following PowerShell commands in order to restrict the access.

Hint: the following connection with the Exchange Admin Center must be executed using Edge or Internet Explorer

  1. Install or start Exchange Online PowerShell Module. You can download it from the Exchange admin Center.
    Once logged in, scroll down to Hybrid.
    (Should you have any issue when downloading this file with Google Chrome, please try with Edge).

  2. Execute the following command and connect to your Office365 using an admin account.

    Connect-EXOPSSession

  3. Create a Mail-enabled security group with the following command. Here the name of the group is RoomzResources. You have to replace the PrimarySmtpAddress with a valid domain name.

    New-DistributionGroup -Name RoomzResources -Alias RoomzResources -PrimarySmtpAddress RoomzResources@myorganization.com -Type security

  4. Fill this group with all room mailboxes. Don't forget to change the name of RoomzResources should you have used another name:

    Get-Mailbox| where {$_.RecipientTypeDetails -eq "RoomMailbox"} | foreach {Add-DistributionGroupMember -Identity RoomzResources -Member $_.UserPrincipalName}

  5. Apply an application access policy with the following command. Replace the myAppId with the Application (client) ID from the previous section. Replace RoomzResources with the name of the group you created.

    New-ApplicationAccessPolicy -AppId myAppId -PolicyScopeGroupId RoomzResources -AccessRight RestrictAccess -Description "Restricted ROOMZ Access"

  6. In order to reduce the propagation time required by Microsoft Azure, this command can accelerate the process:

    Update-DistributionGroupMember RoomzResources

  7. Thanks to this, the application is now restricted to access only the agenda of the group RoomzResources, containing only meeting rooms. Should you create new meeting rooms, please re-execute the command on point 4.


Meeting Title & Private Flag

By default, when a user is sending an invitation for reserving a meeting room, Exchange will only store the name of the organizer in the agenda of the meeting room. The meeting's title and the private flag are not stored.

This is the result you will get on a ROOMZ Display, if no setup is changed: 

If you want to show the meeting title, the following PowerShell command has to be executed for each room. When the meeting is considered as 'private', the title of the meeting will be replaced by 'Reserved' on the ROOMZ Display. 

NOTE : Once executed, this command will only be effective for the new meetings. When new meeting rooms are created, this command has to be executed again.

Get-Mailbox| where {$_.RecipientTypeDetails -eq "RoomMailbox"} | Set-CalendarProcessing -AddOrganizerToSubject $false -DeleteSubject $false -RemovePrivateProperty $false

The title of the future meetings will then be correctly shown on the device:

When a meeting is private, the display will show the information as follows:

  • No labels