Run application via shortcut using Process.Start C#
Could you post some code. Something like this should work:
Process proc = new Process();
proc.StartInfo.FileName = @"c:\myShortcut.lnk";
proc.Start();
Setting UseShellExecute = false
was the problem. Once I removed that, it stopped crashing.