为微软 Exchange 2007 服务器配置邮箱数据库的维护期。
Visual Basic
$mbdb = get-mailboxdatabase -server SERVERNAME | select-object name
$val = 0
while ($val -ne $mbdb.count)
{
set-mailboxdatabase $mbdb[$val].name -MaintenanceSchedule “Sun.11:30 PM-Mon.1:30 AM”
$val++
}
Latest posts by Exchange中文站 (see all)
- 微软发布Azure PlayFab公众预览 - 2021年10月22日
- 微软发布全新云计算资料分析工具Azure Synapse - 2020年12月15日
- Exchange Server 版本号和发行日期汇总 - 2020年9月21日
发布于:
浏览:1214 次
还没有评论