Reddit Reddit reviews Advanced Windows Debugging

We found 4 Reddit comments about Advanced Windows Debugging. Here are the top ones, ranked by their Reddit score.

Computers & Technology
Books
Operating Systems
Microsoft OS Guides
Windows Operating System
Advanced Windows Debugging
Check price on Amazon

4 Reddit comments about Advanced Windows Debugging:

u/Hyru · 39 pointsr/programming

Books

u/GoldenShackles · 1 pointr/programming

For those in the Windows world I recommend reading:

http://www.amazon.com/Advanced-Windows-Debugging-Mario-Hewardt/dp/0321374460/

u/AlSweigart · 1 pointr/learnprogramming

If I had known about the existence of these two books (or rather, their earlier editions) a decade ago, I would have been well on my way to being a better Windows programmer. These two are MUST READS for win32 programming (if you don't want to use .NET framework or other abstraction layers.)

Windows Internals, by Russinovich and Solomon

Windows via C/C++, by Richter and Nasarre

Again, if you want to do non-.NET Windows programming, these books are pure gold. (The older books by Charles Petzold are kind of getting out of date, but were good too.) Also, check out Raymond Chen's blog The Old New Thing for tons of cool bits of Windows dev history

EDIT: Also a must read: Advanced Windows Debugging this is a must if you want to learn how to properly debug "unmanaged" (i.e. non-.NET) applications. Also a pretty good intro to reverse engineering or cracking apps on Windows.