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.
Asked
Active
Viewed 1,859 times
-1
-
Run it from a vbvscript instead – Hackoo Oct 05 '16 at 10:37
-
Fine. I will try this. – sudhakarkmtcs Oct 06 '16 at 05:19
-
We solved this via a AutoIT script(https://www.autoitscript.com/site/) – sudhakarkmtcs Oct 13 '16 at 11:21
1 Answers
-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