I recently converted my apps to use Java modules and so need to specify both the module path and class path on startup, along with the main class as a module. I haven't been able to configure Launch4J to do this and suspect it's not supported. Has anyone been able to do this? The command line to start my app is shown below and I'd like to wrap it with Launch4J along with an embedded JRE. javaw -p myApp.jar;myModulesFolder -cp myClassesFolder/* -m com.mydomain.mymodule/com.mydomain.package.StartGUI...