博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用Powershell批量获取Exchange 2013邮箱用户容量使用量
阅读量:6816 次
发布时间:2019-06-26

本文共 3862 字,大约阅读时间需要 12 分钟。

         今天有客户要求需要获取邮箱用户的一些基本信息,其中一项是邮箱容量使用情况。需要使用Powershell来批量获取这些信息,于是乎我开始着手编写Powershell脚本。

我了解到微软官网。提供了这个脚本,脚本实现的功能和我需要实现的功能大体一致,我也不用去费劲儿从头编写代码了。下面我将我改造后的脚本分享给大家。

1、脚本实现的功能

   脚本邮箱用户的脚本批量去获取邮箱用户的信息(显示名称、登录名、OU信息、邮箱配额、邮箱邮件数量、邮箱已使用大小、邮箱地址、邮箱容量使用情况等信息)

2、脚本运行环境

   目前该脚本可以用来获取Exchange 2010/2013。至于Exchange 2016目前还未进行测试。

3、修复了原脚本中的如下不足之处:

1)、修复显示名称中包含中文时显示乱码问题。

2)、添加了判断当用户邮箱设置了自定义配额且自定义配额设定为无限制时,脚本自动判断条件。

3)、添加了计算用户邮箱使用量(百分比)。

4)、添加了用户邮箱配额设定为数据库配额,且数据库配额设定为无限制时,脚本自动判断条件。

4、脚本内容:

#--------------------------------------------下面为脚本正文内容,直接复制如下内容,然后保存为.ps1-------------------------------------------------

Param(   

    [Parameter(Mandatory = $true)]    
    [string] $CSVPath    
)

$Mailboxes = Get-Mailbox -ResultSize Unlimited

$CSV = @()   

foreach($Mailbox in $Mailboxes)    
    {    
        $MailboxStats = (Get-MailboxStatistics $Mailbox -WarningAction SilentlyContinue )

        if ($mailbox.UseDatabaseQuotaDefaults -eq $true)   

            {    
                if((Get-MailboxDatabase $mailbox.Database).ProhibitSendReceiveQuota.Value -eq $null)    
                    {    
                        $ProhibitSendReceiveQuota=0    
                    }    
                if((Get-MailboxDatabase $mailbox.Database).ProhibitSendReceiveQuota.Value -ne $null)    
                    {    
                       $ProhibitSendReceiveQuota=(Get-MailboxDatabase $mailbox.Database).ProhibitSendReceiveQuota.Value.ToMB()     
                    }    
            }    
        if ($mailbox.UseDatabaseQuotaDefaults -eq $false)    
            {    
                if($mailbox.ProhibitSendReceiveQuota.Value -eq $null)    
                    {    
                        $ProhibitSendReceiveQuota=0    
                    }    
                if($mailbox.ProhibitSendReceiveQuota.Value  -ne $null)    
                    {    
                        $ProhibitSendReceiveQuota=$mailbox.ProhibitSendReceiveQuota.Value.ToMB()    
                    }                
            }

        $CSVLine = New-Object System.Object   

        $CSVLine | Add-Member -Type NoteProperty -Name "DisplayName" -Value $Mailbox.DisplayName    
        $CSVLine | Add-Member -Type NoteProperty -Name "UserName" -Value $Mailbox.SamAccountName    
        $CSVLine | Add-Member -Type NoteProperty -Name "PrimarySMTP" -Value $Mailbox.WindowsEmailAddress    
        $CSVLine | Add-Member -Type NoteProperty -Name "OrganizationalUnit" -Value $Mailbox.OrganizationalUnit    
        $CSVLine | Add-Member -Type NoteProperty -Name "EmailAliases" -Value ($Mailbox.EmailAddresses.SmtpAddress -join "; ")    
        if($MailboxStats)    
            {    
                if($ProhibitSendReceiveQuota -eq 0)    
                    {    
                        $CSVLine | Add-Member -Type NoteProperty -Name "TotalItemSizeInMB" -Value $MailboxStats.TotalItemSize.Value.ToMB()    
                        $CSVLine | Add-Member -Type NoteProperty -Name "ItemCount" -Value $MailboxStats.ItemCount    
                        $CSVLine | Add-Member -Type NoteProperty -Name "StorageLimitStatus" -Value $Mailbox.StorageLimitStatus    
                        $CSVLine | Add-Member -Type NoteProperty -Name "UseDatabaseQuotaDefaults" -Value $Mailbox.UseDatabaseQuotaDefaults    
                        $CSVLine | Add-Member -Type NoteProperty -Name "ProhibitSendReceiveQuotaInMB" -Value "此用户无配额限制"    
                        $CSVLine | Add-Member -Type NoteProperty -Name '邮箱使用情况(%)' -Value "此用户无配额限制"    
                    }    
                if($ProhibitSendReceiveQuota -ne 0)    
                    {    
                         $CSVLine | Add-Member -Type NoteProperty -Name "TotalItemSizeInMB" -Value $MailboxStats.TotalItemSize.Value.ToMB()    
                         $CSVLine | Add-Member -Type NoteProperty -Name "ItemCount" -Value $MailboxStats.ItemCount    
                         $CSVLine | Add-Member -Type NoteProperty -Name "StorageLimitStatus" -Value $Mailbox.StorageLimitStatus    
                         $CSVLine | Add-Member -Type NoteProperty -Name "UseDatabaseQuotaDefaults" -Value $Mailbox.UseDatabaseQuotaDefaults    
                         $CSVLine | Add-Member -Type NoteProperty -Name "ProhibitSendReceiveQuotaInMB" -Value $ProhibitSendReceiveQuota    
                         $UsedSpace=[int]($MailboxStats.TotalItemSize.Value.ToMB()*100/$ProhibitSendReceiveQuota)    
                         $CSVLine | Add-Member -Type NoteProperty -Name '邮箱使用情况(%)' -Value ("$UsedSpace"+"%")    
                    }    
             }    
        $CSV+=$CSVLine    
    }

$CSV | Sort TotalItemSize -Descending | Export-Csv -NoTypeInformation $CSVPath -Encoding Unicode

#-------------------------------------脚本内容结束------------------------------------------------------------------------------------------------------------------

5、脚本使用方法

       将脚本内容复制后另存为.ps1格式(例如:New-MailboxSizeReport-02.ps1。在Exchange 上使用Exchange Powershell执行该脚本,如图。

 

     由于时间关系没有对脚本的执行效率进行优化,有兴趣的童鞋可以去研究研究。

本文转自 jialt 51CTO博客,原文链接:http://blog.51cto.com/jialt/1768198

转载地址:http://lhdzl.baihongyu.com/

你可能感兴趣的文章
数组Array,集合List与字符串String,整形int的get类方法。
查看>>
【转】浏览器内核
查看>>
面试题:查找旋转数组中的某一元素
查看>>
uva12298(生成函数)
查看>>
C++ variable_template
查看>>
第十七章、程序管理与 SELinux 初探 工作管理 (job control)
查看>>
2016年新年伊始
查看>>
DataTable循环删除行
查看>>
字符串2
查看>>
在Linux合并文件
查看>>
nodejs express-session使用时 req.session undefined问题
查看>>
[工具]iostat
查看>>
php正则表达式匹配函数
查看>>
从零开始学OpenDaylight之五:Hello安装到Controller
查看>>
发送带有附件的邮件
查看>>
MySQL 教程分享
查看>>
s.isdigit、isdecimal和s.isnumeric区别
查看>>
中型公司网络架构拓扑与详解
查看>>
磁盘分区以及解决反序安装操作系统所带来的困扰
查看>>
python3 no module named yaml
查看>>