Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
6k views

Files being used by a unix process

The fuser command lets me know which processes are using a file or directory. I'm looking for command that does the opposite: lets me know which files are being used by a process. Update Forgot ...
4
votes
1answer
4k views

How to get the process ID of the current Excel, throught VBA, without relying on finding the window by the caption?

How can I get the process ID of the current Excel instance, that my VBA code is running in, without asking for it by the name in the caption... which causes a problem when I have two or more Excel ...
3
votes
3answers
393 views

C Determine programmatically if a program is running

In C, how can I find out programmatically if a process is already running on Linux/Ubuntu to avoid having it start twice? I'm looking for something similar to pidof.
3
votes
3answers
377 views

osx - How to get a process id (PID) programmatically?

How can I get a process' ID? I require the ID in order to kill that process. I know the name of the process. Thanks!
2
votes
3answers
72 views

Directory naming using Process ID and Thread ID

I have an application with a few threads that manipulate data and save the output in different temporary files on a particular directory, in a Linux or a Windows machine. These files eventually need ...
2
votes
2answers
298 views

Open and close applications from Java

I want to make a program to open and close applications you have installed on your computer. I know that using Runtime.getRuntime().exec("rundll32 SHELL32.DLL,ShellExec_RunDLL "+"M:\\myfile.doc"); ...
1
vote
2answers
184 views

Find my own process ID in VBScript

I'm using the following code snippet to determine what process ID my vbscript is running as: On Error Resume Next Dim iMyPID : iMyPID = GetObject("winmgmts:root\cimv2").Get("Win32_Process.Handle='" ...
1
vote
2answers
76 views

C++ Windows process ID in binary

I would like to write in C++ on Windows the prcoess ID of the program (by the program itself) in a file (binary is preferred). I saw the use of the function: GetProcessId, but i didn't manage to work ...
1
vote
2answers
123 views

Kill Process from Makefile

I'm trying to write a makefile that will replicate a client/server program I've written (which is really just two Python scripts, but that's not the real question of concern)... test: python ...
1
vote
1answer
97 views

how to get the identity with which a .vbs or a .asp file executes from within itself?

I am looking for a way to get the identity of the process which executes a *.vbs file or a *.asp file. How to write code to determine the process identity from within the file itself? Suppose I ...
1
vote
5answers
901 views

How can I list all processes running in Windows?

I would like to find a way to loop through all the active processes and do diagnostics checks on them (mem usage, cpu time etc) kinda similar to the task manager. The problem is broken down into two ...
0
votes
0answers
233 views

Getting process ID of a SHDocVw.InternetExplorer spawned IE8 process

I'm using SHDocVw.InternetExplorer to launch IE in my code. In certain cases InternetExplorer.Quit() doesn't work. I have tried several things to make Quit work but without success. I'm now resorting ...
0
votes
2answers
31 views

How to know if you're Dropping in the same app instance where you made the Drag in WPF?

the title pretty much explains my issue: I am right now taking care of drag & drop in my app. I can have many instances of my app running at the same time, and I can drag from one instance to the ...
0
votes
1answer
103 views

is it possible for a Silverlight to read the browser process id

I am still trying to think of a solution to Browser Specific Cookies One idea I want to explore is if I can use the browser process instance ID. Is it possible to read this Silverlight 4? If so, ...
0
votes
4answers
165 views

How to get rid of extra characters in linux process ID using shell script

I m trying to kill a process by its pid, and this is the script that I found from web. PID=`ps -ef | grep myProcess | grep -v grep | awk '{print $2}'` echo -e Killing myProcess with pid: $PID.. ...
0
votes
2answers
222 views

C++ scanning process ids using the command prompt with tasklist

I'm trying to use c++ to scan in the processes shown in the command prompt of windows when you type in tasklist. I haven't have the whole code ready but would like help in trying to read in the ...
0
votes
1answer
376 views

System service privilege to get process information in Windows 7

I am trying to use system service privilege to get the title of a window and its process name and process ID in Windows 7, but this fails. How can I use open process to get process information via ...
0
votes
1answer
118 views

How to open my java application using process id

Hi I have created a java swing application. If I run that application then it runs properly (a frame is created) and it is associated with a process id. when that application is running I want to see ...
0
votes
2answers
1k views

Kill Running PHP Script via Process ID?

I make lots of GET requests to several PHP scripts via AJAX. I want to ask for implementation advice on how to kill a PHP script that is currently running (in the background). Is there some way to ...
-1
votes
2answers
109 views

Changing the Process Id in linux

Is it possible to change the process id in linux operating system. If anyone know, please tell me. Requirement :actually i want to bring up the back ground process to fore ground , which is being ...