Customer Reviews


23 Reviews
5 star:
 (22)
4 star:    (0)
3 star:
 (1)
2 star:    (0)
1 star:    (0)
 
 
 
 
 
Average Customer Review
Share your thoughts with other customers
Create your own review
 
 
Only search this product's reviews

The most helpful favorable review
The most helpful critical review


19 of 21 people found the following review helpful:
5.0 out of 5 stars A must have book for windows developers.
As a technical supervisor, one of the biggest problems I have is training our development teams in the use of the various debugging tools available. I purchased a copy of this book hoping it would help me in that training, and I was not disappointed.

This book goes far beyond my expectations and provides insight into not only the use of the various...
Published on December 23, 2007 by Gary McNickle

versus
4 of 22 people found the following review helpful:
3.0 out of 5 stars A typical Microsoft stuff:
It is expensive, promises a lot and delivers next to nothing. The author concentrates of some specific problems, explains them in uninteligeble language, assuming that you already know all these Windows undocumented internals. I tried to find a problem in thread management with the help of this book and it was a waste of time. The application verifier is another product...
Published on March 29, 2009 by M. Sharkansky


‹ Previous | 1 2 3 | Next ›
Most Helpful First | Newest First

19 of 21 people found the following review helpful:
5.0 out of 5 stars A must have book for windows developers., December 23, 2007
This review is from: Advanced Windows Debugging (Paperback)
As a technical supervisor, one of the biggest problems I have is training our development teams in the use of the various debugging tools available. I purchased a copy of this book hoping it would help me in that training, and I was not disappointed.

This book goes far beyond my expectations and provides insight into not only the use of the various debuggers, explaining how to set breakpoints and analyze memory locations, but it also goes into detail on how to debug some of the more insidious problems common to developers.

The chapters on thread synchronization and stack and heap corruptions are excellent and provide invaluable insight into debugging these common problems. But more than that, the book outlines and gives instructions on using some of the lesser known debugging aids, such as the application verifier and the leak diagnosis tool, as well as writing your own debugger extensions.

There is a chapter on post-mortem debugging, which goes into detail on using crash dump files, instructions on obtaining information from the Windows reporting service and a chapter on managing symbol and source files.

Finally, there are chapters on debugging Vista applications, security problems, and interprocess communications.

The authors are clearly masters of debugging windows applications, and this book stands alone in the field.

I am a senior C++ engineer with over ten years of experience writing applications for windows and linux, and I found new information in every chapter, all of it easy to understand and well written.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


12 of 13 people found the following review helpful:
5.0 out of 5 stars Unequaled, August 7, 2008
This review is from: Advanced Windows Debugging (Paperback)
I have little to add to the effusive praise of previous reviewers. This is a one-of-kind book. An instant classic.

Beware, however. As others have noted, this is definitely an _advanced_ book. If you're not comfortable with arcane command syntax, bits and bytes, and such this will be painful to incomprehensible for you. On the other hand, I dare say you will never be a true Master Debugger until you have a good grasp of this material.

You would do well to start with Debugging Microsoft .NET 2.0 Applications or the now-unavailable Debugging Applications for Microsoft .NET and Microsoft Windows. Both will give you an easier introduction to WinDbg. The latter, older volume has much more information on native code debugging than the newer version. As they also cover the Visual Studio debugger in detail, most developers need go no further than one of these.

Note that WinDbg _can_ be used with SOS and ADPlus to do some pretty fancy .NET debugging that isn't possible with Visual Studio alone. For that matter, the .NET CLR on Windows is implemented using the same Windows API as any native application. I've seen WinDbg used to trace bugs through C# application code down to find that the defect was actually in the CLR or Windows itself. John Robbins (author of the previously mentioned books) states in Chapter 6 of the latest version that "in our consulting work at Wintellect, which as you know works on the toughest bugs, we use WinDBG nearly 70 percent of the time."

Don't ignore this book just because you program in .NET!

Watch out for the font used in the listings though. Not being a master myself, I've been stumped for quite a while because the letter 'l' looks like the number '1' in the font they use. (I've been assiduously following the examples line-by-line).

I also recall being stumped because of an error or two in the text, though I admit I can't find them now. These as you can imagine could be a serious problem given the arcane and undocumented nature of quite a bit of the material. Just make sure you check the errata periodically. Ironically, the errata web page for the book is not functioning at the moment...



Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


7 of 8 people found the following review helpful:
5.0 out of 5 stars One of the best books ever on Windows Debugging, December 11, 2007
This review is from: Advanced Windows Debugging (Paperback)
I've been using the Windows Debuggers for a long time now and I found myself an expert and I am regarded as such at my working place where I actively push the use of windbg and friends for trouble solving.
This book however shows that even experts can gain a new level of debugging tips and tricks.
This is not a one of many books on this topic but one that stands out with head and shoulders.
A definately must have for those who do serious debug work, both on kernel and user level debugging!

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


11 of 15 people found the following review helpful:
5.0 out of 5 stars Essential for any serious debugging effort on Windows., November 16, 2007
By 
Sorin Jianu (Seattle, WA United States) - See all my reviews
(REAL NAME)   
This review is from: Advanced Windows Debugging (Paperback)
I could not wait to get a copy of it and so far the book has exceeded my expectations. The book is a great companion to Windows Internals series. The debugging tips and tricks provided are invaluable when doing any serious development of Windows software, including development for x64 and Windows Vista. Debugging is somehow an arcane art, better learned by looking over people's shoulders. Many thanks to the authors for taking time to share their knowledge and fill in an important gap in the technical literature. Right on.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 2 people found the following review helpful:
5.0 out of 5 stars Impressive reality-based reference work, July 31, 2009
Amazon Verified Purchase(What's this?)
This review is from: Advanced Windows Debugging (Paperback)
My kind of book is concise, accurate, to the point, full of technical detail, based on extensive real-world experience, absorbing, and practically applicable. This is my kind of book. Well worth the money.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 2 people found the following review helpful:
5.0 out of 5 stars If I had it 5 years ago I probably wouldn't have started blogging on crash dump analysis..., June 22, 2009
By 
Dmitry Vostokov (Monkstown, Co. Dublin Ireland) - See all my reviews
Amazon Verified Purchase(What's this?)
This review is from: Advanced Windows Debugging (Paperback)
This is the book I wanted to read when I started doing Windows crash dump analysis more than 5 years ago. Although other excellent Windows debugging books existed at that time including "Debugging Applications" written by John Robbins and "Debugging Windows Programs: Strategies, Tools, and Techniques for Visual C++ Programmers" written by Everett N. McKay and Mike Woodring I needed a book that discusses debugging in the context of WinDbg and other tools from Debugging Tools for Windows package. So I had to learn from day-to-day experience and WinDbg help. Now WinDbg is a de facto standard in debugging and troubleshooting on Windows platforms and the book comes at the right time to teach the best practices and techniques. I'm reading it sequentially and I'm on the page 387 at the moment and I have already learnt techniques and debugging strategies I missed due to certain habits in using WinDbg. See my real time reading notes on Software Generalist blog. Even if you do mostly memory dump analysis and not live debugging of your product, you also will learn a lot to apply in your day-to-day problem identification and troubleshooting. Absolutely must have for any Windows software engineers, escalation engineers and technical support engineers willing to advance their debugging skills.

Thanks,
Dmitry Vostokov
Founder of DumpAnalysis Portal
Editor-in-Chief of Debugged! MZ/PE magazine
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 2 people found the following review helpful:
5.0 out of 5 stars Destined to be a Classic, December 23, 2008
By 
This review is from: Advanced Windows Debugging (Paperback)
I approach debugging from a security perspective and am used to Ollydbg and IDA pro. I had no idea about the power and usefulness of Windbg. Beyond that, I have learned more from this one book about Windows internals than the last two Windows Internals editions combined (not knocking the internals books - just elaborating on how much I have gotten from this one book already). The sections on memory corruption, IPC and Security are gems - but every part of this book is outstanding. The introduction and explanation of other tools such as App Verifier, glags, etc. provides a solid reference for the what these tools are and how to use them. I will be using this book
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 2 people found the following review helpful:
5.0 out of 5 stars Simply The Best!, October 24, 2008
By 
Hugh K. Boyd (Fayetteville, GA) - See all my reviews
(REAL NAME)   
This review is from: Advanced Windows Debugging (Paperback)
This is hands down the best book I have ever seen on the topic of Windows debugging. Whether you are chasing tricky synchronization issues, reverse engineering, or probing for security flaws, you'll do well to have this one handy. A bit pricey perhaps, but worth every penny.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 2 people found the following review helpful:
5.0 out of 5 stars Very important, long-overdue book., January 2, 2008
By 
This review is from: Advanced Windows Debugging (Paperback)

Windows debugging tools described in this book are lightweight, freely
available, powerful and mature. Microsoft developers have been heavily relying on them for years, on some of the largest-scale software projects ever. Hence the authors' familiarity with the subject.

This book is written to be both practical and in-depth. The authors do a very nice job of explaining the underlying Windows OS concepts to show how software defects occur. I think it's quite accessible to an intermediate-level reader.

The book is not a collection of tricks and shortcuts: the reader is lead towards a solid understanding of Windows debugging. The shortcuts are thrown in closer to the end of the chapters as a reward.

If you are a native-code Windows developer reading this, do your part in making the world a better place: read the book, test your code with application verifier, investigate and fix the failures. You'll rock - thank you in advance! :)

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4 of 5 people found the following review helpful:
5.0 out of 5 stars Best book on debugging Windows so far, January 27, 2008
This review is from: Advanced Windows Debugging (Paperback)
Books about Windows debugging using the Windbg tool are usually a chapter long and just peek at the tools basic commands. Windbg is the most powerful debugger written and can take years to master. This book's view is enough that an engineer can work in the Windows kernel and actually get results. Having worked at Microsoft as an Escalation Engineer, I can say this book is unique and the author's knowledge is on a level of the best internal engineers, who specialize in debugging. The full power of windbg depends on your access to quality symbols and with source, makes Visual Studio look like Notepad, and if you do drivers for a living, this book is what you have been looking for.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


‹ Previous | 1 2 3 | Next ›
Most Helpful First | Newest First

This product

Advanced Windows Debugging
Advanced Windows Debugging by Daniel Pravat (Paperback - November 8, 2007)
$64.99 $46.42
In Stock
Add to cart Add to wishlist