I learned a new favorite kernel debugger trick tonight. I regularly have a kernel debugger attached while working on my driver, but tonight experienced a crash in my user mode service. Not wanting to set up a new debugger inside the vm, I googled around and came up with the following:
!gflag +soe
This windbg command makes all exceptions go to the kernel mode debugger first. Voila!