重新启动 Microsoft Exchange 服务。通过报错我们取得我们的 Exchange 服务器的域控制器和曾经因为它要花 20 分钟才能重新启动。通过首先停止所有相关邮件服务我们改善我们的重新启动时间仅需 5 分钟。
Visual Basic
@echo off
REM /***************************************************\
REM * DCexchangeRestart.bat *
REM * Created: 01/17/2006 By: JHARDWICK *
REM \***************************************************/
echo This program will restart the server.
echo Press Ctrl+C to cancel restart, or
pause
echo You have chosen to shut down.
net stop iisadmin /y
net stop MSExchangeIS
net stop MSExchangeMGMT
net stop MSExchangeMTA
net stop MSExchangeSA
Shutdown -r -t 00
Latest posts by Exchange中文站 (see all)
- 微软将推出卫星解决方案:可连接到 Azure 云服务 - 2020年9月17日
- Windows Terminal 1.0正式发布 - 2020年5月25日
- Azure Lighthouse 相关介绍 - 2020年3月2日
发布于:
浏览:7269 次
还没有评论