Probe cannot be run with commands that parse an empty parameter on Windows
There is a known Windows limitation whereby a command cannot be parsed if it contains an empty parameter.
If you need to parse an empty string as parameter on the command line on Windows, you must use an escape character. For example, the following command will not work:
.\nco_p_glf_java.bat
-parserelementdelimiter ''
Use instead the following command:
.\nco_p_glf_java.bat -parserelementdelimiter
\'\'