"..\jdk-17\"' is not recognized as an internal or external command, operable program or batch file

Hello,

I encountered such an error after Java jdk update. There is no problem with the paths, sonar was working before.

How can I overcome this problem?

‘"C:\Program Files\Java\jdk-17"’ is not recognized as an internal or external command,
operable program or batch file.

Hi,

on a windows machine it’s normally like
JAVA_HOME=root\of\jdk\installation
PATH=%JAVA_HOME%\bin; …

This looks like the root of your Java installation, when PATH should have the \bin folder.

What’s the output of cmd set and java -version ?

Gilbert