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

Exchange - Get-InboxRule 获取用户邮箱规则

时间:2018-03-15 17:02:06      阅读:316      评论:0      收藏:0      [点我收藏+]

标签:Exchange获取用户邮箱规则

本示例为 Exchange2016

可使用 Get-InboxRule 命令获取邮箱规则

Get-InboxRule -Mailbox zhaodongwei

技术分享图片

批量导出

$Mailboxes = Get-Content E:\001scripts\InboxRule.txt
$Results =  foreach ($Mailbox in $mailboxes){
    Get-InboxRule -Mailbox $mailbox | Select-Object MailboxOwnerID,Name,priority,description
    }
$Results | Export-Csv -Path E:\001scripts\InboxRules.csv -Encoding utf8 

参考:https://technet.microsoft.com/zh-cn/library/dd351062(v=exchg.160).aspx

Exchange - Get-InboxRule 获取用户邮箱规则

标签:Exchange获取用户邮箱规则

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

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