Skip to content

Instantly share code, notes, and snippets.

@carlokok
Created July 20, 2018 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlokok/a9c5fd0cad059f1c387fa024d096dd85 to your computer and use it in GitHub Desktop.
Save carlokok/a9c5fd0cad059f1c387fa024d096dd85 to your computer and use it in GitHub Desktop.
procedure TaskKill(FileName: String);
var
ResultCode: Integer;
begin
Exec(ExpandConstant('taskkill.exe'), '/f /im ' + '"' + FileName + '"', '', SW_HIDE,
ewWaitUntilTerminated, ResultCode);
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment