>> Maxim Shafirov >> http://www.jetbrains.com >> "Develop with pleasure!" >>> Is the return of the console window on IDEA start intentional? >>> >>> I liked not having it :) >>>
>> Maxim Shafirov >> http://www.jetbrains.com >> "Develop with pleasure!" >>> Is the return of the console window on IDEA start intentional? >>> >>> I liked not having it :) >>>
MB> And change the line where IDEA is actually launched to call "start" MB> instead of direcly calling javaw. Something like this: MB> MB> :: --- SNIP --- MB> SET JAVA_EXE=c:\j2sdk1.4.2_06\bin\javaw.exe MB> :: --- SNIP --- MB> start "IDEA" "%JAVA_EXE%" %JVM_ARGS% -cp "%CLASS_PATH%" MB> %MAIN_CLASS_NAME% %*
remove quotes: tart "IDEA" %JAVA_EXE% %JVM_ARGS% -cp "%CLASS_PATH%"
Nope again. Removed in the next build.
-
Maxim Shafirov
http://www.jetbrains.com
"Develop with pleasure!"
Is there an easy fix until then?
Maxim Shafirov wrote:
>> Is the return of the console window on IDEA start intentional?
>>
>> I liked not having it :)
>>
Nope unfortunately. Unless you'll learn how to launch bat files without console.
IDEA could actually be launched with idea.bat.
-
Maxim Shafirov
http://www.jetbrains.com
"Develop with pleasure!"
>> Nope again. Removed in the next build.
>> -
>> Maxim Shafirov
>> http://www.jetbrains.com
>> "Develop with pleasure!"
>>> Is the return of the console window on IDEA start intentional?
>>>
>>> I liked not having it :)
>>>
Oh yeah, replace java.exe with javaw.exe in bat file.
-
Maxim Shafirov
http://www.jetbrains.com
"Develop with pleasure!"
>> Nope again. Removed in the next build.
>> -
>> Maxim Shafirov
>> http://www.jetbrains.com
>> "Develop with pleasure!"
>>> Is the return of the console window on IDEA start intentional?
>>>
>>> I liked not having it :)
>>>
And change the line where IDEA is actually launched to call "start" instead of direcly calling javaw. Something like this:
:: --- SNIP ---
SET JAVA_EXE=c:\j2sdk1.4.2_06\bin\javaw.exe
:: --- SNIP ---
start "IDEA" "%JAVA_EXE%" %JVM_ARGS% -cp "%CLASS_PATH%" %MAIN_CLASS_NAME% %*
Hello Marcus,
MB> And change the line where IDEA is actually launched to call "start"
MB> instead of direcly calling javaw. Something like this:
MB>
MB> :: --- SNIP ---
MB> SET JAVA_EXE=c:\j2sdk1.4.2_06\bin\javaw.exe
MB> :: --- SNIP ---
MB> start "IDEA" "%JAVA_EXE%" %JVM_ARGS% -cp "%CLASS_PATH%"
MB> %MAIN_CLASS_NAME% %*
remove quotes:
tart "IDEA" %JAVA_EXE% %JVM_ARGS% -cp "%CLASS_PATH%"
Thanks!
--
Alexey Efimov, Java Developer
Tops BI
http://www.topsbi.ru
Doesn't this opens a console window, when IDEA executed a command, e.g.
"attrib -r"?
Tom
Use idea.exe from the previous EAP build.
--
Serge Baranov
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
Oh well, works with the quotes for me ;)