How to get an app's PID??

  • Thread starter Thread starter Brian
  • Start date Start date
B

Brian

I need to be able to launch an application from the terminal and get its PID
in doing so. How can I do this?

-brian
 
Search the net for a program called Fport. Small free app that runs in
command prompt window. Put the app in a folder, open a command prompt
window, navigate to the folder with fport in it and type fport, hit enter.
It will show you all the running programs/processes, what port they use,
there name, and give you their PID.
 
Brian said:
I need to be able to launch an application from the terminal and get its PID
in doing so. How can I do this?

-brian

Task manager will show you this. Ctrl-shift-esc, see Tab: Processes.

Use Menu: View/Select Columns ... to add the PID to view.
 
I need to be able to launch an application from the terminal and get its PID
in doing so. How can I do this?

-brian

Start Task Manager
Select View / Select Columns / click PID.
Now the PID will show along side the running tasks.


§ß©
 
Open a command prompt window.

type command ps <enter>
for all the options, type ps /? <enter>

Kinda like on a *nix box, eh?

Val
--
Bringing you BeadWizard Design Software
www.beadwizard.com
***************************
Practice safe eating -- always use condiments.
***************************

I need to be able to launch an application from the terminal and get its PID
in doing so. How can I do this?

-brian
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top