搜索邮箱服务器应用程序日志和报告可用的数据库空间。
$result=”Database”+”`t”+”Whitespace (MB)”+”`n”
$date=get-date -format “M/d/yyyy”
$server = get-mailboxserver
foreach ($i in $server){
$pslog = new-object System.Diagnostics.EventLog(“Application”, “$i”)
$colevents= $pslog.Entries | where-object { ($_.EventID -like “1221”) – AND ($_.TimeGenerated -like “$date*”)}
foreach ($j in $colevents) {$result+= $j.replacementstrings[1]
+”`t”+$j.replacementstrings[0]+”`n”}
}
$result > c:\temp\test.xls
Latest posts by Exchange中文站 (see all)
- 微软将推出卫星解决方案:可连接到 Azure 云服务 - 2020年9月17日
- Windows Terminal 1.0正式发布 - 2020年5月25日
- Azure Lighthouse 相关介绍 - 2020年3月2日
发布于:
浏览:1410 次
还没有评论