If you are debugging an x64 target, you can use:
.frame /r
To view the registers in the frame. This information is based on image unwinding data, so it is fairly reliable. You can also change the context with:
.frame /c
On x86 there is no information to unwind, so this trick does not work .. frame will still show you something for registers, but it is unlikely to be correct (it will be basically just the right luck).
source share