Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

LostS's scratchpad

by LostS (Friar)
on Jun 03, 2004 at 15:17 UTC ( [id://360201]=scratchpad: print w/replies, xml ) Need Help??

#!e:/perl/bin/perl -w use strict; use warnings; use Win32::Process::Info; use Data::Dumper; my @processes = ("cogbootstrapservice.exe", "java.exe", "BIBusTKServerMain.exe", "bpfis.exe", "bpbkar32.exe"); my $pi = Win32::Process::Info->new ("server.domain.com", "WMI"); my @pids = $pi->ListPids (); # Get all known PIDs foreach my $pid (@pids) { my @info = $pi->GetProcInfo($pid); # print Dumper @info; my %info; foreach my $hash_ref (@info) { foreach (sort keys %{$hash_ref}) { foreach my $service (@processes) { if ($_ eq "Caption") { if (${$hash_ref}{$_} =~ /$service/ig) { print "$_ => ${$hash_ref}{$_}\n"; } } } } } }
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (6)
As of 2024-04-18 18:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found