Microsoft Exchange

Exchange 2010 CAS

Description:

Exchange Client Access Checks for 2010

These use the inbuilt test functionality in Exchange through the Exchange Management Shell. These tests log in using the test cas users to the various servers and actually test functionality AND response. So it will fail if something underlying is failing in the system too.

Before running these – you must have created the test cas user using the “new-testcasconnectivityuser.ps1” script found in your Exchange Management tool installation (under scripts folder).

Check scripts for:
– ActiveSync Connectivity
– IMAP Connectivity
– MAPI Connectivity
– Outlook TCP (RPC) Connectivity
– OWA Connectivity
– WebServices Connectivity

I have not been able to test all of the failure cases yet.

A work in progress..

Current Version

0.1

Last Release Date

2011-05-19

Compatible With

  • Nagios 2.x
  • Nagios 3.x
  • Nagios XI

Nagios CSP

Meet The New Nagios Core Services Platform

Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.

Monitoring Made Magically Better

  • Nagios Core on Overdrive
  • Powerful Monitoring Dashboards
  • Time-Saving Configuration Wizards
  • Open Source Powered Monitoring On Steroids
  • And So Much More!
Project Files
Project Notes
Reviews (2) Add a Review
could be better
by TheMichi44, December 31, 2014
here is the first problem:

###########################
$status = 0;
$desc = "";

test-activesyncconnectivity | ForEach-Object {
[snippet]
elseif ($status -eq "0") {
Write-Host "OK: ActiveSync Connectivity OK"
###########################

if you have an error on "test-activesyncconnectivity" the status will be "OK" at the end.

i would do the following as a fast fix:

###############
$status = 2; # 2 = critical
$desc = "";

test-activesyncconnectivity | ForEach-Object {
if($_.Result -like "Success") {
$status = 0;
###############

So you would get a "critical" output at the end if you have a problem at "test-activesyncconnectivity".


fast hint for other languages:

######################
elseif($_.Result -like "Failure") {
######################

in german it would be:

######################
elseif($_.Result -like "Erfolgreich") {
######################

greetz
Helpful? Yes  No 
works as expected
by alfred, November 30, 2011
just works :-)

exchange 2010 SP1
Helpful? Yes  No 
Add a Review

You must be logged in to submit a review.

Thank you for your review!

Your review has been submitted and is pending approval.

Recommend

To:


From:


Thank you for your recommendation!

Your recommendation has been sent.

Project Stats
Rating
4 (2)
Favorites
0
Views
107,183