How Can I Print a List of Processes?

J

jim evans

Is there a way to print a list of all the processes that are running?
I remember doing this way back on Win95.

If you do Alt-Ctrl-Del the Windows Task Manager pops up. The second
tab is called Processes. This is the list I want to print out. How
can I do this?

jim
 
S

Shenan Stanley

jim said:
Is there a way to print a list of all the processes that are
running? I remember doing this way back on Win95.

If you do Alt-Ctrl-Del the Windows Task Manager pops up. The
second tab is called Processes. This is the list I want to print
out. How can I do this?

CMD prompt..

tasklist.exe /?

You could pipe directly a file.. then print..

tasklist > c:\proclist.txt
 
W

Wesley Vogel

Start | Run | Type: msinfo32 | Click OK |
Click the [+] Software Environment | Click Running Tasks |

Two ways from here.

1.
Click in the right hand pane | Ctrl + A to select all | Ctrl + C to copy |
Paste into Notepad or what ever.

2.
Click File | Export | Pick a location to save the file | Type a name for the
file | Click Save.

Or...
From David Candy

Paste into Start | Run

msinfo32 /categories +SWEnvRunningTasks /report
"%userprofile%\desktop\msinfort.txt"

That line wrapped. That should all be on one line with one space between
/report and "%userprofile%

msinfort.txt lists Running Tasks and will appear on your Desktop in a minute
or so.

--

Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In
 
K

Keith Miller MVP

open a command prompt & type:

tasklist > c:\tasklist.txt

this will create a text file in the root directory of your c: drive that you can print.
 

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

Top