Talk:KillProc plug-in: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
(Created page with 'A simple alternative to killproc on windows would be... ExecWait "taskkill /f /im ExeToKill.exe" which would kill all processes with the name "ExeToKill.exe"')
 
No edit summary
Line 1: Line 1:
A simple alternative to killproc on windows would be...
A simple alternative to killproc on windows would be...


=== Example ===
ExecWait "taskkill /f /im ExeToKill.exe"
ExecWait "taskkill /f /im ExeToKill.exe"


which would kill all processes with the name "ExeToKill.exe"
which would kill all processes with the name "ExeToKill.exe"

Revision as of 15:55, 10 March 2009

A simple alternative to killproc on windows would be...

Example

ExecWait "taskkill /f /im ExeToKill.exe"

which would kill all processes with the name "ExeToKill.exe"