Montoring the Exchange 2007 Database in SCC / CCR
-
2012년 1월 22일 일요일 오후 2:30
Hi Team
I expecting to script (PS1) to monitor all my Exchnage 2007 database (5 No's)
The Script should send the email to our Exchage admins, whenever the database is down.. We don't want to use any SCCM or MOM....and 3rd part utility.
Any help
ramakrishnan
모든 응답
-
2012년 1월 22일 일요일 오후 6:50Something like this would help you - http://www.msexchange.org/articles_tutorials/exchange-server-2010/monitoring-operations/monitoring-exchange-2007-2010-powershell-part3.html
Sukh -
2012년 1월 23일 월요일 오후 11:56
Hi Sukh
I went the above link aleady ....but it looks different one...
am too searching in google
Thnaks for your update
ramakrishnan -
2012년 1월 24일 화요일 오전 7:39중재자
Hello,
Please check the following article to see if it meet your requirement:
Script to send an email if your server is down
http://www.lowendtalk.com/discussion/604/script-to-send-an-email-if-your-server-is-down
Thanks,
Simon
-
2012년 1월 24일 화요일 오후 4:14
Hi Simon and all
Am just expecting the script like
Get-MailboxDatabase –Status | Format-Table Name, Server, Mounted
It will give the output of the Database Name , ServerName, and Mounted status(True or Fase)
If Mounted status is false that is Dismonuted it should send the email to the respective people
Since we have 4 mailbox server and mutiple SG and Database , am expecting the output of the script lik
DatababaseName Servername Database Status
============ ======== =============
DB01 MBXSRV1 Dismounted
Hope you all understand my Query..
ramakrishnan- 답변으로 제안됨 Shashi.Surve 2012년 2월 8일 수요일 오후 12:19
- 답변으로 제안 취소됨 Shashi.Surve 2012년 2월 8일 수요일 오후 12:19
-
2012년 2월 8일 수요일 오후 12:18
Hi,
You need to use the same PS cmdlet but added the filter to only check for dismounted state.
Get-MailboxDatabase –Status | where {$_.mounted -like "False"}| Format-Table Name, Server, Mounted
If you have Windows 2008 where Exchange management tools installed schdule it from there with email action.
you need to schedule for every 15 or 20 minutes interval. depends on your monitoring poll.
Regards,
Shashi
Shashi
- 답변으로 제안됨 Shashi.Surve 2012년 2월 8일 수요일 오후 12:19

