I would like to know when do we need to place a file under

C:\Windows\System32 or C:\Windows\SysWOW64, on a 64-bits windows system.

I had two dll's, one for 32-bit, one for 64-bit.

Logically, I thought I'd place the 32-bit dll under C:\Windows\System32, and the 64-bit dll under C:\Windows\SysWOW64.

To my surprise, it's the other way around! The 32-bit one goes into C:\Windows\SysWOW*64*, and the 64-bit dll goes into C:\Windows\System*32*.

Very confusing stuff. What's the reason behind this?

Thanks in Advance.

Ga

link|improve this question

40% accept rate
Really funny :S – SoMoS Dec 13 '11 at 14:51
Also, this: Windows looks in the current working directory as well as in the system PATH. There is no way to specify otherwise. Oh wait, there is. You can embed the search path in your DLL. It is a field that is 8 bytes long. Yes. 8 characters. – Jeroen Baert Apr 24 at 11:06
feedback

1 Answer

up vote 28 down vote accepted

I believe the intent was to rename System32, but so many applications hard-coded for that path, that it wasn't feasible to remove it.

SysWoW64 wasn't intended for the dlls of 64-bit systems, it's actually something like "Windows on Windows64", meaning the bits you need to run 32bit apps on a 64bit windows.

This article explains a bit:

"Windows x64 has a directory System32 that contains 64-bit DLLs (sic!). Thus native processes with a bitness of 64 find “their” DLLs where they expect them: in the System32 folder. A second directory, SysWOW64, contains the 32-bit DLLs. The file system redirector does the magic of hiding the real System32 directory for 32-bit processes and showing SysWOW64 under the name of System32."

Edit: If you're talking about an installer, you should really not hard-code the path to the system folder. Instead, let Windows take care of it for you based on whether or not your installer is running on the emulation layer.

link|improve this answer
6  
Ugh, I just ran into this weirdness today. What a misleading thing that they have done. – Andy White Feb 8 '11 at 20:41
2  
Ran into this today too ... so confusing - Glut 32-bit dll goes into /SysWOW64, Glut 64-bit dll goes into /System32. Someone should write that down. On the internet. – Jeroen Baert Apr 3 at 14:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.