在显示屏中显示$ Alias

时间:2018-06-27 19:42:46

标签: powershell exchange-server

我可以使用以下命令找出所有具有邮箱权限“测试”的Exchange邮箱。

$list_Access = Get-Mailbox -ResultSize Unlimited |
               Get-MailboxPermission |
               where {$_.user -like "*Testing*"} |
               Select Identity

Select语句中,我希望能够显示别名而不只是身份(应从$Alias中检索Get-Mailbox -ResultSize Unlimited)。

0 个答案:

没有答案
相关问题