You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello everyone, I have an .exe with interface and I want to run it from a bat file from my cmd command list, my .exe file has two text boxes:
Source File
Clue
I want to pass these two parameters through my bat file so that it is executed automatically, someone at some point has done something related or would have some ideas on how I could do it, greetings to all.
when executing my bat file it only opens the program but does not pass my parameters to my interface of my .exe
The text was updated successfully, but these errors were encountered:
Again, follow the steps outlined in the referenced issue:
Add the args to the call of the exe (e.g., myapp.exe /args --dog=woof --test=true)
You'll need a JS file run inside the electron application - this way you can call, e.g., app.CommandLine.HasSwitchAsync where app is the global application imported from the electron package
The (2) can also be read / achieved inside Electron.NET. The API has the CommandLine object that exposes the functionality from the app.CommandLine object.
Hello everyone, I have an .exe with interface and I want to run it from a bat file from my cmd command list, my .exe file has two text boxes:
Source File
Clue
I want to pass these two parameters through my bat file so that it is executed automatically, someone at some point has done something related or would have some ideas on how I could do it, greetings to all.
when executing my bat file it only opens the program but does not pass my parameters to my interface of my .exe
The text was updated successfully, but these errors were encountered: