Help for this page

Select Code to Download


  1. or download this
    my $dst = "C:\\Users\\Administrator\\Desktop\\Perl_Scripts\\8312032_Se
    +curity.evtx";
    my $src = "C:\\Users\\Administrator\\Desktop\\Perl_Scripts\\8312032_Sy
    +stem.evtx";
    
    ...
    
    close ($srch);
    close ($dsth);
    
  2. or download this
    use autodie;
    {
    ...
        open (my $srch, "<", $src);
        print {$dsth} <$srch>; 
    }
    
  3. or download this
    my $dst = "C:/Users/Administrator/Desktop/Perl_Scripts/8312032_Securit
    +y.evtx";
    my $src = "C:/Users/Administrator/Desktop/Perl_Scripts/8312032_System.
    +evtx";