Hi @DanielBog
I tried to add your preference to knime.ini which resulted in a corrupt and broken knime GUI. This did at least not work for knime GUI
I then added this to my argument list for knime batch powershell script
$knimepath=“C:\Program Files\KNIME\knime.exe”
$ArgumentList=(“-Dchromium.multi_threaded_message_loop=true -consoleLog -reset -noexit -nosplash -application org.knime.product.KNIME_BATCH_APPLICATION -workflowFile=” + $workflow)
write-host (“Starting knime background process, please wait…”)
Start-Process $knimepath -ArgumentList $ArgumentList -wait
This resulted in an immediate knime error during script execution:
Where do I need to add this preference ?
Regards
Claus