How kill task on windows.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Thu, 25 Jun 2009 16:56:15 +0300
changeset 142 6de0091cc5e9
parent 125 5c5e49a75b02
child 143 ff931ad0ec66
How kill task on windows.
devel-windows.rst
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/devel-windows.rst	Thu Jun 25 16:56:15 2009 +0300
@@ -0,0 +1,27 @@
+-*- mode: outline -*-
+
+* Dependency Walker.
+
+Dependency Walker is a free utility that scans any 32-bit or 64-bit Windows
+module (exe, dll, ocx, sys, etc.) and builds a hierarchical tree diagram of
+all dependent modules. For each module found, it lists all the functions that
+are exported by that module, and which of those functions are actually being
+called by other modules. Another view displays the minimum set of required
+files, along with detailed information about each file including a full path
+to the file, base address, version numbers, machine type, debug information,
+and more.
+
+See
+
+  http://www.dependencywalker.com/
+
+* Kill process.
+
+** tskill.exe
+
+  cmd> tskill {<pid>|<name>}
+
+** taskkill.exe.
+
+  cmd> taskkill /IM notepad.exe
+  cmd> taskkill /PID 827