Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I display GUID in windbg?

Tags:

guid

com

windbg

I am trying to debug some COM components and want to track down CLSID and IIDs in calls to CoCreateInstance.

I am not sure how to display GUID in windbg. Any pointers for that.

like image 213
anand Avatar asked Jun 16 '09 16:06

anand


1 Answers

Use the "display type" command:

dt GUID [address-of-guid]

For more information see the documentation.

If it is in a local variable (local to the stack frame you're in), use dv /V to dump all local variables.

like image 146
i_am_jorf Avatar answered Oct 18 '22 02:10

i_am_jorf