0
votes
1answer
51 views
Execute and monitor multiple instances of external program in Python
Main program is like this:
PREPARE PARAMETERS FOR CHILD PROCESSES
subprocess.Popen('python child.py param=example1'.split(' '))
subprocess.Popen('python child.py param=example2'.s …
0
votes
2answers
94 views
How to launch and run extenal script in background?
I tried these two methods:
os.system("python test.py")
subprocess.Popen("python test.py", shell=True)
Both approaches need to wait until test.py finishes which blocks main proc …
3
votes
3answers
177 views
python: run a process with timeout and capture stdout, stderr and exit status [closed]
Possible Duplicate:
subprocess with timeout
What is the easiest way to do the following in Python:
Run an external process
Capture stdout in a string, stderr, and exit s …
9
votes
9answers
1k views
How do I find out if a process is already running using c#?
I have C# winforms application that needs to start an external exe from time to time, but I do not wish to start another process if one is already running, but rather switch to it. …
1
vote
2answers
134 views
Invoke external shell script from PHP and get its process ID
How can I invoke an external shell script (Or alternatively an external PHP script) from PHP itself and get its process ID within the same script?
0
votes
1answer
51 views
Force external process to be killed after time period
I have a command line executable that is run from a C# class library. In some very rare situations the executable will hang because of the command line data passed to it. Unfortune …
0
votes
3answers
107 views
Unable to execute a program from a service
I have a Windows service which I want to periodically execute an external program. I'm currently doing this the usual way
Process program = Process.Start(@"C:\mpewatch\db_paramet …
0
votes
2answers
152 views
Create a WPF “control” that is run in an external process
I have a WPF app which contains a number of child controls.
One of these controls hosts a third party library which underneath the covers runs some native code which throws access …
0
votes
1answer
147 views
PHP calls to external programs all fail with exit code 127
echo system("/usr/bin/whoami", $ret);
echo $ret;
PHP 4.3.9 on Apache 2.0.52, CentOS 4.5. Safe mode is off, I can run programs as the apache user account from the command line, bu …
0
votes
1answer
785 views
C# : Redirect console application output : How to flush the output?
I am spawning external console application and use async output redirect.
as shown in this SO post
My problem is it seems that the spawned process needs to produce certain amoun …
0
votes
5answers
270 views
Start a process in low Priority. Is it possible without try-catch?
Not to long ago i asked about an error msg that occurred when when app.PriorityClass = ? was before app.start. Apparently the solution which i didnt like was to write it after star …
5
votes
6answers
802 views
How do I launch a completely independent process from a Java program?
I am working on a program written in Java which, for some actions, launches external programs using user-configured command lines. Currently it uses Runtime.exec() and does not re …
0
votes
4answers
223 views
Running a program from within Java code..
Hi all,
What is the simplest way to call a program from with a piece of Java code? (The program I want to run is aiSee and it can be run from command line or from Windows GUI; and …
1
vote
2answers
606 views
How to call an external program in python and retrieve the output and return code?
Hi,
How can I call an external program with a python script and retrieve the output and return code?
2
votes
1answer
3k views
How to execute a .bat file from a C# windows form app?
What I need to do is have a C# 2005 GUI app call a .bat and several VBScript files at user's request. This is just a stop-gap solution until the end of the holidays and I can write …
