When using the command line interface, it appears that when I have a server name that contains a hyphen (-) in the server name, TqcRunAs interpets the hyphen to be the beginning of another parameter. For example, I am executing the TqcRunAs executable from the command line, I am usin the -a switch and putting in my arguments within quotes ("). Within my quotes are UNC paths to the file locations. My first UNC path contains a server name that contains hyphens (-) in the server name. IE \\dev-ent-db01\filepath. My program is failing to launch because the arguments being passed to my executable being launched with the -e switch is only receiving "\\dev" instead of the entire argument. I have verified this to be the case, because if I change my arguments to use a mapped drive letter the process works correctly. Example, if I send this: "M:\filepath" instead of "\\dev-ent-db01\filepath", then it works. This is a mission critical problem for us because we can not use mapped drives and MUST use UNC paths. |