LaunchAgents - Howto

Here is the missing function:

[code]Private Function GetPathFromPID(thePID as String) As String

if thePID = “” then Return “”
dim theShell as new Shell
theShell.Execute "ps xuwww -p " + thePID
if theShell.ErrorCode <> 0 then Return “”

Return theShell.Result

exception exc
theException = new ErrorException(exc, currentMethodName)
End Function
[/code]

Will try with Git in the next days.

Have you tried with not Sandboxing the apps? Then you could see if Sandboxing makes this process possible or not. Otherwise, I’m doing the same. You shouldn’t have to to log out and in again. The helper app should start immediately.