Exchange-统计一年新增的邮箱数

简介:

最近在写年终总结,需要统计这一年新增的邮箱数。

  • 列出2016年新增的邮箱

C:\>Get-Mailbox | Where-Object {($_.WhenCreated).Year -eq 2016}
  • 统计2016年新增的邮箱数量

C:\>Get-Mailbox | Where-Object {($_.WhenCreated).Year -eq 2016} | Measure-Object -Line


wKiom1hQukSSyEWjAABCjpCkc4E548.jpg


参考:

Where-Object

https://msdn.microsoft.com/powershell/reference/5.1/microsoft.powershell.core/Where-Object?f=255&MSPPError=-2147217396

筛选

https://technet.microsoft.com/zh-cn/library/dd298043(v=exchg.141).aspx

Measure-Object

https://msdn.microsoft.com/powershell/reference/5.1/microsoft.powershell.utility/Measure-Object

http://281816327.blog.51cto.com/907015/1549934/







      本文转自cix123  51CTO博客,原文链接:http://blog.51cto.com/zhaodongwei/1882543,如需转载请自行联系原作者


相关文章
【TP5.1】查询在数组内的所有数据,并且根据用户id分组,计算消费金额总和大于100的数量
【TP5.1】查询在数组内的所有数据,并且根据用户id分组,计算消费金额总和大于100的数量
205 0
【TP5.1】查询在数组内的所有数据,并且根据用户id分组,计算消费金额总和大于100的数量

热门文章

最新文章