WinDbg breakpoint stuff

For my future self, I jot down some useful WinDbg commands here. It contains standard breakpoint handling and running - just the very simple basics I should never forget. First of all, make sure you are using workspaces if you want to save the session (breakpoints, executable, etc.). Note that this document will grow over time, hopefully.

Depending on the task you might find those commands useful:

commanddescriptionexample
bmset breakpoint at symbolbm YourApplication.exe!Symbolname (supports wildcards)
bllist breakpointsbl
bcclear breakpointsbc * / bc 5-28 / bc 1 4 6
ggo / run applicationg
.reloadreload application.reload /f

That’s it,
iss