0
votes
1answer
118 views

NodeJS child process PID does not match the real process

I'm using windows, and I'm doing this experiment, console.log( _.process.exec( "mongod --dbpath . --port 8083 --bind_ip 127.0.0.1" ).pid ); The problem is, when I do a tasklist command, the PID ...
3
votes
2answers
213 views

Get the PID of the process started by CreateProcess()

Let me start off by stating that I'm not from C background. I'm a PHP developer. So everything that I've coded so far is by taking bits and pieces from other examples and fine tuning them to meet my ...
0
votes
1answer
166 views

How to get process PID from PHP on Windows

I am developing a web-based application and I need to run a Matlab script to process some information. The problem is that I have a limitation on the maximum number of Matlab processes running at ...
0
votes
2answers
113 views

How to retrieve the all available PIDs on windows in tcl?

I wanted to know the method for retrieving all available pids in windows through tcl coding. This is I need for killing process based on if it available or not?. Thanking you. code: proc ...
1
vote
2answers
237 views

Find java PID using batch

I need to know java process PID from Windows batch console. @echo off set p=%CD% FOR /F "tokens=1" %%A IN ('"%JAVA_HOME%/bin/jps.exe -v"\|find "%p%"') DO SET str=%%A echo str = "%str%" Java ...
0
votes
2answers
147 views

How to get the PIDs of the child processes?

Is there a way, to get the PIDs of the child processes? I mean, if i open a cmd prompt using CreateProcess, i know its PID because i can get it from the returned ProcessInformation structure. But is ...
3
votes
2answers
418 views

How to determine a running process given its PID in python on Windows OS?

I have a python script that launches an application, and grabs the PID, and waits until that process ID is no longer found by using : result = subprocess.Popen( r'tasklist /fi "PID eq ' + str(PID) + ...
1
vote
0answers
345 views

How to determine the process which is sending out icmp ping request under windows

By WireSharking the network traffic, I'm finding out my PC is sending out ICMP echo request to a suspicious ip address while I'm not running ping.exe explicitly. There must be some process doing this. ...
1
vote
2answers
9k views

how to get PID from command line filtered by username and imagename

I need to be able to get the PID from a running process (cmd.exe) using the command line. The problem is there are two cmd.exe running. One is under the username SYSTEM and one is compUser. Is there a ...
1
vote
2answers
1k views

how to get the process name from the PID in C++? [duplicate]

Possible Duplicate: How to get Process Name in C++ I am looking for a way to to get the process name from the PID? I need to translate process id (PID) to process name any idea?
3
votes
1answer
1k views

Use PHP's proc_open + bypass_shell to run an executable in the background AND retrieve the correct PID?

So, In PHP on Windows: is it possible to both run an executable in the background AND retrieve its PID? I've deduced that it's possible to accomplish both tasks separately, but not together. ...
2
votes
2answers
1k views

C++ Sending a simple signal in Windows

is there an equivalent to the function kill() on Windows? int kill(pid_t pid, int sig); If not, would it be possible to test if a process is running based on its PID? Thanks
5
votes
5answers
3k views

Windows batch file : PID of last process?

I am launching a browser from batch file. START "www.google.com" I would like to know the PID of this browser window launched. There can be many browser windows launched on a single machine. I ...
1
vote
2answers
294 views

Forcing a high PID in windows

We are currently testing a bugfix for an old VB6 application, the initial version of the program would get the PID and store it in an int, and then write it to the database. This works fine until your ...
6
votes
3answers
3k views

windows PID = 0 valid?

In Windows, is 0 valid PID for a process or is it reserved by OS? It would be nice if you can provide a link to a doc that says it is reserved or what. Thank!
1
vote
1answer
524 views

C++ get PID using system

I am running a file using system, but I don't know how to get the PID of that process. Does anybody know how to?
1
vote
2answers
798 views

How to redirect stdin from my app to another knowing its PID (C,in windows)

I have a script vbs wich redirect some data to the stdin of myApp (written in C in Windows). If myApp was already launched before myApp finds the PID of the first myApp session and redirects the input ...
1
vote
2answers
925 views

Return process id

I have this issue that I want to resolve. Lets think we have this situation. We have one instance of notepad.exe running. I run another notepad.exe. Now I want to kill the latter. How can I do it? If ...
11
votes
1answer
13k views

ms c++ get pid of current process

Part of my application are in C++ under windows. I need the process id for the current process. Any thoughts?