Avec un script vbs lancé par le batch :
http://www.experts-exchange.com/Op [...] 60342.html
You could create a small VBS script that you call when you want to end e process of s specific name or type.
This VBS code below terminates all processes of Word, you could replace the WinWord.exe with the imagename of the process that you want to end and save the code using notepad eg with the extension vbs. You could also use another property in the where clause you can find more info about the win32 classes on MSDN and a vbs scrip guide on technet where the example below has been found (no need to reinvent the hot water). It should run fine on win2000 and proberly also on NT with a newer version of IE
Henning
strComputer = "."
Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2" )
Set colProcessList = objWMIService.ExecQuery ("Select * from Win32_Process Where Name = 'WinWord.exe'" )
For Each objProcess in colProcessList
objProcess.Terminate()
Next
tu trouveras des renseignements sur les scripts vbs sur le site de J.C. Bellamy :
www.bellamyjc.net
A+