Talk:KillProc plug-in: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
No edit summary
(Undo revision 17834 by 192.88.212.32 (talk))
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
A simple alternative to killproc on windows would be...
There's a simple alternative to the KillProc plugin on windows. The following example would terminate all processes with the name "ExeToKill.exe"...


=== Example ===
=== Example ===
ExecWait "taskkill /f /im ExeToKill.exe"
ExecWait "taskkill /f /im ExeToKill.exe"
 
:That application is only present on Windows XP and above. --[[User:Kichik|kichik]] 19:43, 10 March 2009 (UTC)
which would kill all processes with the name "ExeToKill.exe"

Latest revision as of 22:29, 10 May 2011

There's a simple alternative to the KillProc plugin on windows. The following example would terminate all processes with the name "ExeToKill.exe"...

Example

ExecWait "taskkill /f /im ExeToKill.exe"

That application is only present on Windows XP and above. --kichik 19:43, 10 March 2009 (UTC)