07-08-2013, 03:48 AM
(This post was last modified: 07-08-2013, 04:00 AM by montcer9012.)
Which JPCSP version are you using? It seems that your Windows is not recognizing "findstr"; maybe it has to be replaced by the absolute patch.
For now, you can try a basic batch that runs the emulator; try place this one on your JPCSP main folder (I will attach it for you):
In case the black windows still closing without notice, while pressing Shift key, make right click somewhere on the white zone of the explorer and select "open console from here". Now, write "basic_start-windows-x86.bat" and it would start and finish there without closing.
For now, you can try a basic batch that runs the emulator; try place this one on your JPCSP main folder (I will attach it for you):
Code:
@echo off
rem CD to the path of the command line, this is required when running as an administrator
cd /D "%~dp0"
set PATH=%PATH%;lib\;lib\windows-x86\
:JAVA
set JAVA_CMD=%ProgramFiles%\Java\jre7\bin\java.exe
if not exist "%JAVA_CMD%" set JAVA_CMD=java.exe
:RUN
rem Use -Xmx768m for Windows XP, -Xmx1024m for all other Windows versions
set MAX_MEM_SIZE=1024m
echo Running Jpcsp 32bit...
"%JAVA_CMD%" -Xmx%MAX_MEM_SIZE% -Xss2m -XX:MaxPermSize=128m -XX:ReservedCodeCacheSize=64m -Djava.library.path=lib/windows-x86 -jar bin/jpcsp.jar %*
if ERRORLEVEL 1 goto PAUSE
goto END
:PAUSE
pause
:END
In case the black windows still closing without notice, while pressing Shift key, make right click somewhere on the white zone of the explorer and select "open console from here". Now, write "basic_start-windows-x86.bat" and it would start and finish there without closing.