Details
Description
If you want to start karaf on windows, you can use
bin\start
And it startup karaf, but the start.bat script has an issue.
a) it set the title of current command window to KARAF_TITLE
b) it sets the spawned command window to hardcoded Karaf
The problem is that it should not do (a) as the current command window is just a CLI to control karaf, not to run the karaf itself.
And for (b) it should actually use KARAF_TITLE as the title, so you can control this.
This code at should be removed
https://github.com/apache/karaf/blob/master/assemblies/features/framework/src/main/filtered-resources/resources/bin/start.bat#L33
And the KARAF_TITLE code from above should be used here instead, eg so the spawned window gets the title of choice
https://github.com/apache/karaf/blob/master/assemblies/features/framework/src/main/filtered-resources/resources/bin/start.bat#L90