Capturing Only the Active Window with Print Screen
Ah, yes… Print Screen. I’ve been using the Prt Scr key for many years now – for a long time, it was my primary method of taking screenshots. However, when I started working as a developer, I quickly discovered the benefits of using specialized screenshot utilities. Presently, I use Snipping Tool and Jing much more than Print Screen. The problem was always that Print Screen would copy the whole desktop, which is particularly frustrating when you have multiple monitors. Soon after starting as a developer, I was told that pressing Alt + Prt Scr would copy only the active window to the clipboard. This proved convenient in the cases where I wanted exactly that – just one window. Compare both the screenshots in this post to get a better idea of what I mean.
Task Manager Has a Tiny Footprint Mode
If you use Windows, chances are, you know about the Task Manager.
Windows Task Manager is a task manager application included with Microsoft Windows NT family of operating systems that provides detailed information about computer performance and running applications, processes and CPU usage, commit charge and memory information, network activity and statistics, logged-in users, and system services. The Task Manager can also be used to set process priorities, processor affinity, forcibly terminate processes, and shut down, restart, hibernate or log off from Windows.
Typically accessed via CTRL+ALT+DEL, this handy tool was never intended to be widely used. Watch below for a laugh as engineer David Bradley takes a friendly jab at Bill Gates, regarding the feature:
I use it very often, mainly to kill processes, change priorities, and monitor system performance. That’s why, a few years ago, I was surprised to find a somewhat hidden feature in there. Simply double-click anywhere in the main Task Management window, and it will switch over to Tiny Footprint mode. The menu bar and tab bar disappear, and the contents are maximized.

Task Manager window showing performance data in Tiny Footprint mode. The content takes up more space, making it easier to read.
Apparently, some people were accidentally activating this mode, and didn’t know how to change it back. To help those people, Microsoft added a knowledge base article. All you have to do to is double-click the window contents once more.
Changing Drive Letters In Windows
At home, I use multiple external hard drives; however, I don’t always leave them on. I usually have just one of them running at a time. Today, when my turned on my main external hard drive, it was assigned the drive letter I by Windows, whereas it usually used F. This caused some problems – some of my shortcuts expect it to be the F drive.
When I look at my drives in Windows, here is what I see:

My drives. Notice how "F" is actually free?
Looking at the drives, I don’t quite understand why Windows thought I would be a good idea. I’m guessing it remembers another drive that had F, and wants to reserve it. Why it didn’t do that before, is beyond me.
To correct the shortcuts, I had to change the drive letter of the drive – which would make the paths valid again. I only had to do this once before, so I thought I’d offer the steps here, in case someone else would find it useful. The change is made using the Disk Management tool that comes with Windows.
In Windows 7, either:
- Search for “Disk Management” in the Start menu, and select the “Create and format hard disk partitions” option.
or
- In a “Run Command” window, enter “diskmgmt.msc”.
You’ll be presented with the Disk Management screen:
Once there, simply right-click the disk you wish to change, and select “Change Drive Letter and Paths”.
You’ll be presented with the following dialog:

Select the drive letter, and press “Change”.
When the dialog opens, select the letter you want to use. In my case, I changed the “Assign the following drive letter:” field value from I to F.

After that, press OK. You’re get a warning saying:
Some programs that rely on drive letters might not run correctly. Do you want to continue?
Copying the Contents of Windows Dialogs
As a developer, I very often see error messages – some of those originate from the products I develop, and I have to report them as bugs. Whenever I get an error message in a dialog, I typically take a screenshot, and add that to the bug base issue. That’s fine, but it means people can’t search for that error message in the bug base – in order to enable that, I’d usually just manually type out the error message, rather than take a screenshot. That was before. Today, I’d just press CTRL+C to copy the error dialog contents.
That’s right, whenever you see a dialog in Windows, like this:
You can press CTRL+C to copy, and then open up Notepad, and press CTRL+V to paste:

The dialog title, contents, and even the button text are saved to the clipboard.
I had no idea this was possible until I read a Lifehacker article explaining it. Since I’ve started using it, I’ve found it very useful in my every day work. Maybe you will too!
Just a note, though – it doesn’t seem to work everywhere. For example, JavaScript alert dialogs can’t be copied in Firefox, but they can in Internet Explorer.




