in reply to Re^4: how to print out windows service status
in thread how to print out windows service status

It's the first element of the array, try print $state_name[0]

Replies are listed 'Best First'.
Re^6: how to print out windows service status
by ytjPerl (Scribe) on Jul 31, 2017 at 18:19 UTC
    use Win32::Service qw'GetServices GetStatus'; use strict; use POSIX; use autodie; my ($hostname, $servicename, $entry); my (%status, @array); my @state_name = qw( '' Stopped START_PENDING STOP_PENDING Started CONTINUE_PENDING PAUSE_PENDING PAUSED ERROR ); use constant DATETIME => strftime("%Y%m%d%H%M%S", localtime); # my $filename = '/Perl/XiServiceList.txt'; sub buildarray() #array subroutine { # text file read and loaded on startup #open (MYFILE, '>>XiPerlService.txt'); #open for write, o +verwrite #print MYFILE $theTime, " Start of perl module\n"; open( FILE, "< $filename" ) or die "Can't open $filename : $!"; while( <FILE> ) { my $line = $_; chomp $line; push @array, ($line); } close FILE; # my $loop = 1; while ($loop lt 4) #infinite loop if setting this + up to run continually i.e. service { #part of - infinite loop my $count = 0; my $entry; foreach $entry (@array) #loops through entire loaded +array { open (MYFILE, ">> /Perl/daily\.". DATETIME."\.txt"); + #open for write, overwrite if (($count == 0)) #test 1st entry for host addr +ess { $hostname = "$entry"; $count = $count + 1; } else { $servicename = "$entry"; sleep(2); &CheckServiceStatus($hostname,$servicename, \%status); $count = $count + 1; sleep(2); } close MYFILE; } #sleep(300); #part of - infinite loop + $loop = $loop + 1; } #part of - infinite loop } # sub CheckServiceStatus() # check service sub routine { GetStatus($hostname, $servicename, \%status); my $state_no = $status{'CurrentState'}; printf MYFILE " ServiceStatus: %s %s %s \n", $hostname, $servicename, +$state_name[$state_no]; } sub main() { buildarray(); #run array subroutine } main();
    Hi poj, Above is my script, if I have '', all the status are printed out ' ', if I remove '', all the status will be printed out 'stopped', it is not getting actual status, But when I run your script, I could get 'started' and 'stopped', then problem is I do not get all the services my OS have, only certain services. I do not really quite understand it.
      Some functions require administrative rights; this might be one of them. Are you running it as an admin or as an umprivileged user?
        Hi poj, I had consideration of that, but I do not think that is the issue. As I am able to use your script to get some of services status, I put the services name into my $inputfile, the service status I got is still like '' if I leave the first element of array as '', otherwise it would be the first element of this array @state_name. btw, I also tried somewhere I have full control, I had the same result.