in reply to Re^2: End a process in the Task manager
in thread End a process in the Task manager

I don't have the full code, but the EnumWindows API function may be of help.
  • Comment on Re^3: End a process in the Task manager

Replies are listed 'Best First'.
Re^4: End a process in the Task manager
by Nalina (Monk) on Jun 03, 2005 at 11:12 UTC
    how do I use Enum Windows API function in perl?
      Never actually did this, but any reason for it to be different from any other call ? Look up EnumWindows in MSDN (online, if you want) and see what arguments it expects, what it returns, etc. Then use the import capability Win32::API provides to call it.