Hi,
I have this Application monitor (Weblogic Health VBScript) and all of a sudden now it has stopped working.

I have it "un-managed" just to see if it will fix (I doubt it will) but the script it runs gives me an error.
Here is the script:
Set WshShell = CreateObject("Wscript.Shell")
Set WshSysEnv = WshShell.Environment("PROCESS")
Set objArgs = WScript.Arguments
x = WshSysEnv("CLASSPATH")
if InStr (x, "wlfullclient") = 0 then
WshSysEnv("CLASSPATH") = "./;C:\temp\wlfullclient.jar;C:\temp" & x
End If
'WshShell.CurrentDirectory = "C:\temp\"
'WshShell.LogEvent 0, "PATH " & WshSysEnv("CLASSPATH") & " Current " & wshShell.CurrentDirectory
intExit = -1
Set objExec = WshShell.Exec("C:\Program Files (x86)\SolarWinds\Orion\APM\jre6\bin\java.exe ServerThreadHealthStateMonitorIndiv " & objArgs(0) & " " & objArgs(1) & " " & objArgs(2) & " " & objArgs(3) & " " & objArgs(4))
Do While Not objExec.StdOut.AtEndOfStream
strHealth = objExec.StdOut.ReadLine()
If InStr(strHealth, "HEALTH_OK") > 0 then
Wscript.Echo strHealth
intExit = 0
End If
If InStr(strHealth, "HEALTH_WARN") > 0 then
Wscript.Echo strHealth
intExit = 2
End If
If InStr(strHealth, "HEALTH_CRITICAL") > 0 then
Wscript.Echo strHealth
intExit = 3
End If
If InStr(strHealth, "HEALTH_FAILED") > 0 then
Wscript.Echo strHealth
intExit = 3
End If
If InStr(strHealth, "HEALTH_OVERLOADED") > 0 then
Wscript.Echo strHealth
intExit = 2
End If
If InStr(strHealth, "SHUTDOWN") > 0 then
Wscript.Echo strHealth
intExit = 3
End If
If InStr(strHealth, "Statistic") > 0 then Wscript.Echo strHealth
Loop
If intExit = -1 then
Wscript.Echo "Message." & objArgs(4) & ": SHUTDOWN"
Wscript.Echo "Statistic." & objArgs(4) & ": -1"
intExit = 3
End If
WScript.Quit(intExit)
IT tries to run and I get this error. I have no clue what this really means and I have looked for this file in the temp directory and it doesn't exist. I am not sure where it is looking for it in the script above.
