<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <div class="moz-cite-prefix">On 4/14/24 07:26, <a class="moz-txt-link-abbreviated" href="mailto:john@timescape.com">john@timescape.com</a>
      wrote:<br>
    </div>
    <blockquote type="cite"
      cite="mid:001101da8e5e$8b1ca030$a155e090$@timescape.com">
      <pre>Am I allowed to put the drive letter of the mapped drive into the PATH variable as I have done? 
Maybe <b class="moz-txt-star"><span class="moz-txt-tag">*</span>this<span
      class="moz-txt-tag">*</span></b> is being ignored or something, which means it would very definitely find some other p.exe than I want it to find...
 </pre>
    </blockquote>
    <p>Yes, batch files will work just fine by using variables to
      reference paths, documents; I do that all the time with fp menu's
      scripts</p>
    <p>set fn = "someFile"<br>
      set fp = "c:\appl\fp\rreport"<br>
      set fo = "someFormat" <br>
      set fz = "someProcessing"<br>
      set fy = "someProcessing" <br>
      set fv = "someProcessing"<br>
    </p>
    <p>%fp% %fn% -f %fo% -z %fz% -y %fy% -v %fv% ...</p>
    <p>I use this when the command is so long that it cannot fit in a
      single line.<br>
    </p>
    <p><br>
      If I am not mistaken, network/mapped drives may be restricted by
      user and if that is the case, what happens if user cannot
      see/access the mapped drive?  Move on to the next possible path?</p>
    <p><br>
    </p>
    <p>Regards,</p>
    <p><br>
    </p>
    <p>Jose Lerebours</p>
    <p><br>
    </p>
  </body>
</html>