portable executable - how to modify exe to make it console window hidden? -
i have program. program had open console window display logs when started. dont window, no source code. so, how hide console? such modify exe file?
you can start hidden.
i use little vbscript code it. create start hidden.vbs
file in same folder of program.exe
, write code in it:
set oshell = createobject("wscript.shell") oshell.run "program.exe", 0
run start hidden.vbs
, should start program hidden. process visible in task manager.
Comments
Post a Comment