0%

The name Mark Russinovich should be familiar to anyone in the IT industry. He’s the co-founder of Winternals (which operated the Sysinternals website), now owned by Microsoft. Mark is a co-author of the Windows Internals books, and the creator of such tools as Process Explorer, Autoruns and Process Monitor, which are just a small subset of the Sysinternals tools arsenal, which is being used daily by programmers, IT and computer forensics experts around the world.

Read more »

I had an interesting bug submitted by a user, he wrote that our product was crashing in his Visual Studio 2010, which was a Traditional Chinese edition.

Typemock Isolator, being a Visual Studio add-in, adds a menu next to the Tools menu in Visual Studio. It does so by looking for an index of the Tools menu in the main menu bar, and simply adding the Typemock menu after it. However, the Tools menu is only called that in the English locale. In other languages, the menu might be called differently. In French, for instance, it’s called Outils.

Read more »

Here’s a neat trick which allows you to debug a process by attaching a debugger upon process start. It’s useful at times when you can’t directly launch an application with debugger attached, or you have a process which accepts command line parameters which are not directly under your control (such as QTAgent32.exe, which is the MSTest unit test runner, launched by Visual Studio).

Read more »

Something happened to my Visual Studio 2008 install, and I was no longer able to compile C++ projects in x64 configuration - the build would always skip it. The problem also manifested itself by showing an error message: The operation could not be completed. Unspecified error when I tried to view the C++ project properties in x64 configuration. I ran a repair installation of Visual Studio and Service Pack 1, it didn’t help.

Read more »