You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting a variable for the recipients parameter the command failed with the error:
The property "DisplayName" cannot be found on this object. Verify that the property exists.
Here is what was attempted:
$m = Get-EXOMailbox -ResultSize unlimited | Select Identity
Start-RobustCloudCommand -Recipients $m -ScriptBlock { Get-User -Identity $input.Identity ...
To fix, changed the variable to:
$m = Get-EXOMailbox -ResultSize unlimited | Select Identity,DisplayName
The text was updated successfully, but these errors were encountered:
When setting a variable for the recipients parameter the command failed with the error:
The property "DisplayName" cannot be found on this object. Verify that the property exists.
Here is what was attempted:
$m = Get-EXOMailbox -ResultSize unlimited | Select Identity
Start-RobustCloudCommand -Recipients $m -ScriptBlock { Get-User -Identity $input.Identity ...
To fix, changed the variable to:
$m = Get-EXOMailbox -ResultSize unlimited | Select Identity,DisplayName
The text was updated successfully, but these errors were encountered: