0 votes

It appears that we can allow conflicting meetings on a room mailbox but can't set the number of allowed conflicts. Is this a bug or intended? Can we request this feature? Do you have a script to create a custom command for this?

We are on version 3.14.19723.0

image.png

Thanks, Mark

by (2.3k points)

1 Answer

0 votes
by (270k points)
selected by
Best answer

Hello Mark,

Is this a bug or intended?

This behavior is by design.

Can we request this feature?

We forwarded the request to the corresponding department for consideration.

Do you have a script to create a custom command for this?

You can use the below script. In the script:

  • $exchangeServer – Specifies the host name of the Exchange server.
  • $numberOfConflicts – Specifies the number of allowed conflicts to set.
$exchangeServer = "exchangeServer.domain.com" # TODO: modify me
$numberOfConflicts = 3  # TODO: modify me

try
{
    # Connect to Exchange server
    $session = New-PSSession -connectionURI "http://$exchangeServer/powershell" -ConfigurationName Microsoft.Exchange
    Import-PSSession -session $session -CommandName "Set-CalendarProcessing"

    # Change mailbox type
    Set-CalendarProcessing "%distinguishedName%" -MaximumConflictInstances $numberOfConflicts
}
finally
{
    # Close the remote session and release resources
    if ($session) { Remove-PSSession -Session $session}
}

Related questions

0 votes
1 answer

We would like to auto enroll our entire company into Adaxes for self service but do not want to use the question/answer format but instead their phone numbers (provided by HR department). Is this possible? Best, Evangelos

asked Oct 1, 2021 by evangelos (60 points)
0 votes
1 answer

We have 4 om prem servers to setup Adaxes on, we currently have almost everything on one server but have crashed on several occassions when multiple scheduled jobs are ... way to achieve this configuration without having to buy double the licenses. Thanks' Jay

asked Sep 24, 2021 by willy-wally (3.2k points)
0 votes
0 answers

It would be great if we could run a report on an OU and get the following information: Computer Name Local Accounts Whether or not the account is an administrator ... this is less important. Thanks in advance. Your support team is great and appreciated.

asked Sep 8, 2021 by mikek (80 points)
0 votes
1 answer

Hello, Is it possible to grant members of a business unit permission to run a custom command? I know I'm able to give permission to a user/group to run a cmd on a business ... that can run the command. I've not been successful with any of my attempts to do so.

asked Mar 23, 2017 by JoCCCsa (100 points)
0 votes
0 answers

Good Afternoon, I'm looking for some clarification on what security settings I would need to apply to the Self-Service Users to allow them to update both their own ... accounts they have full access to. Please let me know if this requires more clarification.

asked Jul 22, 2021 by jtop (680 points)
3,326 questions
3,026 answers
7,727 comments
544,678 users