Right-click the DML Windbg

You all know and love DML, those hyperlinks appear in WinDbg output, allowing you thinking about aimlessly click when the meaning of the collapse of the code. But, you know DML even better in Windows10 version of WinDbg do? Support has been added for the game to change the function: Right-click!
Yes, you can now right-click DML output and open a new menu option:

 

This menu includes a link to open in a new window function, while pop up a command browser window that displays your output:

 

Then, you can dock or float the window, in order to facilitate access to the output while continuing analysis (of course, command the browser has existed for some time, but this will only make it easier!).

Even better, you can also get command-specific menu items. My favorite example is the x command. If you right-click an entry, you can choose to set a breakpoint on the specified function.

 

Unfortunately, you only valid in the case of a private symbol, but how cool? !
I can not find any documentation on how to add your own context menu item, so I did some spelunging. Right-click an item after I perform a memory dump WinDbg process each string. When searching for output, I find the content you're looking for:

<link cmd=”u fffff80061909850″><altlink name=”Set Breakpoint [bp]” cmd=”bp fffff80061909850″>OsrIsolate!IsolNetworkCleanup</link>

altlink label is to achieve this know-how. In the process of using it, you can also set up multiple links to a DML altlink mark, right-click for more options. The DML string a little crazy, but the end result is very cool.

Now, right-click it continue! If you find any other command with a cool right-click options, please tell me.

Guess you like

Origin www.cnblogs.com/yilang/p/12164985.html