1.- Console (command line) applications’ parameters have an upper limit in the size of the input: 8192 bytes. If their input is greater, you’ll see an error like the following in Windows Vista.

2.- Alt + Print Screen make a screen capture of the current active window. It is very useful when you are writing tutorials, books or whatsoever… As far as I know, many people don’t know this and they insert badly cropped pictures into documents.
3.- MsgBox (MessageBox) text can be copied in spite of not being selectable. Press Ctrl + C as usual and you get a result like this:
[Window Title]
D:ResearchVargSatbinReleaseVargSat.exe
[Content]
D:ResearchVargSatbinReleaseVargSat.exe
The data area passed to a system call is too small.
[OK]
I’ve read so many times people asking in development forums how can they implement a MessageBox-like form in order to allow copy the message. Even people from Sql Server develop their own MessageBox class to allow this. I think they didn’t know this trick has existed since the early days of Windows 95.

I always forget the second one.