My emacs.bat rest in the same bin directory as emacs.exe. This directory is included in the PATH variable (Windows).
Content of emacs.bat:
@echo off "%~dp0emacsclientw.exe" -na "%~dp0runemacs.exe" "%1"
However, whenever I use this command, emacs.exe gets executed instead of the .bat file. How would I go about fixing this?