I'm building an electron app,
I can run shell commands pretty easily with the shell api (https://electronjs.org/docs/api/shell)
This command runs perfect for example:
shell.openItem("D:\test.bat");
This one does not
shell.openItem("D:\test.bat argument1");
How to run electron shell command with arguments?