A couple of things

It would be useful if you could isolate/tell us where the "Access is denied" msg is being displayed? Also, if you could isolate which line of your script is causing it.

Maybe the easiest way to do this would be to use Perl's built-in debugger.

Second point, and I hesitate to mention it as you say that "this is working 80% of the time", but...according to the Win32::EventLog docs:

$handle->Backup(FILENAME); The Backup() method backs up the EventLog represented by $handle. It t +akes a single arguemt, FILENAME. When $handle represents an EventLog +on a remote machine, <b>FILENAME is filename on the remote machine an +d cannot be a UNC path</b> (i.e you must use C:\TEMP\App.EVT). The me +thod will fail if the log file already exists.

Which if interpret correctly means that the built-in Backup() method will only work if the source and destination are on the same machine? And reading your code, it appears that you are suppling a local path ($locdir) whilst processing a remote machines logs?

It strikes me that the size related problem could be due to memory exhaustion?

Kick me if I mis-read this.


In reply to Re: Win32::Eventlog Issues: Access Denied, Incorrect log size by BrowserUk
in thread Win32::Eventlog Issues: Access Denied, Incorrect log size by OzzyOsbourne

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.