I am trying to open an Excel with C# using:
using Excel = Microsoft.Office.Interop.Excel;
ExcelApplication = new Excel.Application { Visible = true };
The problem is that Excel will open without default add-ins.
And when I open my excel manually, I have all my default add-ins.
Do you know how can I open directly this addins when Excel is opening?
I am not supposed to open this add-ins like Workbooks.Open( .... xll)
but directly at opening because my application is not supposed to manage add-ins from the code.