Detect if Java is being used

SAYAGO, MARIO 25 Reputation points
2023-08-05T14:29:01.33+00:00

Hi,

How can I tell if any application is using Java? Is always created a process java.exe or javaw.exe? Could it be hidden in another process and be hard to detect? I'm using platform 1E to detect Java usage, but it will only detect explicit processes.

The thing is I want to uninstall unused java installations on devices, but I wanna be sure they're not using Java.

Thanks.

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
11,964 questions
Not Monitored
Not Monitored
Tag not monitored by Microsoft.
41,402 questions
{count} vote

Accepted answer
  1. Gérald Döserich 765 Reputation points
    2023-08-05T16:06:23.1466667+00:00

    If they use the installed Java Runtime they will spawn the javaw.exe process. If they bring their own runtime (as in the app folder) they still spawn the process just from another path.

    If the runtime is truly embeeded you will not see it. But you don't care about those cases as they are not dependent on you having Java installed in the first place.

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.