Your Universal Remote Control Center
RemoteCentral.com
Philips Pronto Professional Forum - View Post
Previous section Next section Up level
Up level
The following page was printed from RemoteCentral.com:

Login:
Pass:
 
 

Topic:
Pronto Edit Professional 2.0 - Executable File
This thread has 2 replies. Displaying all posts.
Post 1 made on July 31, 2026 at 08:48
F
Fbrighi
Long Time Member
Joined:
Posts:
RC XP:
September 2010
55
9⭐︎
Hello all, i struggled years in trying to generate an executable version of my PEP javascript control program - originally created for TSU9600 - which can run on its own on a PC.

Now, thanks to IA, i got the answer ... and it is working fine! You will need of course to have PEP 2.0 installed in your PC, and you have to modify it with msf! and app! files (you can find in this forum somewhere) so to make tcpsockets working in simulator mode.

Once you have done this, just run the simulator from PEP for your .xcf configuration. Keeping simulator open go to the folder: C:\Users\AppData\Local\Temp\PEP2Data\

Here, while Simulator is running, PEP 2.0 saves a compiled version of your configuration, named ConfigEdit.bin. Copy it to another folder, because when you will kill the simulator, it will delete this temporary file.

Once you have the .bin file, you have to create a .bat file which will start directly it. Here below an example:

@echo off
setlocal enabledelayedexpansion


:: 1. LOCATE DESKTOP FOLDER
for /f "tokens=2*" %%a in ('reg query "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v Desktop') do set "DESKTOP_DIR=%%b"
for /f "delims=" %%i in ('echo %DESKTOP_DIR%') do set "DESKTOP_REAL=%%i"

:: 2. PATHS DEFINITIONS FOR YOUR PC AND FOLDERS (ADJUST ACCORDIG YOUR PC FILES LOCATION, THIS ONES CONSIDER CONFIGEDIT.BIN IS LOCATED IN DESKTOP)
set "PRONTO_DIR=C:\Program Files (x86)\Philips\ProntoEdit Professional 2"
set "MSF_EXE=%PRONTO_DIR%\Simulator\msf.exe"
set "SAFE_BIN=%DESKTOP_REAL%\ProntoCache Editor\ConfigEdit.bin"

:: 3. CHECK .BIN FILE EXISTS
if not exist "%SAFE_BIN%" (
echo ERRORE: Non ho trovato il file ConfigEdit.bin dentro la cartella 'ProntoCache' sul Desktop.
echo Assicurati di aver creato la cartella e inserito il file come da istruzioni.
pause
exit /b
)

:: 4. CHANGE WORKING FOLDER
cd /d "%PRONTO_DIR%\Simulator"

:: 5. LAUNCH OF YOUR EXECUTABLE CONFIGURATION, THIS IS THE MOST IMPORTANT PART AS INCLUDES ALL OPTIONS NEEDED BY MSF.EXE TO START CORRECTLY SIMULATOR OUTSIDE PEP 2.0
echo File di configurazione trovato in ProntoCache.
echo Avvio del simulatore indipendente in corso...
start "" "%MSF_EXE%" /G:"%PRONTO_DIR%\Simulator\appli-win32" /P:TSU9600 /U:"%PRONTO_DIR%\Simulator\Simulator's" "%SAFE_BIN%" /D:initialcalibration /D:tcpsocket /D:extender /D:contentserver /E:prontoscript /E:irhandling /E:alp /D:dispatcher /D:dns /D:ssdpdiscovery /D:pm /D:tcpsocket /D:usb /D:wificheck /D:wificontrol /M:fullscreen /M:zoom /M:reset /M:pstoggle /M:combo1 /M:combo2 /M:psconsole

exit /b

With this, it is possible to use a PC to launch directly the pronto configuration, without starting PEP and running simulator inside it - even at startup - and virtually changing it a self starting remmote control. I tested it on windows 11 and works greatly.

Hope this can helps. Use code carefully.

BR

FKB

FKB
Post 2 made on August 2, 2026 at 16:41
L
MOD
Lyndel McGee
🎂 RC Moderator
Joined:
Posts:
RC XP:
August 2001
13,172
578⭐︎
Thanks so much for the info...

Since you have the simulator with networking functioning, you can also have a look at msf!.ini which has the options that Jon Welfringer had coded up.

Inside msf!.ini you will find this

[OPTIONS]
PROCESS_ENTRIES=YES
AUTO_RUN=YES
AUTO_CLOSE=YES


If you set AUTO_CLOSE to NO you will get all the command line options that were used post exit of the appli.exe simulator

[OPTIONS]
PROCESS_ENTRIES=YES
AUTO_RUN=YES
AUTO_CLOSE=NO

This option can quickly help you locate where the temp folder with ConfigEdit.bin resides.

On my machine, the program that was run is:
D:\WinOther\Philips\ProntoEdit Professional 2\Simulator\msf!.exe


And all the command line options are:

/G:"D:\WinOther\Philips\ProntoEdit Professional 2\Simulator\\appli-win32"
/P:TSU9600
/U:"D:\WinOther\Philips\ProntoEdit Professional 2\Simulator\Simulator.conf"
C:\Users\Lyndel\AppData\Local\Temp\PEP2Data\ConfigEdit.bin
/D:initialcalibration
/D:tcpsocket
/D:extender
/D:contentserver
/E:prontoscript
/E:irhandling
/E:alp
/D:dispatcher
/D:dns
/D:ssdpdiscovery
/D:pm
/D:tcpsocket
/D:usb
/D:wificheck
/D:wificontrol
/M:fullscreen
/M:zoom
/M:reset
/M:pstoggle
/M:combo1
/M:combo2
/M:psconsole

Last edited by Lyndel McGee on August 2, 2026 17:39.
Lyndel McGee
Philips Pronto Addict/Beta Tester
Post 3 made on August 2, 2026 at 18:53
L
MOD
Lyndel McGee
🎂 RC Moderator
Joined:
Posts:
RC XP:
August 2001
13,172
578⭐︎
You can also check out similar configuration in appli!.ini which is also part of the simulator files to see for example how to launch the simulator in full screen mode.
Lyndel McGee
Philips Pronto Addict/Beta Tester

Jump to


Protected Feature Before you can reply to a message...
You must first register for a Remote Central user account - it's fast and free! Or, if you already have an account, please login now.

Please read the following: Unsolicited commercial advertisements are absolutely not permitted on this forum. Other private buy & sell messages should be posted to our Marketplace. For information on how to advertise your service or product click here. Remote Central reserves the right to remove or modify any post that is deemed inappropriate.