• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

process

 
Ranch Hand
Posts: 48
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all.
Please tell me how to get all process of windows.
Thank for help me
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think Windows has a built-in command-line utility for listing processes, but I can;t find any docs about it. This free tool would seem to do the same thing. You can run it via Runtime.exec, and then read and parse its output.

If you're looking for a Java API, have a look at JConfig.
 
author
Posts: 23959
142
jQuery Eclipse IDE Firefox Browser VI Editor C++ Chrome Java Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Ulf Dittmer:
I think Windows has a built-in command-line utility for listing processes, but I can;t find any docs about it. This free tool would seem to do the same thing. You can run it via Runtime.exec, and then read and parse its output.

If you're looking for a Java API, have a look at JConfig.



The built-in command-line utility for listing processes in Windows is tasklist. Unfortunately, it is possible to not install it, so I don't know if "built-in" is the correct term.

Henry
 
lowercase baba
Posts: 13091
67
Chrome Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Since this doesn't seem to be a java specific question, i'm going to move this to our "General Computing" forum.
 
reply
    Bookmark Topic Watch Topic
  • New Topic