For my sensors on the probe of my core server, on one or more cluster nodes, or on a remote probe, I get the following error message:
This sensor requires the .NET Framework version 2.0 or higher (code: PE104)
or
This sensor requires the .NET Framework version 3.0 or higher (code: PE104)
or
External EXE/Script did not return a response (code: PE087)
Article Comments
I had the same problem. There was no error running from console, just blank line. Only PRTG reported PE087.
You can check what versions of .NET framework are installed with this VBScript (save as net.vbs file and run on server)
Dim Act :Set Act = CreateObject("Wscript.Shell") Dim Obj, Rg1, Rst Dim Reg :Reg = Array( _ "1 - HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\1.0.3705\Version", _ "1.1 - HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\1.1.4322\Version", _ "2 - HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v2.0.50727\Version", _ "3 - HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.0\Version", _ "3.5 - HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5\Version", _ "4 Client Profile - HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup\NDP\v4\Client\Version", _ "4 Full - HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup\NDP\v4\Full\Version") On Error Resume Next For Each Obj In Reg Rg1 = Split(Obj," - ") If IsNull(Act.RegRead(Rg1(1))) Then Rst = Rst & "Missing Net Frame Work : " & Rg1(0) & vbCrLf Else Rst = Rst & "Confirm Net Frame Work : " & Rg1(0) & " - " & Act.RegRead(Rg1(1)) & vbCrLf End If Next MsgBox Rst, 4128,"Net Framework Info"
Mar, 2012 - Permalink
The sensor you have installed requires the Microsoft .NET framework to be installed on the system running the PRTG probe, either on every cluster node, or on the computer running the remote probe (depending on where you set up the sensor).
In order to run the sensor, please install .NET on all systems running a PRTG probe. Usually, you will need .NET version 2.0, 3.0, or 4.0. They come with Windows Update (or google for ".NET framework download").
Please note: You have to install versions 2.0 and 3.0 explicitly. Installing a higher version (e.g. 4.0) will not work! The exact .NET version which a sensor needs is given in the respective manual sections.
Feb, 2011 - Permalink