ALL:
Does anyone know of any documentation for the new
commands/metacommands/extension commands for 6.6.7.5? There does not
seem to be any in the WinDbg package, nor does google turn up anything
(at least for the few commands I tried).
In particular, I wondering about .copysym, but I would like to check
out all the new features before I decide on whether to upgrade or not.
Thanks,
MM
The docs that come with 6.6.07.5 have all of the documentation that has
been written so far. There’s always a doc lag, so it doesn’t have many
of the commands that were added in the past two or three point releases.
.copysym [-l]
copies all loaded symbol files to the given path via Win32’s CopyFile
API. -l forces symbols to load as it goes.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Martin O’Brien
Sent: Thursday, July 20, 2006 2:30 PM
To: Kernel Debugging Interest List
Subject: [windbg] Documentation for new commands for 6.6.7.5…
ALL:
Does anyone know of any documentation for the new
commands/metacommands/extension commands for 6.6.7.5? There does not
seem to be any in the WinDbg package, nor does google turn up anything
(at least for the few commands I tried).
In particular, I wondering about .copysym, but I would like to check out
all the new features before I decide on whether to upgrade or not.
Thanks,
MM
—
You are currently subscribed to windbg as: xxxxx@winse.microsoft.com To
unsubscribe send a blank email to xxxxx@lists.osr.com
Drew,
I know it would be work, but could someone when a new release comes out
put out a short description of the new commands on the newsgroups (such as
you did for .copysym) as a stopgap until the documentation catches up? I
suspect a few lines like below is enough for each command.
–
Don Burn (MVP, Windows DDK)
Windows 2k/XP/2k3 Filesystem and Driver Consulting
http://www.windrvr.com
Remove StopSpam from the email to reply
“Drew Bliss” wrote in message
news:xxxxx@windbg…
The docs that come with 6.6.07.5 have all of the documentation that has
been written so far. There’s always a doc lag, so it doesn’t have many
of the commands that were added in the past two or three point releases.
.copysym [-l]
copies all loaded symbol files to the given path via Win32’s CopyFile
API. -l forces symbols to load as it goes.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Martin O’Brien
Sent: Thursday, July 20, 2006 2:30 PM
To: Kernel Debugging Interest List
Subject: [windbg] Documentation for new commands for 6.6.7.5…
ALL:
Does anyone know of any documentation for the new
commands/metacommands/extension commands for 6.6.7.5? There does not
seem to be any in the WinDbg package, nor does google turn up anything
(at least for the few commands I tried).
In particular, I wondering about .copysym, but I would like to check out
all the new features before I decide on whether to upgrade or not.
Thanks,
MM
—
You are currently subscribed to windbg as: xxxxx@winse.microsoft.com To
unsubscribe send a blank email to xxxxx@lists.osr.com
DREW:
First of all, thanks. If you wouldn’t mind, how about these:
.dumpdebug
.f
.idle_cmd
Thanks,
MM
>> xxxxx@winse.microsoft.com 2006-07-20 17:34 >>>
The docs that come with 6.6.07.5 have all of the documentation that
has
been written so far. There’s always a doc lag, so it doesn’t have
many
of the commands that were added in the past two or three point
releases.
.copysym [-l]
copies all loaded symbol files to the given path via Win32’s CopyFile
API. -l forces symbols to load as it goes.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Martin O’Brien
Sent: Thursday, July 20, 2006 2:30 PM
To: Kernel Debugging Interest List
Subject: [windbg] Documentation for new commands for 6.6.7.5…
ALL:
Does anyone know of any documentation for the new
commands/metacommands/extension commands for 6.6.7.5? There does not
seem to be any in the WinDbg package, nor does google turn up anything
(at least for the few commands I tried).
In particular, I wondering about .copysym, but I would like to check
out
all the new features before I decide on whether to upgrade or not.
Thanks,
MM
—
You are currently subscribed to windbg as: xxxxx@winse.microsoft.com
To
unsubscribe send a blank email to xxxxx@lists.osr.com
—
You are currently subscribed to windbg as: unknown lmsubst tag
argument: ‘’
To unsubscribe send a blank email to xxxxx@lists.osr.com
I concur with Don. Really all that is needed to get started is a few
lines.
MM
>> xxxxx@acm.org 2006-07-20 17:38 >>>
Drew,
I know it would be work, but could someone when a new release comes
out
put out a short description of the new commands on the newsgroups (such
as
you did for .copysym) as a stopgap until the documentation catches up?
I
suspect a few lines like below is enough for each command.
–
Don Burn (MVP, Windows DDK)
Windows 2k/XP/2k3 Filesystem and Driver Consulting
http://www.windrvr.com
Remove StopSpam from the email to reply
“Drew Bliss” wrote in message
news:xxxxx@windbg…
The docs that come with 6.6.07.5 have all of the documentation that
has
been written so far. There’s always a doc lag, so it doesn’t have
many
of the commands that were added in the past two or three point
releases.
.copysym [-l]
copies all loaded symbol files to the given path via Win32’s CopyFile
API. -l forces symbols to load as it goes.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Martin O’Brien
Sent: Thursday, July 20, 2006 2:30 PM
To: Kernel Debugging Interest List
Subject: [windbg] Documentation for new commands for 6.6.7.5…
ALL:
Does anyone know of any documentation for the new
commands/metacommands/extension commands for 6.6.7.5? There does not
seem to be any in the WinDbg package, nor does google turn up anything
(at least for the few commands I tried).
In particular, I wondering about .copysym, but I would like to check
out
all the new features before I decide on whether to upgrade or not.
Thanks,
MM
—
You are currently subscribed to windbg as: xxxxx@winse.microsoft.com
To
unsubscribe send a blank email to xxxxx@lists.osr.com
—
You are currently subscribed to windbg as: xxxxx@evitechnology.com
To unsubscribe send a blank email to xxxxx@lists.osr.com
.dumpdebug doesn’t take any options, it just shows raw info about the
dump being debugged.
.f+ and .f- increment and decrement the current frame count.
Essentially they are .frame @$frame + 1 and .frame @$frame - 1.
.idle_cmd [/d] [] sets a command to run when a debugger UI
goes to an idle state (basically first-thing once per break-in). /d
deletes any existing idle command.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Martin O’Brien
Sent: Thursday, July 20, 2006 2:51 PM
To: Kernel Debugging Interest List
Subject: RE: [windbg] Documentation for new commands for 6.6.7.5…
DREW:
First of all, thanks. If you wouldn’t mind, how about these:
.dumpdebug
.f
.idle_cmd
Thanks,
MM
>>> xxxxx@winse.microsoft.com 2006-07-20 17:34 >>>
The docs that come with 6.6.07.5 have all of the documentation that has
been written so far. There’s always a doc lag, so it doesn’t have many
of the commands that were added in the past two or three point releases.
.copysym [-l]
copies all loaded symbol files to the given path via Win32’s CopyFile
API. -l forces symbols to load as it goes.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Martin O’Brien
Sent: Thursday, July 20, 2006 2:30 PM
To: Kernel Debugging Interest List
Subject: [windbg] Documentation for new commands for 6.6.7.5…
ALL:
Does anyone know of any documentation for the new
commands/metacommands/extension commands for 6.6.7.5? There does not
seem to be any in the WinDbg package, nor does google turn up anything
(at least for the few commands I tried).
In particular, I wondering about .copysym, but I would like to check out
all the new features before I decide on whether to upgrade or not.
Thanks,
MM
—
You are currently subscribed to windbg as: xxxxx@winse.microsoft.com To
unsubscribe send a blank email to xxxxx@lists.osr.com
—
You are currently subscribed to windbg as: unknown lmsubst tag
argument: ‘’
To unsubscribe send a blank email to xxxxx@lists.osr.com
—
You are currently subscribed to windbg as: xxxxx@winse.microsoft.com To
unsubscribe send a blank email to xxxxx@lists.osr.com
I’ll suggest this to our doc folks but currently I don’t believe they
have any extra resources (otherwise the docs would be more up-to-date).
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Don Burn
Sent: Thursday, July 20, 2006 2:38 PM
To: Kernel Debugging Interest List
Subject: Re:[windbg] Documentation for new commands for 6.6.7.5…
Drew,
I know it would be work, but could someone when a new release comes
out put out a short description of the new commands on the newsgroups
(such as you did for .copysym) as a stopgap until the documentation
catches up? I suspect a few lines like below is enough for each
command.
–
Don Burn (MVP, Windows DDK)
Windows 2k/XP/2k3 Filesystem and Driver Consulting
http://www.windrvr.com Remove StopSpam from the email to reply
“Drew Bliss” wrote in message
news:xxxxx@windbg…
The docs that come with 6.6.07.5 have all of the documentation that has
been written so far. There’s always a doc lag, so it doesn’t have many
of the commands that were added in the past two or three point releases.
.copysym [-l]
copies all loaded symbol files to the given path via Win32’s CopyFile
API. -l forces symbols to load as it goes.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Martin O’Brien
Sent: Thursday, July 20, 2006 2:30 PM
To: Kernel Debugging Interest List
Subject: [windbg] Documentation for new commands for 6.6.7.5…
ALL:
Does anyone know of any documentation for the new
commands/metacommands/extension commands for 6.6.7.5? There does not
seem to be any in the WinDbg package, nor does google turn up anything
(at least for the few commands I tried).
In particular, I wondering about .copysym, but I would like to check out
all the new features before I decide on whether to upgrade or not.
Thanks,
MM
—
You are currently subscribed to windbg as: xxxxx@winse.microsoft.com To
unsubscribe send a blank email to xxxxx@lists.osr.com
—
You are currently subscribed to windbg as: xxxxx@winse.microsoft.com
To unsubscribe send a blank email to xxxxx@lists.osr.com
DREW:
Thanks,
MM
>> xxxxx@winse.microsoft.com 2006-07-20 20:03 >>>
.dumpdebug doesn’t take any options, it just shows raw info about the
dump being debugged.
.f+ and .f- increment and decrement the current frame count.
Essentially they are .frame @$frame + 1 and .frame @$frame - 1.
.idle_cmd [/d] [] sets a command to run when a debugger UI
goes to an idle state (basically first-thing once per break-in). /d
deletes any existing idle command.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Martin O’Brien
Sent: Thursday, July 20, 2006 2:51 PM
To: Kernel Debugging Interest List
Subject: RE: [windbg] Documentation for new commands for 6.6.7.5…
DREW:
First of all, thanks. If you wouldn’t mind, how about these:
.dumpdebug
.f
.idle_cmd
Thanks,
MM
>>> xxxxx@winse.microsoft.com 2006-07-20 17:34 >>>
The docs that come with 6.6.07.5 have all of the documentation that
has
been written so far. There’s always a doc lag, so it doesn’t have
many
of the commands that were added in the past two or three point
releases.
.copysym [-l]
copies all loaded symbol files to the given path via Win32’s CopyFile
API. -l forces symbols to load as it goes.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Martin O’Brien
Sent: Thursday, July 20, 2006 2:30 PM
To: Kernel Debugging Interest List
Subject: [windbg] Documentation for new commands for 6.6.7.5…
ALL:
Does anyone know of any documentation for the new
commands/metacommands/extension commands for 6.6.7.5? There does not
seem to be any in the WinDbg package, nor does google turn up anything
(at least for the few commands I tried).
In particular, I wondering about .copysym, but I would like to check
out
all the new features before I decide on whether to upgrade or not.
Thanks,
MM
—
You are currently subscribed to windbg as: xxxxx@winse.microsoft.com
To
unsubscribe send a blank email to xxxxx@lists.osr.com
—
You are currently subscribed to windbg as: unknown lmsubst tag
argument: ‘’
To unsubscribe send a blank email to xxxxx@lists.osr.com
—
You are currently subscribed to windbg as: xxxxx@winse.microsoft.com
To
unsubscribe send a blank email to xxxxx@lists.osr.com
—
You are currently subscribed to windbg as: unknown lmsubst tag
argument: ‘’
To unsubscribe send a blank email to xxxxx@lists.osr.com