Help for this page

Select Code to Download


  1. or download this
    foreach my $software (keys %bad_stuff) {
        if($subkey =~ $bad_stuff{$software}) {
    ...
            print "Machine $machine could have $software installed\n";
        }
    }
    
  2. or download this
    foreach my $subkey ($user_key->SubKeyNames,$software_key->SubKeyNames)
    + {
         if ( exists $bad_stuff{$subkey} ) {
    ...
         }
                             
    }