Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
# 5.14.02 Jonathan E. Dyer # Script forces a hardware inventory for SMS for a single box running +SMS. # Run script like this: forceinventory.pl <server name> # no backslashes are needed in the server name. # ping the box, and if ping response # Start SMS hardware inventory service (hwservvice) # Query the SMS hardware inventory service until it's stopped (it st +ops itself) # Stop the SMS client inventory service (cliservice) # Query the SMS client inventory service is until stopped # Start the SMS client inventory service service # Query the SMS client inventory service until it's started # else if no ping response # end use strict; use Win32::Service qw(GetStatus StopService StartService); #define variables my $server; my $hwservice='sms hardware inventory agent service'; my $cliservice='clisvc'; use Net::Ping; my $server=$ARGV[0]; #get the input #Stop/start the services my $p = Net::Ping->new("icmp"); if ($p->ping("$server",15)){; StartService("$server","$hwservice"); &getstatus($server,$hwservice,1); StopService("$server","$cliservice"); &getstatus($server,$cliservice,1); StartService("$server","$cliservice"); &getstatus($server,$cliservice,4); }else{ print "No ping response from $server"; } $p->close(); print "\n"; sub getstatus{ my %statusHash; my %statcodeHash = ('1' => 'stopped','2' => 'start pending','3' => + 'stop pending','4' => 'running','5' => 'continue pending','6' => 'pa +use pending','7' => 'paused'); do { GetStatus("$_[0]", "$_[1]", \%statusHash); }until ($statusHash{CurrentState}==$_[2]); print " $_[1] $statcodeHash{$statusHash{\"CurrentState\"}} on $_[0 +]"; }

In reply to Force SMS Hardware Inventory by OzzyOsbourne

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
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 meditating upon the Monastery: (12)
As of 2024-04-23 14:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found