vote up 1 vote down star

I have to run Excel on a server and to kill the excel.exe process I am using taskkill.exe:

System.Diagnostics.Process.Start("taskkill.exe", "-im excel.exe /f");

My only problem is that if there is someone who is also using the server who is working on excel (It could happen) then their processes will be killed also. Is there anyway around this to only kill the excel files created by my code? Any help would be great. Thanks!

flag
Why are you needing to kill the excel process this way in the first place? – Rich B Jan 27 at 18:39
None of the other ways that I should be able to kill the process work. For instance workbook.close(), app.quit(), and there are few others I tried... – XPHiLtER Jan 27 at 18:41
XPHilter: You should be exploring why that doesn't work instead IMO. – Rich B Jan 27 at 18:41
I have tried, but I'm not sure anyone knows, I got my solution from this earlier today: stackoverflow.com/questions/51462/… – XPHiLtER Jan 27 at 18:43
V.nice approach. :-) You might also want to address the fundamental issues that could be causing Excel to hang in the first place. I laid out what I think is a very clean strategy here: stackoverflow.com/questions/158706/… – Mike Rosenblum Feb 7 at 18:55

3 Answers

vote up 0 vote down

Microsoft says the following in this article.

Microsoft does not currently recommend, and does not support, Automation of Microsoft Office applications from any unattended, non-interactive client application or component (including ASP, ASP.NET, DCOM, and NT Services), because Office may exhibit unstable behavior and/or deadlock when Office is run in this environment.

My suggestion is to use SpreadsheetGear for .NET which my company sells, or one of our competitors (just Google "SpreadsheetGear" and look at the AdWords to see who they are).

link|flag
I have seen this before, and while I would like to have a different solution, I cannot purchase any software at this time. – XPHiLtER Jan 27 at 18:49
Microsoft used to give away SpreadsheetGear 2006 as part of the Visual Studio Registration Benefits. I don't know whether they still do - but you might take a look if your project would allow you to use a free 3rd party component. – Joe Erickson Jan 27 at 20:28
vote up 0 vote down

If your able to get the PID using code (which I think you can) you can use the pid switch rather then the /im switch.

link|flag
vote up 4 vote down

Keep track of the PID of the processes you launch and kill them with taskkill.exe /pid NUMBER

link|flag

Your Answer

Get an OpenID
or

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