why windbg command start with . or !
Asked Answered
P

2

16

Is there any difference between . and ! ?

Piebald answered 27/10, 2009 at 6:43 Comment(0)
E
27

There are different kinds of commands in WinDbg.

Regular commands, e.g. kb apply to the debugging session. E.g. show stack dump etc.

Meta commands are prefixed with a dot, e.g. .load. Meta commands apply to the debugger itself. E.g. load extensions, show help and so forth.

Extension commands are prefixed with an exclamation mark, e.g. !analyze and !dumpheap are defined in debugger extensions (DLLs that provide additional functionality).

Empty answered 27/10, 2009 at 6:46 Comment(0)
M
0

Meta command prefixed with dot(.) are designed to configure or query debugger

Extension commands are prefixed with an exclamation mark(!) are used to invoke windbg plugin

Mamoun answered 5/7, 2018 at 4:55 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.