March 2006 Entries

Book Review – Windows Server 2003 Security

Windows Server 2003 Security Roberta Bragg 4 stars (out of 5) This book covers a wide range of security topics: authentication & authorization application security NTFS security and EFS (encrypting file system) active directory public key infrastructure remote access, IPSec, & SSL patching and support backups auditing & monitoring Three types of information are covered: background on how security technologies work, how to implement security, and management processes. The book works best...

WinDbg / SOS Cheat Sheet

Here are the WinDbg / SOS commands I talked about at Code Camp NY. These are the basic commands to get you going with WinDbg / SOS. Starting, Attaching, Executing and Exiting Start -> All Programs -> Debugging Tools for Windows -> WinDbg F6 attach to process Ctrl-Break interrupt debugee .detach detach from a process g continue debugee execution q exit WinDbg Getting Help ? help on commands that affect the debugee .help help on commands that affect the debugger .hh command view the on line...