Exchange 2010 powershell - 选择自定义属性

Exchange 2010 powershell - 选择自定义属性

如何从 Exchange powershell 命令 get-mailboxstatistics 中选择自定义属性?我本来希望使用类似这样的命令

get-mailboxstatistics -server dbserver | select DisplayName, ItemCount, {$_.TotalItemSize.value.toMB()}, Database, ***customattribute3*** | export-csv c:\allusers.csv -encoding "unicode"

是否可以提取自定义属性?

答案1

属性“CustomAttribute”是 Get-Mailbox Cmdlet 的一部分,因此我建议将此 Cmdlet 合并到您的脚本中。

相关内容