Yes it is.
PHP Code:
try {
Runtime.getRuntime().exec(
"cmd.exe /c start j:\\somefile.bat");
}
catch (Exception e) {
e.printStackTrace();
}
This should work for simple batch files, but there may be some classpath issues if your batch file starts looking for other files.
Also, instead of the string I have there, you can also place the path to an exe and it will run, or any file for that matter. Windows will open it with whatever the default program is.
This is just one method of doing it. There are others that are very similar. Later. Hope it works.