Archive

Archive for April, 2010

View and Kill Processes using the Windows Command Line

April 13th, 2010 niels No comments

It’s pretty convenient to list and kill processes using ps and kill / pkill on *nix. Actually, you can do that on a Windows command line as well:

  • tasklist: shows a list of all running processes
  • taskkill: kills processes

Among other options, processes can be killed by their process ID (taskkill /PID 4711) and by the name of their executable (taskkill /IM firefox.exe).
So, if you have perl scripts running wild, just execute taskkill perl.exe to kill all of them down with a single command.

More lesser known Windows commands are described in this PDF.

Opening ISO Images in Windows

April 13th, 2010 niels No comments

Some tools just keep amazing me. They are flexible, stable, small – basically, they just work. One of these tools is 7-Zip.
It does a lot more than just creating 7zip archives: it is able to create and open almost any package type I’ve run across so far. And it even reads .iso image files.
Thanks a lot for this marvelous tool – it’s a joy to use and a definitive must-have! :)

Tags: