exo v3
2 TopicsConnect-ExchangeOnline REST based number of max concurrent connections
Hello, we have recently switched from RPS to EXO V3 module. For RPS there is a limit of 3(5) concurrent connections per account. Is there any limit on number of concurrent connections when RPS is not used? Thank you TomasSolved1.6KViews0likes2CommentsNeed help with deprication of ExchangeSecurityDescriptor from EXOV2 to EXOv3.
Hi Everyone, I had a script running in EXOv2 version where the script had following part. (Get-EXOMailbox -propertyset all -RecipientTypeDetails SharedMailbox -Identity "username" -Properties ExchangeSecurityDescriptor).DiscretionaryAcl.Count Using this i was able to identify if delegates are present for the delegator provided. Can someone please help me with any suggestions here for the equivalent EXOv3 cmdlets if available? I tried with following $sharedMailboxes = Get-EXOMailbox -RecipientTypeDetails SharedMailbox -ResultSize Unlimited # Retrieve ExchangeSecurityDescriptor for each shared mailbox $sharedMailboxes | ForEach-Object { $mailbox = $_ $securityDescriptor = Get-EXOMailboxPermission -Identity $mailbox.DisplayName | Where-Object { $_.User -eq 'NT AUTHORITY\SELF' } $mailbox | Select-Object DisplayName, LinkedMasterAccount, @{ Name = 'ExchangeSecurityDescriptor' Expression = { $securityDescriptor } }, GrantSendOnBehalfTo } but its like increasing the number of calls i am making to powershell.615Views0likes1Comment