Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Command Line Service list

by OzzyOsbourne (Chaplain)
on Mar 07, 2002 at 20:08 UTC ( [id://150108]=sourcecode: print w/replies, xml ) Need Help??
Category: NT admin
Author/Contact Info OzzyOsbourne
Description: Gets services and their status on multiple servers from the command line.
#gets services on a bunch of servers, lists there name, and their stat
+e
# Usage: readservices.pl server1 server2 server3 ...

use strict;
use Win32::Service qw(StartService StopService GetStatus GetServices);
my %statcodeHash = ('1' => 'stopped.','2' => 'start pending.','3' => '
+stop pending.','4' => 'running.','5' => 'continue pending.','6' => 'p
+ause pending.','7' => 'paused.');
my %serviceHash;
my ($service,%statusHash,$server);

foreach $server (@ARGV){
    print "\n\n##### $server #####\n\n";
    GetServices("$server",\%serviceHash) or next;
    foreach(sort keys %serviceHash){
        print "$_: $serviceHash{$_}\t";
        &getstatus($server,$_);
    }
}

sub getstatus{
    GetStatus("$_[0]", "$_[1]", \%statusHash);
    print "$statcodeHash{$statusHash{\"CurrentState\"}} \n";
}

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: sourcecode [id://150108]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-04-16 22:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found