KillProc plug-in: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Removed and fixed broken links) |
|||
(2 intermediate revisions by one other user not shown) | |||
Line 2: | Line 2: | ||
This plugin is intended for searching and killing processes. | This plugin is intended for searching and killing processes. | ||
Useful if you want to kill all running instances of a certain application. | |||
Line 53: | Line 53: | ||
=== Download === | === Download === | ||
* Current Release: | * Current Release: 2011-04-09 | ||
* Download: [http:// | * Download: [http://sourceforge.net/projects/muldersoft/files/KillProc-Plugin%20%28NSIS%29/NSIS-KillProc-Plugin.2011-04-09.zip/download NSIS-KillProc-Plugin.2011-04-09.zip] | ||
---------------- | ---------------- | ||
Line 67: | Line 65: | ||
* Written by MuldeR | * Written by MuldeR | ||
* Homepage: [http:// | * Homepage: [http://muldersoft.com/ muldersoft.com] | ||
[[Category:Plugins]] | [[Category:Plugins]] |
Latest revision as of 06:25, 15 June 2017
KillProc Plugin for NSIS (2006-12-16)
This plugin is intended for searching and killing processes. Useful if you want to kill all running instances of a certain application.
Functions
- KillProc::FindProcesses - Enumerate all running instances of the specified process
- KillProc::KillProcesses - Kills all running instances of the specified process
Parameters
- $0: Specifies the name of the process to be killed (e.g. "foo.exe")
Return Values
- $0: The number of processes found/killed
- $1: The number of processes that could not be killed (-1 indicates serious problems)
Example
Section StrCpy $0 "foo.exe" DetailPrint "Searching for processes called '$0'" KillProc::FindProcesses StrCmp $1 "-1" wooops DetailPrint "-> Found $0 processes" StrCmp $0 "0" completed Sleep 1500 StrCpy $0 "foo.exe" DetailPrint "Killing all processes called '$0'" KillProc::KillProcesses StrCmp $1 "-1" wooops DetailPrint "-> Killed $0 processes, failed to kill $1 processes" Goto completed wooops: DetailPrint "-> Error: Something went wrong :-(" Abort completed: DetailPrint "Everything went okay :-D" SectionEnd
Download
- Current Release: 2011-04-09
- Download: NSIS-KillProc-Plugin.2011-04-09.zip
From Nicholas Wang (njwdm@163.com)
- Current Release for unicode edition: 2009-11-13
- Download: For-NSIS-Unicode
Credits
- Written by MuldeR
- Homepage: muldersoft.com