2013 Jan 24 3:09 PM
Hi.
I need to check if a program is running in presentation server ( with Windows OS), somebody knows a way to do this ?
I tried with CL_GUI_FRONTEND_SERVICES and CL_GUI_OBJECT without good results.
Best regards,
Manuel H.
2013 Jan 24 6:20 PM
Hi.
I need to check if a program is running in presentation server ( with Windows OS), somebody knows a way to do this ?
I tried with CL_GUI_FRONTEND_SERVICES and CL_GUI_OBJECT without good results.
Best regards,
Manuel H.
2013 Jan 24 5:15 PM
Programs run on application servers. In order to see what programs are running, you may want to look into the report RSMON000_ALV.
2013 Jan 24 6:00 PM
Hi Samuli.
I need to check programs running in the presentation server, not in app server.
Regards,
Manuel H.
2013 Jan 24 6:20 PM
2013 Jan 24 6:53 PM
Hi Raymond.
It works. Thanks very much. However, do you know a way that not use file text ?
Best regards,
Manuel H.
2013 Jan 24 7:12 PM
No, as even a script as below should be first downloaded to PC, so exchange an upload for a download...
tasklist /FI "IMAGENAME eq XXXXXX.exe" /FO CSV > c:\temp\search.log
FOR /F %%A IN (c:\temp\search.log) DO IF %%~zA EQU 0 GOTO end
start XXXXXX.exe
:end
del c:\temp\search.log
Better ask on a microsoft forum...
Regards,
Raymond