Hi!
I have a driver that have many versions (on field).
I keep my versions history in a tree look like this:
C:\History\Version\1.0\Sym
C:\History\Version\2.0\Sym
C:\History\Version\3.0\Sym
…
C:\History\Version\25.0\Sym
and etc…
When Sym directory holds the pdb and the binary image
of my driver (the symbols).
I wonder if there is a way to define the WinDbg that
it should search for symbols actually in the whole
tree?
Now I need to define my symbol path as following:
“C:\History\Version\1.0\Sym;C:\History\Version\2.0\Sym
;C:\History\Version\3.0\Sym”…
Is there a way to give the WinDbg something like
“C:\History\Version*.*” ??
Thanks
Alon
Do you Yahoo!?
Plan great trips with Yahoo! Travel: Now over 17,000 guides!
http://travel.yahoo.com/p-travelguide
Have you tried creating your symbol store using, symstore.exe ? That way
you will need only one path.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/debug/b
ase/using_symstore.asp
-g
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Alon Elhanani
Sent: Wednesday, April 20, 2005 12:12 PM
To: Kernel Debugging Interest List
Subject: [windbg] Symbol Path Tree
Hi!
I have a driver that have many versions (on field).
I keep my versions history in a tree look like this:
C:\History\Version\1.0\Sym C:\History\Version\2.0\Sym
C:\History\Version\3.0\Sym … C:\History\Version\25.0\Sym
and etc…
When Sym directory holds the pdb and the binary image
of my driver (the symbols).
I wonder if there is a way to define the WinDbg that
it should search for symbols actually in the whole
tree?
Now I need to define my symbol path as following:
“C:\History\Version\1.0\Sym;C:\History\Version\2.0\Sym
;C:\History\Version\3.0\Sym”…
Is there a way to give the WinDbg something like
“C:\History\Version*.*” ??
Thanks
Alon
Do you Yahoo!?
Plan great trips with Yahoo! Travel: Now over 17,000 guides!
http://travel.yahoo.com/p-travelguide
You are currently subscribed to windbg as: xxxxx@wipro.com To
unsubscribe send a blank email to xxxxx@lists.osr.com
Hi!
Can you please tell me what is the simplest way to use the SymStore,
relaying on the example I gave with my symbol directory structure?
Thanks
Alon
wrote in message news:xxxxx@windbg…
Have you tried creating your symbol store using, symstore.exe ? That way
you will need only one path.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/debug/b
ase/using_symstore.asp
-g
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Alon Elhanani
Sent: Wednesday, April 20, 2005 12:12 PM
To: Kernel Debugging Interest List
Subject: [windbg] Symbol Path Tree
Hi!
I have a driver that have many versions (on field).
I keep my versions history in a tree look like this:
C:\History\Version\1.0\Sym C:\History\Version\2.0\Sym
C:\History\Version\3.0\Sym … C:\History\Version\25.0\Sym
and etc…
When Sym directory holds the pdb and the binary image
of my driver (the symbols).
I wonder if there is a way to define the WinDbg that
it should search for symbols actually in the whole
tree?
Now I need to define my symbol path as following:
“C:\History\Version\1.0\Sym;C:\History\Version\2.0\Sym
;C:\History\Version\3.0\Sym”…
Is there a way to give the WinDbg something like
“C:\History\Version*.*” ??
Thanks
Alon
__________________________________
Do you Yahoo!?
Plan great trips with Yahoo! Travel: Now over 17,000 guides!
http://travel.yahoo.com/p-travelguide
—
You are currently subscribed to windbg as: xxxxx@wipro.com To
unsubscribe send a blank email to xxxxx@lists.osr.com
Hi Alon,
I just add this to my post build steps:
symstore add /s “y:\Safend Symbols” /t “Safend Protector” /f $(OutDir)
Shahar
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Alon Elhanani
Sent: Thursday, April 21, 2005 6:30 PM
To: Kernel Debugging Interest List
Subject: Re:[windbg] Symbol Path Tree
Hi!
Can you please tell me what is the simplest way to use the SymStore,
relaying on the example I gave with my symbol directory structure?
Thanks
Alon
wrote in message news:xxxxx@windbg…
Have you tried creating your symbol store using, symstore.exe ? That way you
will need only one path.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/debug/b
ase/using_symstore.asp
-g
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Alon Elhanani
Sent: Wednesday, April 20, 2005 12:12 PM
To: Kernel Debugging Interest List
Subject: [windbg] Symbol Path Tree
Hi!
I have a driver that have many versions (on field).
I keep my versions history in a tree look like this:
C:\History\Version\1.0\Sym C:\History\Version\2.0\Sym
C:\History\Version\3.0\Sym … C:\History\Version\25.0\Sym and etc…
When Sym directory holds the pdb and the binary image of my driver (the
symbols).
I wonder if there is a way to define the WinDbg that it should search for
symbols actually in the whole tree?
Now I need to define my symbol path as following:
“C:\History\Version\1.0\Sym;C:\History\Version\2.0\Sym
;C:\History\Version\3.0\Sym”…
Is there a way to give the WinDbg something like “C:\History\Version*.*” ??
Thanks
Alon
__________________________________
Do you Yahoo!?
Plan great trips with Yahoo! Travel: Now over 17,000 guides!
http://travel.yahoo.com/p-travelguide
—
You are currently subscribed to windbg as: xxxxx@wipro.com To
unsubscribe send a blank email to xxxxx@lists.osr.com
—
You are currently subscribed to windbg as: xxxxx@safend.com To unsubscribe
send a blank email to xxxxx@lists.osr.com
Let’s say again (for the example)
I have N versions - With binaries (.sys files) + symbols (.pdb file)
They are placed:
C:\Versions\Ver1\Sym
C:\Versions\Ver2\Sym
C:\Versions\Ver3\Sym
.
.
.
C:\Versions\VerN\Sym
Can you give me exact instraction what should I do?
Thanks
Alon
“Shahar Talmi” wrote in message news:xxxxx@windbg…
> Hi Alon,
> I just add this to my post build steps:
> symstore add /s “y:\Safend Symbols” /t “Safend Protector” /f $(OutDir)
>
> Shahar
>
> -----Original Message-----
> From: xxxxx@lists.osr.com
> [mailto:xxxxx@lists.osr.com] On Behalf Of Alon Elhanani
> Sent: Thursday, April 21, 2005 6:30 PM
> To: Kernel Debugging Interest List
> Subject: Re:[windbg] Symbol Path Tree
>
> Hi!
>
> Can you please tell me what is the simplest way to use the SymStore,
> relaying on the example I gave with my symbol directory structure?
>
> Thanks
>
> Alon
>
> wrote in message news:xxxxx@windbg…
> Have you tried creating your symbol store using, symstore.exe ? That way
you
> will need only one path.
>
> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/debug/b
> ase/using_symstore.asp
>
> -g
>
>
> -----Original Message-----
> From: xxxxx@lists.osr.com
> [mailto:xxxxx@lists.osr.com] On Behalf Of Alon Elhanani
> Sent: Wednesday, April 20, 2005 12:12 PM
> To: Kernel Debugging Interest List
> Subject: [windbg] Symbol Path Tree
>
>
> Hi!
>
> I have a driver that have many versions (on field).
> I keep my versions history in a tree look like this:
> C:\History\Version\1.0\Sym C:\History\Version\2.0\Sym
> C:\History\Version\3.0\Sym … C:\History\Version\25.0\Sym and etc…
>
> When Sym directory holds the pdb and the binary image of my driver (the
> symbols).
>
> I wonder if there is a way to define the WinDbg that it should search for
> symbols actually in the whole tree?
> Now I need to define my symbol path as following:
> “C:\History\Version\1.0\Sym;C:\History\Version\2.0\Sym
> ;C:\History\Version\3.0\Sym”…
> Is there a way to give the WinDbg something like “C:\History\Version*.*”
??
>
> Thanks
>
> Alon
>
>
>
> __________________________________
> Do you Yahoo!?
> Plan great trips with Yahoo! Travel: Now over 17,000 guides!
> http://travel.yahoo.com/p-travelguide
>
> —
> You are currently subscribed to windbg as: xxxxx@wipro.com To
> unsubscribe send a blank email to xxxxx@lists.osr.com
>
>
>
> —
> You are currently subscribed to windbg as: xxxxx@safend.com To
unsubscribe
> send a blank email to xxxxx@lists.osr.com
>
>
Have you checked out the ‘symstore.exe /?’ output?
/r Add files or directories recursively.
/s Store Root directory for the symbol store.
/f File Network path of files or directories to add.
Jason
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Alon Elhanani
Sent: Thursday, April 21, 2005 12:40 PM
To: Kernel Debugging Interest List
Subject: Re:[windbg] Symbol Path Tree
Let’s say again (for the example)
I have N versions - With binaries (.sys files) + symbols (.pdb file)
They are placed:
C:\Versions\Ver1\Sym
C:\Versions\Ver2\Sym
C:\Versions\Ver3\Sym
.
.
.
C:\Versions\VerN\Sym
Can you give me exact instraction what should I do?
Thanks
Alon
“Shahar Talmi” wrote in message news:xxxxx@windbg…
> Hi Alon,
> I just add this to my post build steps:
> symstore add /s “y:\Safend Symbols” /t “Safend Protector” /f $(OutDir)
>
> Shahar
>
> -----Original Message-----
> From: xxxxx@lists.osr.com
> [mailto:xxxxx@lists.osr.com] On Behalf Of Alon Elhanani
> Sent: Thursday, April 21, 2005 6:30 PM
> To: Kernel Debugging Interest List
> Subject: Re:[windbg] Symbol Path Tree
>
> Hi!
>
> Can you please tell me what is the simplest way to use the SymStore,
> relaying on the example I gave with my symbol directory structure?
>
> Thanks
>
> Alon
>
> wrote in message news:xxxxx@windbg…
> Have you tried creating your symbol store using, symstore.exe ? That
way
you
> will need only one path.
>
>
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/debug/b
> ase/using_symstore.asp
>
> -g
>
>
> -----Original Message-----
> From: xxxxx@lists.osr.com
> [mailto:xxxxx@lists.osr.com] On Behalf Of Alon Elhanani
> Sent: Wednesday, April 20, 2005 12:12 PM
> To: Kernel Debugging Interest List
> Subject: [windbg] Symbol Path Tree
>
>
> Hi!
>
> I have a driver that have many versions (on field).
> I keep my versions history in a tree look like this:
> C:\History\Version\1.0\Sym C:\History\Version\2.0\Sym
> C:\History\Version\3.0\Sym … C:\History\Version\25.0\Sym and etc…
>
> When Sym directory holds the pdb and the binary image of my driver
(the
> symbols).
>
> I wonder if there is a way to define the WinDbg that it should search
for
> symbols actually in the whole tree?
> Now I need to define my symbol path as following:
> “C:\History\Version\1.0\Sym;C:\History\Version\2.0\Sym
> ;C:\History\Version\3.0\Sym”…
> Is there a way to give the WinDbg something like
“C:\History\Version*.*”
??
>
> Thanks
>
> Alon
>
>
>
> __________________________________
> Do you Yahoo!?
> Plan great trips with Yahoo! Travel: Now over 17,000 guides!
> http://travel.yahoo.com/p-travelguide
>
> —
> You are currently subscribed to windbg as: xxxxx@wipro.com
To
> unsubscribe send a blank email to xxxxx@lists.osr.com
>
>
>
> —
> You are currently subscribed to windbg as: xxxxx@safend.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