-1

In my project i am using the btach file to start the exe file. This batch file is triiggered from an external source(may be another exe). It works as expected. But it opens a console. We don't want any conosole to displayed. Is there any way where we can hide this console. We tried with -- console suppress, could not get the desired results.

sudhakarkmtcs
  • 69
  • 1
  • 7

1 Answers1

-1

This cannot be done as batch files use the cmd program to execute the desired code. All i can suggest is to make the code as quick and sharp as possible to have it on screen for minimal time, or execute the code using a third party program or a different coding program all-together.

Tezak
  • 36
  • 3