process id

  • Thread starter Thread starter a
  • Start date Start date
A

a

Hi
If I have two identical programs running, let say MS Word, and these two
applications start at the same time, how can I tell the process ID of them?
Thanks
 
a said:
Hi
If I have two identical programs running, let say MS Word, and these two
applications start at the same time, how can I tell the process ID of them?
Thanks

Either by checking the Task Manager or by running the command
TaskList.exe from the Command Prompt.
 
Hi
If I have two identical programs running, let say MS Word, and these two
applications start at the same time, how can I tell the process ID of them?
Thanks

Open up task manager, and click the processes tab.

If you don't see the PID, you'll need to enable it by going to the view
menu, and entering "Select Columns". The PID is one of the first
options in the dialogue box
 
Raymond Martineau said:
Open up task manager, and click the processes tab.

If you don't see the PID, you'll need to enable it by going to the view
menu, and entering "Select Columns". The PID is one of the first
options in the dialogue box

Thanks for your reply,
However, there are two MS Word are running. If I want to kill one of them,
and keep the other one which contains unsave information, how can I tell
which process ID is associating with the unwanted one?
 
a said:
Raymond Martineau said:
Open up task manager, and click the processes tab.

If you don't see the PID, you'll need to enable it by going to the view
menu, and entering "Select Columns". The PID is one of the first
options in the dialogue box

Thanks for your reply,
However, there are two MS Word are running. If I want to kill one of them,
and keep the other one which contains unsave[d] information, how can I tell
which process ID is associating with the unwanted one?

You can't. Save the unsaved information, then kill both if you have to.
 
Pegasus (MVP) said:
a said:
Raymond Martineau said:
Hi
If I have two identical programs running, let say MS Word, and these two
applications start at the same time, how can I tell the process ID
of
them?
Thanks

Open up task manager, and click the processes tab.

If you don't see the PID, you'll need to enable it by going to the view
menu, and entering "Select Columns". The PID is one of the first
options in the dialogue box

Thanks for your reply,
However, there are two MS Word are running. If I want to kill one of them,
and keep the other one which contains unsave[d] information, how can I tell
which process ID is associating with the unwanted one?

You can't. Save the unsaved information, then kill both if you have to.
So, I can only guess in this situation?
Thanks
 
Thanks for your reply,
However, there are two MS Word are running. If I want to kill one of them,
and keep the other one which contains unsave information, how can I tell
which process ID is associating with the unwanted one?

That's different, and is impossible with stock tools. You might have
some luck with Process Explorer, but you're basically doing a high-risk
maneuver. Alternativly, you could try using a debugger to freeze the
application (and thus determine which process can be safely closed.)

In either case, it's not something advisable unless you know exactly
what you are doing.
 
Back
Top