|
Nicks -> RE: Exchange VB script does not work on Exch2003 servers? (20.Jan.2004 6:07:00 AM)
|
Hi,
Unfortunatly a function of the Exchange vb script is not suitable for Exchange 2003. Exchange 2003 does not install a WMI class that is used by the vb script. The function is Function Check_Num_RPC_Requests().
To solve this problem, and still make use of the Exchange checking rule, you will have to remark the following code in the script.
' numResult = Check_Num_RPC_Requests( strComputer, 25 ) ' If( numResult <> True ) Then ' CheckExchange = numResult ' Exit Function ' End If
This can be done by inserting an inverted comma (') at the beginning of the line which is calling the function (as shown above).
Note that the Exchange checking rule does perform 2 other checks: Check_ExchangeServices - checks that the Exchange services are running Check_Length_SMTPQueue - checks if the SMTP queue is higher then 5.
|
|
|
|