Jump to content

athomsen

Member
  • Posts

    52
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by athomsen

  1. Thanks for explaining further Grizzly_MV. I had a similiar explanation written but thought that long of a post might scare readers away kelsenellenelvian, I will also be testing it in a large network deployment as soon as I can find the time. I will report back any problems I have, if any.
  2. I need to run programs from a UNC path. Due to reasons that I will not go into using mapped drives is not a viable solution. I started digging into the code to figure out why UNC paths do not work. Below is what I came up with to solve the problem but I would like some input because it seems to easy of a fix. I must be missing something. Line 98 in configwizard.js is: txt = txt.replace(/\\\\/g,"\\").replace(/\\/g,"\\\\"); Line 122 in generate.js is: rs = rs.replace(/\\\\/gi, "\\"); I changed Line 98 to this: txt = txt.replace(/\\/g,"\\\\"); I commented out line 122 entirely. UNC paths work and everything else seems to function as well but I am guessing that these lines were there for a reason. So, what am I missing?
×
×
  • Create New...