cancel
Showing results for 
Search instead for 
Did you mean: 

Error trying to open Visual Administrator

Former Member
0 Kudos

Hello,

One of the developers here is having a problem opening the Visual Administrator for the first time. She is getting the error "The system cannot find the path specified" when she double-clicks on go.bat.

The only paths I see specified are to the java.exe file (which she has) and the go.jar file (which she has)

Thanks in advance for any help you are able to provide,

Jennifer

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Jennifer,

1. Make sure the file go.jar resides in the same folder.

2. Check the code of your go.bat. Mine looks like this:

@setlocal

@title ToolLauncher

@if DEFINED JAVA_HOME (

set JAVA_CMD="%JAVA_HOME%\bin\java"

) else (

echo WARNING Environment variable JAVA_HOME not set, try to launch java from current PATH

set JAVA_CMD=java

)

%JAVA_CMD% -showversion -Dsun.java2d.noddraw=true -Duser.language=en -DP4ClassLoad=P4Connection -Dp4Cache=clean -jar "%~pd0go.jar" %*

@endlocal

@if %errorlevel% NEQ 0 (

echo Program terminated abnormally

pause

) else (

rem Program successfully finished

)

3. This are the settings in my adminCFG.properties:

#

#Mon Feb 20 15:36:03 CET 2006

LOGIN_PORT=50004

LOGIN_HTTP_PORT=50005

LOGIN_SSL_PORT=50006

Hope this will solve your problem.

Best Regards,

Holger