I wanted to follow up on this one. I am still using Win32::Process to search for running instances of java.exe, but I now pass the found instance to a subroutine that uses the Win2000 utility tlist.exe to examine the information in detail. Let's say I find java.exe and PID is 1268, then my program runs this command:

tlist 1268

This returns all sorts of useful (and not!) information that lets me search for a meaningful reference in the CmdLine value. The java class file is listed there in my case. Below is the rough subroutine (not yet optimized to drop out of the loop when the answer is found) where tlist examines the PID passed. Thanks to all for your help!
sub CheckProcess { foreach $_ (`tlist.exe $_[0]`) { my $finder = index($_, "CIBFeeder"); if ($finder > -1) { print "$_\n"; return 1; } } return 0; }

In reply to Re: Getting Windows App Info with Perl by rdwaters
in thread Getting Windows App Info with Perl by rdwaters

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.