Cmd console hidden

tassox33

Distinguished
Jan 21, 2012
2
0
18,510
I am hosting a minecraft server, and am trying to use a windows scheduled task to start a .bat file that calls on java and shows input on the cmd.exe console.
When I manually start the .bat file the console shows, but when I start it with the windows scheduler its hidden.
When I start the run.bat with a scheduled task on computer start up. The server will start and function correctly, but I don't know how to open the cmd console to type things in. Anyone know how to bring this up? Thanks.

The .bat file is this -
@ECHO OFF
SET BINDIR=%~dp0
CD /D "%BINDIR%"
"%ProgramFiles%\Java\jre6\bin\java.exe" -Xincgc -Xmx1G -jar craftbukkit-1.0.1-R1.jar
PAUSE

I am using Windows 7 Ultimate 64 bit.