Help for this page

Select Code to Download


  1. or download this
    $VAR1 = {
              '' => [
    ...
                      ''
                    ]
            };
    
  2. or download this
    $x->GetValues(\%vals );
             #print Dumper \%vals;
    ...
                print "$item";
             }   
             print "---------\n";
    
  3. or download this
    $x->GetValues(\%vals );
             #print Dumper \%vals;
    ...
             print "App : $rec->{app}
             print "Path :$rec->{path} \n";
             print "---------\n";
    
  4. or download this
    Use of uninitialized value in concatenation (.) or string at U:\script
    +s\listapps4.pl line 23.
    App :
    ...
    
    App : Internet Explorer Q837251
    ---------
    
  5. or download this
     $rec->{app} = $vals{DisplayName}[2] if ( exists $vals{DisplayName});
             $rec->{path} = $vals{InstallSource}[2] if ( exists $vals{Inst
    +allSource});
             print "$rec->{app}" if ($rec->{app});
             print "$rec->{path}" if ($rec->{path});
    
  6. or download this
    $x->GetValues(\%vals );
             $rec->{app} = $vals{DisplayName}[2] if ( exists $vals{Display
    +Name});
    ...
       print "------------------------------------------------\n";    
    }