How to hide the command prompt (winxp) on 1080?
Hi,
I was used to sucessfully hiding it by changing the idea.lax from using java.exe to javaw.exe before 1080. However, when I updated to 1080 the trick is no longer working. How can I hide the command prompt when launching IDEA?
Regards,
Nevin
请先登录再写评论。
change the following options in you idea.lax file
from this
====================================================
LAX.STDERR.REDIRECT
-------------------
leave blank for no output, "console" to send to a console window,
and any path to a file to save to the file
lax.stderr.redirect=console
LAX.STDIN.REDIRECT
------------------
leave blank for no input, "console" to read from the console window,
and any path to a file to read from that file
lax.stdin.redirect=console
LAX.STDOUT.REDIRECT
-------------------
leave blank for no output, "console" to send to a console window,
and any path to a file to save to the file
lax.stdout.redirect=console
=========================================
to this
LAX.STDERR.REDIRECT
-------------------
leave blank for no output, "console" to send to a console window,
and any path to a file to save to the file
lax.stderr.redirect=
LAX.STDIN.REDIRECT
------------------
leave blank for no input, "console" to read from the console window,
and any path to a file to read from that file
lax.stdin.redirect=
LAX.STDOUT.REDIRECT
-------------------
leave blank for no output, "console" to send to a console window,
and any path to a file to save to the file
lax.stdout.redirect=
that should do the trick
hope that helps
cheers,
parthi.
Edit bin/idea.lax; remove the values ("console") from each of these properties:
lax.stderr.redirect
lax.stdin.redirect
lax.stdout.redirect
Thanks!
"Noel Ang" <no_mail@jetbrains.com> wrote in message news:26038039.1073637524062.JavaMail.itn@is.intellij.net...
Added to the UnofficialAuroraFAQ :
See
http://www.intellij.org/twiki/bin/view/Main/UnofficialAuroraFAQ#HowToHideTheConsole