Generate a new shortcut with aim
C:\Program Files\Java\jre5\bin\javaw.exe
(or wherever your Java is stored) -cp . de.brettspielwelt.client.Starter
and the working area should be
C:\the\path\you\installed\the\BrettspielWelt
If you depacked the file correctly and generated a valid shortcut the client should start with its preloader (where you can switch sound of permanently and see server status). clicking on that window the client will start looking for updates and afterwards start the plattform.
You can also generate a bat file with the following code and use it in the installation directory of your BSW. Usually its for debugging as it generates an errorlog but you can also use it as startupcommand.
REM @echo off
REM *********************
REM *** Einstellungen ***
REM *********************
REM this one you'll need if you want to use a non common Java directory
REM Standard: leer
REM E.G.:
REM javadir=C:\Programme\java\jre1.6.0_01\bin\
REM or javadir=jre\bin\ if it is the same directory
set javadir=
REM Name of log file will be saved in this direction
REM Standard: bswlog.txt
set logfile=bswlog.txt
REM *********************
REM *** Hauptprogramm ***
REM *********************
if not exist de\brettspielwelt\client\Starter.class goto keineBSW
if "%javadir%"=="" goto stdJava
if not exist %javadir%java.exe goto keineJava
:stdJava
if "%logfile%"=="" set logfile=bswlog.txt
echo Starte Brettspielwelt...
echo %DATE% %TIME% > %logfile%
echo ------------------------------------------ >> %logfile%
%javadir%java -version >> %logfile% 2>&1
echo ------------------------------------------ >> %logfile%
REM I give it a minimum of 64 MB Ram and a maximum of 128 MB
REM since you'll want to us other programs but just Java
REM and changed Timezone to Europe. you can change that by leaving out "-Duser.timezone=Europe/Berlin"
%javadir%javaw -ms64m -mx128m -Duser.timezone=Europe/Berlin -cp . de.brettspielwelt.client.Starter >> %logfile% 2>&1
echo The file %logfile% was saved.
goto ENDE
:keineJava
echo no propper installed Java found.
pause
goto ENDE
:keineBSW
echo no Brettspielwelt-Installation (starter) found.
pause
goto ENDE
:ENDE