码迷,mamicode.com
首页 > 其他好文 > 详细

统计一年新增的邮箱数

时间:2016-12-14 14:43:38      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:exchange2010统计邮箱数

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

  • 列出2016年新增的邮箱

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

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


技术分享


参考:

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/


本文出自 “赵东伟的博客” 博客,请务必保留此出处http://zhaodongwei.blog.51cto.com/4233742/1882543

统计一年新增的邮箱数

标签:exchange2010统计邮箱数

原文地址:http://zhaodongwei.blog.51cto.com/4233742/1882543

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!