Wise words from http://www.arcanadev.com/support/kb/I02000003.aspx:
Programs run by the Scheduler generally will not have access to network drive letters unless those letters are mapped by the Scheduler (see next section).

This is because drive letter mappings (e.g., those assigned using Windows Explorer) are defined at the user level, not the system level. These drive mappings are only valid while the user who made them is logged into the computer interactively.

Even if you are running scheduled programs under an account for which drive mappings are defined, the programs will not have access to those mappings, because the Scheduler does not load them when it logs on to that user account.

For Windows Network resources, if you are running the job under a user account, and that user account is also logged into the computer interactively, the drive letters for that user account may be available to scheduled programs. However, you should not rely on this being the case, because your scheduled programs will then fail if the user is not logged in interactively, or if another user is logged in.

Instead you should always use UNC designations for network resources, or have the Scheduler map the drive letters.

There is more well-written, useful info at that site..

            "XML is like violence: if it doesn't solve your problem, use more."


In reply to Re: Invalid argument by NetWallah
in thread Invalid argument by LNJ

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.