EXO V3
2 TopicsNeed 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.590Views0likes1CommentConnect-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.5KViews0likes2Comments