Tagged Questions
The external-process tag has no wiki summary.
14
votes
8answers
8k 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.
So how in C# would ...
9
votes
1answer
156 views
Haskell: How to timeout a function that runs an external command
I call an external program inside a function. Now i would like to timeout this function and not just the external program. But after the function times out, the external program is still running on my ...
8
votes
5answers
6k 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 retain the Process ...
6
votes
5answers
6k views
How can I run an external program from C and parse its output?
I've got a utility that outputs a list of files required by a game. How can I run that utility within a C program and grab its output so I can act on it within the same program?
UPDATE: Good call on ...
5
votes
5answers
180 views
How to you check the status or kill an external process with python
I have a python script that runs on my web server. The main function is called then when it returns it just sleeps for a few seconds and gets called again. It's purpose is to pick up any new ...
5
votes
1answer
28k 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 it all in C#. I can ...
4
votes
4answers
79 views
Is there a good way to stream the results from an external process into a Visual Studio output pane?
I have a custom output pane set up in a VsPackage similar to the following:
///--------------------------------------------------------------------------------
/// <summary>This ...
4
votes
2answers
176 views
C - going from ncurses ui to external program and back
I'm making a program that displays some info in ncurses, and then opens vim (using system) to allow the user to edit a file. After vim is exited, though, the ncurses screen won't redraw. refresh and ...
4
votes
2answers
298 views
eventmachine and external scripts via backticks
I have a small HTTP server script I've written using eventmachine which needs to call external scripts/commands and does so via backticks (``). When serving up requests which don't run backticked ...
4
votes
3answers
2k 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 status
Set a timeout.
...
4
votes
2answers
714 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?
3
votes
9answers
813 views
open website without Process.start
How to open a website URL in browser without of Process.start(...) :
System.Diagnostics.Process.Start(@"http://www.google.com");
I can not use Process.Start() in Windows Service , I do not no know ...
3
votes
1answer
242 views
C - Calling functions from external process without exported functions
Hey guys, I am trying to figure out how I can call a function without having it being exported.
Okay so I have an exe file with "add" defined in it, This exe is a win32 console application and loads ...
3
votes
2answers
1k views
How can I read stderr when a command execution fails in Perl?
I am executing a diff command in perl.
my @lines = `/usr/local/bin/diff -udr \"$expected_file\" \"$gen_file\"`;
if ($? != 0)
{
print ERRFILE "Diff between $expected_file and $gen_file failed\n";
...
2
votes
1answer
36 views
Call popen with environment
In my Lua program i have to catch output from an external program. This external program needs certain environment variables. So i do this:
e = ""
e = e .. "A=100;"
e = e .. "B=Hi;"
e = e .. ...
2
votes
3answers
229 views
Launching External Programs with Java?
Problem: Automatically close a program after a certain amount of minutes.
Solution: Here is what I came up with to solve my problem (works with Rhythmbox on Ubuntu):
package rhythmBox;
import ...
2
votes
3answers
3k views
Why doesn't VS2010 debugger stop at my breakpoints?
I am working on a C#.NET class library project in VS2010. In my project settings -> debug settings, I have the project set to start an external program (C:\Windows\SysWOW64\wscript.exe) which runs a ...
2
votes
1answer
63 views
SSIS Handling Extenal Issues
I have an SSIS package that works fine. The package runs every night and takes about 4 hours to complete. I have am a newb to SSIS, so I want to see what my options are. I am not finding anything on ...
2
votes
1answer
90 views
Need to get back form controls' information externally
Are there any tutorials or guides out there that anyone knows of that will show me how to read forms from an external program and get back information about the controls on the form? Currently, I can ...
2
votes
1answer
343 views
Porting/Writing WPF application which launches external applications to Silverlight 4 out of browser
WPF launches certain method which calls external exe and waits , and then accesses a file which was an output of external exe. Assuming I would build this application with a consideration of porting ...
2
votes
1answer
221 views
Ensure the termination of a Application launched by Runtime.exec when tomcat is killed
I launch several external process via a call to
Runtime.getRuntime.exec("java myApp");
I monitor the correct launching and execution of the application with some java.concurent.Future.
I can tell ...
2
votes
1answer
690 views
Closing a modal popup from vb.net?
I want to wait for and close a modal form (a popup) from another application, as soon as it appears. I want to do this from VB.NET, but suggestions in C# should be easily translateable.
I can ...
2
votes
2answers
5k views
How to call an external program in python and retrieve the output and return code?
How can I call an external program with a python script and retrieve the output and return code?
2
votes
4answers
316 views
To Thread or not to Thread when starting an external application in C#
I'm creating a win service that monitors ftp logs, when a file has been uploaded I want to start an external application, like a powershell script, to do stuff with the file. my Question is do i want ...
2
votes
2answers
534 views
How do I combine .EXE commands in Perl?
I have a set of .EXE commands. How do I get all those commands run in Perl as a single file?
Whats the process to call the .EXE files in Perl?
1
vote
0answers
36 views
How should you open an external editor and monitor for changes to the file/application?
Some applications (especially file transfer apps) allow you to spawn an external text editor in order to edit a remote file. They do this by downloading the file to a temporary directory, opening the ...
1
vote
0answers
37 views
Export current e-mail from Thunderbird into external process
I would like to create an extension which adds a toolbar button in Thunderbird. When pressing the button, an external application is launched and the text of the current mail message is exported to ...
1
vote
1answer
125 views
C# Access internal objects with external code
I have a static progress bar that I'd like to advance during external code execution.
[DllImport("netapi32.dll",EntryPoint="NetServerEnum")]
public static extern int NetServerEnum( ...
1
vote
2answers
47 views
Searching for External Programs
We're working on a WPF application that is going to work closely with other applications. Right now, it is working with Microsoft Excel.
I would like to run some custom code in the install of our ...
1
vote
2answers
134 views
Java library for calling exteral programs
I am looking for a JAVA library that facilitates running external programs. Now I run them "manually" in a separate thread and capture I/O.
I have several different external tools to run and what I ...
1
vote
1answer
2k views
ProcessBuilder vs Runtime.exec()
I'm trying to create a frontend app in Java to handle batch SVG conversions using Inkscape's command line feature. I'm taking and updating the code from ...
1
vote
1answer
150 views
Launching External Executable in Windows Azure
My current ASP.NET site requires to launch FFMPEG.EXE to convert uploaded videos. With shared web hosting server, can't be done but via a Virtual Private Server (VPS) or a dedicated server.
I've ...
1
vote
1answer
260 views
Dealing with external processes
I've been working on a gui app that needs to manage external processes. Working with external processes leads to a lot of issues that can make a programmer's life difficult. I feel like maintenence ...
1
vote
2answers
680 views
How to trigger a Symbian C++ application within a J2ME application for Nokia phones using J2ME API?
Anyone knows how to trigger a Symbian C++ application using any J2ME API call? I have a J2ME application that needs a customized photo taking application in Symbian C++. The reason for separating into ...
1
vote
2answers
1k 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 process. I know "nohup" ...
1
vote
4answers
604 views
Running a program from within Java code
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 I am on Vista but the code ...
1
vote
3answers
312 views
Blocking the standard error output of a programmatically run system command
I have this program in c++:
#include <iostream>
using namespace std;
int main()
{
char buf[50];
cin.getline(buf,49);
system(buf);
return 0;
}
When I run and compile it and type for example ...
0
votes
0answers
42 views
Opening external application inside VB.NET MDI Form
I need to open some external applications such as notepad.exe inside the VB.NET MDI form, and also I need to make sure that there is exactly only one copy of this running always.
I used the code ...
0
votes
1answer
33 views
Can a web.config from a project be read by an external assembly?
I have actually two projects... an MVC project and a project used for making my own MembershipProvider.
I wish the project that hold the membershipprovider to read my web.config from the MVC project ...
0
votes
2answers
36 views
Execute a batch of processes: asynchronous or continuous? [closed]
The user now launched the "Convert all" function, it should run a seperate process for each of them items.
What's the recommeded way, convert them one after the other one by one, or launch a seperate ...
0
votes
1answer
89 views
WPF Application crashes on WIndows 7 when command executable.Start() is run
I've got a tiny Portal I´m writing, and this portal is supposed to launch installers on button click. I´m developing on VS2010 on a WinXP SP3 station, and on this machine, even fter compilation and ...
0
votes
4answers
78 views
external program from java doesn't terminate
When I try to execute an external program from java I use this code below :
Process p;
rn = Runtime.getRuntime();
String[] unzip = new String[2];
unzip[0]="unzip";
unzip[1]=archive ;
public void ...
0
votes
1answer
45 views
Debian - invoke external script from exim on receipt of emails
I am looking fopointers on the best approach to process incoming emails to a certain vhost and to call an external script with the email data as parameters - basically to allow email to be sent to a ...
0
votes
1answer
88 views
Calling SetProcessDEPPolicy on another process?
A game (Sims 3 to be specific) is poorly coded, and one of the ways to get it to stop randomly crashing is to add it to your DEP exception list. I don't really want to do that if I don't have to, so I ...
0
votes
1answer
328 views
android app : allowing socket access for a program
I am trying to develop an app which calls a external program (written in C) using Runtime.getRuntime().exec method. This program is basically an gstreamer based rtsp server and it works good if I run ...
0
votes
3answers
35 views
Run jQuery on External pages/debugging jQuery
I am a beginner at jQuery. I am trying to practice as many functions as i can. BUT i am tired to write HTML for all this stuff. So is there any way i can run jQuery functions on any page as in ...
0
votes
4answers
170 views
Java external program
I'd like to start external third party application from my Java application. This external application should run all the time whilst my java application runs.
From time to time (it depends on user ...
0
votes
1answer
169 views
jqgrid external control example
I'm new to JQ and JQ grid. I recenly got my admin all set up with jqgrid..it looks great. Now I want to add a few forms to the front of the site and I can NOT get a clear understanding on 'external ...
0
votes
3answers
91 views
how to make child of a list become a variable in python
i'm trying to make a web only using couchdb and couchapp...
but for some reason i need external process using python..
and now i'm stuck how to handle post variable in python...
i'v read this(and it ...
0
votes
1answer
202 views
Lauch external program in firefox or chrome
We have a custom web app in our intranet that allow users to browse and search our shared file system in a way more appropriate for our organization. as compared to windows explorer/mac finder. ...