Is there a way to run an application via shortcut from a C# application?
I am attempting to run a .lnk from my C# application. The shortcut contains a significant n
Could you post some code. Something like this should work:
Process proc = new Process(); proc.StartInfo.FileName = @"c:\myShortcut.lnk"; proc.Start();