Mago.io
  • Welcome to Mago Knowledge Base!
  • Prerequisites setup
    • Hardware, OS and Software Requirements
      • Multiple Display supported Scenarios
      • How to enable Bluetooth BLE (proximity) for BYOD Features
    • Network Requirements
    • Wireless Display
      • I am unable to see Miracast (AirServer) as a destination to mirror to
      • Fixing Miracast Issue with some Wifi Chipsets
    • MS Teams best practices
      • (optional) Disabling Chat in Teams accounts
    • Zoom best practices
    • System Hardening Best Practices
    • How to Create a Room Resource for Calendar Events
      • Google Workspace
      • Microsoft 365
        • Setup a room resource
        • Configure a Room resource
    • OS Updates, Drivers & firmware
      • OS Windows update policy
      • Update policy for Drivers and Firmware (Intune)
      • Mago Room Update
  • Installing Mago Room
    • Installation steps overview
      • ✍️Pre-requisites checklist
      • 1️⃣Install and configure Windows 10/11 OS
      • 2️⃣Install and configure Mago Room
        • Getting Mago Room
        • Installing Mago Room
          • Deploy Mago Room with Software Distribution (Silent Install)
        • First Configuration (Wizard)
        • Advanced Settings
      • 3️⃣Post-installation checklist
  • Cloud Management & Analytics Console
    • How to Create an IT Admin User Account and Manage Mago Room and Licenses
    • Adding a Room in the Valarea Management Console
    • Using the Mago Room ADMIN Console
      • Rooms List
      • How to Create Groups and Tags
      • How to create Policies
      • How to Assign Policies
      • Create and Schedule a Task
    • Analytics Console
  • FAQ
    • Frequently Asked Question
      • Mago OAuth scopes and permissions explained
        • Mago Room OAuth scopes
        • Mago Workspace App OAuth scopes
      • Important Configuration Files
      • Antivirus & Firewall exceptions
      • Installing Mago Room on existing Room systems (MTR or Zoom room hardware)
  • Videos for training
    • Videos for training
  • Mago Essential
    • Setup Guide
      • Requirements
      • Hardware installation
      • First configuration
  • TECH DOCS
    • 🛡️Security White Paper
      • Introduction
      • Reliability
      • Application Security
      • Mago Room Security
      • On-Cloud / On-Premise Deployment Security
      • Encryption
      • Vulnerability Management
      • Mago Information Security
      • Physical Security
      • Conclusion
    • ℹ️Dec 14, 2021 | Vulnerability Statement | Log4j
    • 📄Privacy Policy
    • 📱Mago Workspace for Android - Data safety
  • Support
    • Mago Helpdesk and Support
Powered by GitBook
On this page
  • 1) Sign in
  • 2) Run the command
  1. Prerequisites setup
  2. How to Create a Room Resource for Calendar Events
  3. Microsoft 365

Configure a Room resource

This page will help you fix event titles and accept resource requests automatically for room resource calendars.

PreviousSetup a room resourceNextOS Updates, Drivers & firmware

Last updated 1 year ago

By default events scheduled on the meeting room calendars in Exchange and Microsoft 365 will show the name of the organizer instead of the actual event title, for privacy reasons (see Microsoft KB here ). To make the most of Mago Room, you will want more descriptive titles. This is easily fixed through some administrative configuration via Powershell.

You'll need to create your room resources before you can apply the fix. For newly created room resources, you will need to repeat this process again.

  • Run the Azure Powershell or Azure Cloud Shell as an administrator.

1) Sign in

Sign in with Modern Authentication

  • Enter the following command and follow the intructions:

Connect-ExchangeOnline

or Sign in with Basic Authentication (deprecated)

  • Enter the following command: $UserCredential = Get-Credential

  • A dialog should popup asking for user credentials. Enter your login information.

  • Run the following command to connect to a Microsoft 365 session: $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri -Credential $UserCredential -Authentication Basic -AllowRedirection

  • Then run: Import-PSSession $Session

If you see an error similar to this: Import-Module: There were errors loading in the format data file: Microsoft.PowerShell

You'll need to run these command: Set-ExecutionPolicy RemoteSigned

Press Enter , Y , and then run Import-PSSession $Session

2) Run the command

  • Lastly, run this command, replacing "room@company.com" with your Room Mailbox Get-Mailbox "room@company.com" | Set-CalendarProcessing -AddOrganizerToSubject $false -DeleteSubject $false -DeleteComments $false -RemovePrivateProperty $false -AutomateProcessing AutoAccept

This will allow Mago Room to correctly retrieve an event's title and description for every room resource. Events scheduled on the room calendar will now show up in with the correct name. Private events will remain flagged as private.

https://docs.microsoft.com/en-us/exchange/troubleshoot/client-connectivity/calendar-shows-organizer-name
https://outlook.office365.com/powershell-liveid/
Import-Module error example