Help for this page

Select Code to Download


  1. or download this
    $VAR1 = [
              bless( {
    ...
                     }, 'HostSystemIdentificationInfo' )
            ];
    
  2. or download this
    my $add_info = $host_view->summary->hardware->otherIdentifyingInfo;
    
  3. or download this
    foreach (@$add_info) {
      if (  $_->identifierType->key eq "ServiceTag" ) {
         print $_->_identifierValue , "\n" ;
      }
    }