Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a script to monitor the CPU usage and perform an IISRESET if the usage goes to 99% for a prolonged period of time. However, the webservers that the code will be running are part of a cluster. So the plan is to to issue an "nlb.exe suspend". The code below shows the IF statement I've used.

If Violation = 10 Then
WshShell.run ("c:\windows\system32\nlb.exe suspend")
WshShell.run ("c:\windows\system32\iisreset.exe")
WshShell.run ("c:\windows\system32\nlb.exe resume")
Violation = 0
End If

What I'm trying to do is add a line which will check the nlb status before continuing and only proceed when the suspend has taken effect.

I've not got much experience with nlb but from looking online I think it's something like:

Do Until LBLStatus = 1
Set LBLStatus = objWMIService.ExecQuery("Select StatusCode from MicrosoftNLB_Node",,48) 
Loop

Would that have the effect I'm looking for? And does anyone know what the return status code is for suspended?

If I'm way off here a pointer in the right direction would be great.

As always, thanks a lot for you help.

Alex

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.