help with bukkit cant start - reinstalled W7 x64

Discussion in 'Bukkit Help' started by blaize9, Apr 28, 2011.

Thread Status:
Not open for further replies.
  1. Offline

    blaize9

    Hello today i reinstalled windows 7 x64 and when ever i try to run start.bat (to start the server) it gives me 'C:program' in not recognized as an internal command.

    start.bat
    Code:
    @ECHO OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    %ProgramFiles(x86)%\Java\jre6\bin\java.exe" -Xincgc -Xmx1G -jar craftbukkit-0.0.1-SNAPSHOT.jar
    PAUSE
    Environment Variables
    Variable name: path
    Variable Value: C:\Program Files (x86)\Java\jre6\bin;[/CODE]
     
  2. Offline

    pomo4ka

    Install "java x64" and run from %Program Files%\Java\jre6\bin\ java.exe
     
  3. Offline

    Jeyge

    You need a " in front of %ProgramFiles(x86)%. It should look like:
    Code:
    @ECHO OFF
    SET BINDIR=%~dp0
    CD /D "%BINDIR%"
    "%ProgramFiles(x86)%\Java\jre6\bin\java.exe" -Xincgc -Xmx1G -jar craftbukkit-0.0.1-SNAPSHOT.jar
    PAUSE
     
  4. Offline

    blaize9

    Thanks, i did not see that >.>
     
  5. or install 64x java and remove the (x86) and it will be better!
     
Thread Status:
Not open for further replies.

Share This Page