Wintellect  

October 2009 - Posts

One of the most important technologies used at Microsoft is Event Tracing for Windows (ETW), especially inside Windows 7 and Server 2008 R2. There's a small problem with ETW. It's beyond wonderful for the Windows team at Microsoft, but for just about Read More...
Nearly everyone reading this is using a machine with multiple cores. With a basic laptop containing a dual core CPU and your average desktop with a four core CPU, we have processing power our computing ancestors could only dream about. Most of us developers Read More...
While some teams solve their performance problems by throwing bigger hardware at the problem, many of us really do care about creating fast code. Visual Studio 2008 Team Developer Edition and above has had a great profiler that I've used to solve many Read More...
Code Analysis is one of those great tools that people don't run nearly enough. I have screamed repeatedly, " Never do anything at run time you can do at compile time. " The best time to catch the Design Guidelines , security, and performance violations Read More...
After getting a fresh copy of Visual Studio 2010 Beta 2, I was dying to see the amazing IntelliTrace feature. You know IntelliTrace as Historical Debugging, but consider HD as the code name. No matter what the marketing people call it, IntelliTrace is Read More...
I love all things diagnostics. After installing VS 2010 Beta 2, the first thing I had to look at my favorite tool of all, the debugger. All the familiar features are there that we've been using for ages, such as advanced breakpoints and the killer expression Read More...
While I was hoping that VS 2010 would just install itself as soon as I downloaded the bits, they haven't quite gotten that feature working just yet. I guess the team had to leave themselves something to do in the next version. I grabbed the new Ultimate Read More...
Go grab it and let the fun begin. See the Beta 2 home page to see what's new and how to get the bits. Read More...
Kate Gregory put together a wonderful set of presentations on Code Project , Extending Visual Studio – What and Why , Top Ten Free Extensions for Visual Studio 2008 and Boosting Developer Productivity by Writing Extensions to Visual Studio . (Make sure Read More...
Recently I was asked a question that's come up several times so I thought I'd share the answer. I've inherited a large code base that has never had FxCop run on it. When I ran the binaries through FxCop, it reported tens of thousands of warnings, which Read More...
One of my favorite PowerShell scripts of all time is Jeff Hillman's Compile-Help . Instead of attempting to read the PowerShell help in a text window, Jeff's outstanding script packages up all the help into a searchable, linkified, and easy to read Compiled Read More...