System.Diagnostics.Process.Start() not launching an excel file In Excel 2013 and that too launched from inside excel comaddin.
string filename = @"C:\Users\centraluser\AppData\Roaming\STUDIO\CENTRAL\d7c98719-7aa9-4e7e-8fb6-
bd5a5b23f560\New Microsoft Excel Worksheet.xlsx";
ProcessStartInfo processStartInfo = new ProcessStartInfo();
processStartInfo.FileName = filename;
var process = Process.Start(processStartInfo);
It hangs after Process.start and waits for some time and then returns with a null process value.
While the same file gets launched if I use the same code and try to open the file from a console application.
And all this behavior is only occurring with Excel 2013 only.
Kindly help on the same.