Hello,
I had a problem with one of my Users regarding Her Blackberry Device , she was receiving Meeting Invatetions as an Email not as a Meeting Requests.
the Problem was with Her Mailbox Configuration , something Known as " Process External Meeting Messages" the value of this option was set to "Fales" .
To solve this Problem you need to get the User Mailbox configuration and see the value of "ProcessExternalMeetingMessages" to do that use the following Command Line:
Get-CalendarProcessing -Identity <username> | format-list
I had a problem with one of my Users regarding Her Blackberry Device , she was receiving Meeting Invatetions as an Email not as a Meeting Requests.
the Problem was with Her Mailbox Configuration , something Known as " Process External Meeting Messages" the value of this option was set to "Fales" .
To solve this Problem you need to get the User Mailbox configuration and see the value of "ProcessExternalMeetingMessages" to do that use the following Command Line:
Get-CalendarProcessing -Identity <username> | format-list
if the Value is set to "False" then you will need to set it for "true"
to do that you can use the Following Command-line :
Get-mailbox <alias> | Set-CalendarProcessing -ProcessExternalMeetingMessages: $true
check again the Value of the "ProcessExternalMeetingMessages" it should be "true" .
and this should be engouh to solve your Problem.