2

I am running a batch file from ConEmu and want it to be as little intrusive as possible. I have set ConEmu to run minimized and close on exit. But.. after the batch is run, the window stays open and displays

ConEmuC: Root process was alive less than 10 sec, ExitCode=0.
Press Enter or Esc to close console...

Command line is (I already tried variations with and without extra cmd.exe, /c and /k switches):

C:\Tools\ConEmuPack.160403a\ConEmu64.exe /Exit /cmd cmd.exe /c C:\Users\test\Desktop\rdp_logout.bat

How can ConEmu window automatically close when batch file is done running?

1 Answer 1

4

It's all in docs. Just add -cur_console:n switch at the end.

4
  • It's not working for me. I also changed from latest alpha to stable. But it fails, command window stays open. C:\Tools\ConEmuPack.150813g\ConEmu64.exe /cmd cmd.exe /c C:\Users\test\Desktop\rdp_logout.bat /cur_console:n Same with /Exit switch I tried first. Maybe it has something to do with it running in admin mode on my machine (UAC disabled)? Commented Apr 5, 2016 at 11:52
  • This seems to do the job: C:\Tools\ConEmuPack.150813g\ConEmu64.exe -Min /cmd cmd.exe -new_console:n /c C:\Users\test\Desktop\rdp_logout.bat Commented Apr 5, 2016 at 12:30
  • If you use the switch exactly as I've suggested, it would be working properly!
    – Maximus
    Commented Apr 5, 2016 at 17:38
  • You are correct. I guess I made copy/paste error. Commented Apr 6, 2016 at 6:44

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .