Put this inside .bat:
start javaw -classpath "%~dp0YOU-JAR-NAME.jar" -Djava.library.path="native" foo.package.bar.YourClassWithMainMethod
the -Djava.library.path="native" parameter is not required to run it, I turn it on because one of the reasons for using .bat is to double-click on .jar instead to use the JVM parameters, in my case I need this parameter for my project run.
part% ~ dp0 gets the current directory
source share