I am getting the following error when invooking the follwoing code.

  if (Directory.Exists(Destination))
  {
     Ent.Installer.Tasks.ShellOperations.ShellCommand sc = 
         new Ent.Installer.Tasks.ShellOperations.ShellCommand(
             "mklink", "/D \"" + Source + "\" \"" + Destination + "\"");
     result = (bool)sc.Execute();  
}

When the above is executed it intunr invokes the following code.

Process p = new Process();
pInfo = new ProcessStartInfo();
pInfo.CreateNoWindow = true;
pInfo.WindowStyle = ProcessWindowStyle.Hidden;
pInfo.ErrorDialog = false;
pInfo.UseShellExecute = false;
pInfo.FileName = this.Command;
pInfo.Arguments = this.Args;
if (this.WorkingDirectory.Length > 0)
{
    pInfo.WorkingDirectory = this.WorkingDirectory;
}
pInfo.RedirectStandardOutput = true;            
p.StartInfo = pInfo;            
p.Start();

when p.Start is invoked i am getting the error "The system cannot find the file specified"

any pointers are greatly appreciated.

link|improve this question

14% accept rate
I wonder how you are invoking your first code snippet as it wouldn't even compile. – Darin Dimitrov Aug 28 '10 at 11:51
i copied the intermittent piece of code . ht first part is getting executed without any compile time errors – Phani Kumar PV Aug 28 '10 at 11:53
1  
That's impossible. C:\\phani1 is not a valid variable name in C#. You will need to fix the quotes. It seems that your Copy+Paste is broken then :-) – Darin Dimitrov Aug 28 '10 at 11:54
updated the code – Phani Kumar PV Aug 28 '10 at 11:58
feedback

1 Answer

Start a debugger, use a debugger to evaluate your ShellCommand option, copy and paste into a command shell. This should give a hint of what is going wrong.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.