Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Content

Table of Contents
maxLevel6
minLevel1
include
outlinefalse
indent
excludeContent
typelist
printablefalse
class

...

If you followed the mentioned steps and still face the same issue, feel free to contact us under Contact

...

How to renew the client secret (For application permission)

Expand

Error Message : ClientSecretCredential authentication failed: A configuration issue is preventing authentication - check the error message from the server for details.

If you receive this error message during the resource connection test, you need to create a new client secret :

Go to your application in the Microsoft Azure / Entra ID portal and click on certificates & secrets :

Image Added

  1. Delete the old one:

    Image Added
  2. Generate a new one by clicking on the button:

     

    Image Added
Info

In graphical mode, you are limited to a maximum of 2 years, as per Microsoft's recommendation. You can use the following command line to extend beyond 2 years (You need to modify the values in bold):

New-AzureADApplicationPasswordCredential -ObjectId YourObjectID -CustomKeyIdentifier Roomz -Value $secret -StartDate (Get-Date) -EndDate (Get-Date).AddYears(5)

  1. Next, make sure to carefully copy the key value and replace it with the old one:

Image Added

We want to have a connector with Multi-Factor-Authentication (MFA)

...

Expand

When adding a new resource in the Roomz portal, Roomz may not have access to the resource. Follow these steps to resolve the issue:

1. If you are using Delegation

If you are in delegation mode, you need to grant full access to the room to the user logged into the Roomz portal. Please refer to the following documentation point 3️⃣ : https://roomzio.atlassian.net/wiki/spaces/SUP/pages/385122305/Microsoft+365+Delegation+Permission#3%EF%B8%8F%E2%83%A3-Access-rights-%26-calendar-information

2. If you are using Application Mode

If you are in application mode, you must add the new room to the appropriate security group, as detailed in the documentation at point 4️⃣ : https://roomzio.atlassian.net/wiki/spaces/SUP/pages/529924106/Microsoft+365+Application+Permission+Security+group#4%EF%B8%8F%E2%83%A3-Add-a-new-resource-to-the-Mail-enabled-security-group

How to install PowerShell on Mac

Expand
  1. Open the terminal over Spotlight with cmd+space > terminal

image-20240207-133902.pngImage Added
  1. You need to install Homebrew

Code Block
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

2b. If after the installation you have “Next Steps” on the bottom, run the commands mentioned. If not continue with 3.

image-20240207-134529.pngImage Added
  1. You can continue with installing PowerShell

Code Block
brew install --cask powershell
  1. You can start PowerShell

Code Block
pwsh