user42992
user42992

Reputation: 163

Installing WinDbg 32-bit on a 64-bit system

I've installed WinDBG on Windows 7 64-bit, however, I want to install the 32 bit version, not the 64 bit version. I found this link on the internet: https://social.msdn.microsoft.com/forums/windowsdesktop/en-us/cd004535-75f1-48ee-9176-574b344ddce1/how-to-install-windbg-32bit-on-64bit-system

Following the accepted answer, I do not have that path on my computer. I have:

C:\Program Files\Microsoft SDKs\Windows\v7.1\Redist

However, there is no "Debugging Tools for Windows" folder in that direcotry like the answer says, only the VC folder. WinDBG is installed and working. What can I do? Thanks.

Upvotes: 0

Views: 3380

Answers (1)

Ari0nhh
Ari0nhh

Reputation: 5920

You could download Windows SDK ISO file (https://msdn.microsoft.com/en-us/windows/desktop/bg162891.aspx) and install 32bit version from there. Also you could use !wow64exts.sw command to debug win32 process or dump using x64 version.

Upvotes: 0

Related Questions