Tagged Questions

WoW64 (Windows 32-bit On Windows 64-bit) is a subsystem of the Windows operating system that is capable of running 32-bit applications and is included on all 64-bit versions of Windows.

learn more… | top users | synonyms

12
votes
7answers
7k views

How much memory can a 32 bit process access on a 64 bit operating system?

This is a windows question. I know under normal circumstances a 32 bit process can only access 2GB of RAM (or 3GB with a special switch in the boot.ini file). When running a 32 bit process on a 64 bit ...
11
votes
6answers
1k views

Developing and debugging mem-hogging C# apps

I have a C# app that must link with a 32-bit library and also needs to use the maximum amount of memory possible (imaging app); we run the app on XP64 desktops, thus we are using WOW64, targeting ...
10
votes
2answers
3k views

Create 64 bit registry key (non-WOW64) from a 32 bit application

I have a Visual Studio installer that is creating some registry keys: HKEY_LOCAL_MACHINE\SOFTWARE\MyApp but the registry keys it is creating are automatically appearing under Wow6432Node: ...
9
votes
4answers
9k views

How to open a WOW64 registry key from a 64-bit .NET application

My .NET application (any-CPU) needs to read a registry value created by a 32-bit program. On 64-bit Windows this goes under the Wow6432Node key in the registry. I have read that you shouldn't ...
7
votes
2answers
2k views

Why would os.path.exists(“C:\\windows\\system32\\inetsrv\\metaback”) return False even when it exists?

I've got a python program which is supposed to clean up a number of directories and one of them is C:\windows\system32\inetsrv\metaback; however, os.path.exists() returns False on that directory even ...
7
votes
4answers
11k views

Why is RegOpenKeyEx() returning error code 2 on Vista 64bit?

I was making the following call: result = RegOpenKeyEx(key, s, 0, KEY_READ, &key); (C++, Visual Studio 5, Vista 64bit). It is failing with error code 2 ("File not found") even though "regedit" ...
6
votes
4answers
571 views

SuspendThread WOW64 suspending in kernel code

EDIT: This turned out to be a bug in WOW64 - GetThreadContext() may return stale contents when the thread is suspended in long mode ring-3 (user mode). I've suggested to Microsoft to use ring-2 to ...
5
votes
1answer
302 views

Why do some programs compiled for x86 do not run under x64, while some do

I have seen that some programs which were written by me and assembled for x86 using ml.exe run fine on my Win 7 x64. I believe this is because of Wow technology. However, there are some programs (not ...
5
votes
1answer
1k views

How to enum modules in a 64bit process from a 32bit WOW process

I have a requirement to retrieve all modules of a 64bit process in a 32bit WOW process in Windows, EnumProcessModules would fail as described: If this function is called from a 32-bit application ...
5
votes
3answers
3k views

Installing drivers from NSIS installer in x64 system

I want to add support for x64 OSes to my NSIS installer. One of the installer's task is drivers installation. I've written a special NSIS plugin for this task. This plugin uses Driver Install ...
5
votes
4answers
1k views

How can I share HWND between 32 and 64 bit applications in Win x64?

MSDN tells me that handles to windows (HWND) can be shared between 32- and 64-bit applications, in Interprocess Communication (MSDN). However, in Win32 a HWND is 32 bits, whereas in 64 bit Windows it ...
4
votes
1answer
532 views

Accessing all 3 hives in the registry

Creating a 32 bit application with delphi I do not have access to all hives depending whether the application is run on a win32 or win64 windows machine. Here is a link for default access: ...
4
votes
4answers
715 views

Programatically determine if native .exe is 32-bit or 64-bit

I need to know whether a given .exe is 32-bit or a 64-bit, before I launch it. IsWow64Process is no use here, since there is no process yet. Is there some other API that will give me this information? ...
4
votes
3answers
883 views

WOW64 woes (.lnk shortcuts)

I'm using Windows 7 (x64) and Delphi 2010. I'm writing a component that will emulate the start menu. However, I've run into the following problems: If I attempt to open a shortcut (.lnk file) with ...
3
votes
1answer
216 views

Can a 32 bit User-mode driver run on top of a 64 bit OS?

I have been checking out some info about 64-bit driver development; I found that drivers have to be re-written in order to be compatible with a 64 bit OS. However, I was wondering if this also holds ...
3
votes
1answer
680 views

How to create a shared registry key for WoW64 and x64 Processes

Is there some way to create a custom (WoW64) shared registry key? By default some registry keys are shared and others are redirected (see MSDN). But I want to create a custom registry key under ...
3
votes
2answers
521 views

How can I maintain separate PATH variables for 32 and 64 bit applications?

I am moving to a 64 bit Windows workstation, and will be developing both 32 and 64 bit applications. I will need to maintain different PATH environment variables when running a 32 vs. 64 bit version ...
3
votes
2answers
1k views

Translating 32-bit paths to their WOW64 equivalents

Is there any function that I can call to in a 32-bit app that would convert the paths that it thinks it's using to and from the paths that it's actually using? (For instance, call it to convert the ...
2
votes
1answer
180 views

TSQLConnection.GetFieldNames not working on 64-bit machine

I have Delphi 2005 code that I use to retrieve database table field names. It works with no problems on 32-bit machines (Windows XP, Windows Vista, Windows 7). However it does not return any field ...
2
votes
1answer
265 views

32bit DLLs using MSDTC/oracle XA on 64 bit Win2k3

I have a COM+ application (mostly vb6 based), that I need running on a 64-bit system. It's supposed to communicate with an oracle database (10g, 32bit). Everything works fine when I disable XA, but ...
2
votes
1answer
104 views

How to generate a 32bit only Managed C++ Assembly

I need to compile a DLL in Managed C++ in Visual Studio 2005. I want it with 32Bit corflag on. See http://illuminatedcomputing.com/blog/?p=117 for reference. By default, I choose Win32 platform ...
2
votes
1answer
230 views

64bit windows registry - why is %ProgramFiles% converted to %ProgramFiles(x86)%?

After running following codes, in 32bit process, the data %ProgramFiles% converted automatically. HKEY hSubKey; DWORD dwState; RegCreateKeyEx(HKEY_CURRENT_USER, L"TestKey", NULL, NULL, ...
2
votes
1answer
589 views

Do 32 bit programs run relatively slower on 64 bit OS against when they are natively run in 32 bit OS [closed]

I was reading about WOW 64 here http://en.wikipedia.org/wiki/WOW64 and learnt that its a layer in 64 bit Windows OS to run 32 bit programs. So can I assume that 32 bit programs run relatively slower ...
2
votes
1answer
338 views

Can a WoW64 process create/fork/etc pure x64 process?

I wish to call a x64 exe from x86 process/exe, for example: open x86 cmd : %windir%\SysWoW64\cmd.exe start notepad: notepad.exe <- it will be x86 notepad (according to taskmanager = *) Is it ...
2
votes
2answers
669 views

How to determine if a registry key is redirected by WOW64?

Is it possible to determine whether or not a given registry key is redirected? My problem is that I want to enumerate registry keys in both the 32-bit and 64-bit registry views in a generic manner ...
2
votes
1answer
390 views

in x64 Windows is there a way to run a Runtime.exec() process avoiding 'Registry redirection'

Our app runs in jvm 32 bit, even when in windows x64. Now, at some point, I need to access some registry values, for example HKEY_LOCAL_MACHINE/SOFTWARE/mycomp. I do this by executing cmd /C reg ...
2
votes
4answers
825 views

Launching Shell Links (LNKs) from WOW64

Our 32-Bit application launches Windows LNK files (Shell Links) via ShellExecute. When it tries to "launch" a link to a 64-Bit binary (such as the "Internet Explorer (64-Bit)" shortcut in Start Menu) ...
1
vote
0answers
25 views

SetWindowsHookEx to block 64-bit WM_HOTKEY from 32-bit

Our application requires running in a "secure kiosk mode" on Windows. We have a variety of ways we block various actions. One thing that we do is listen for the use of hotkeys using SetWindowsHookEx ...
1
vote
0answers
66 views

Is it still true that there is no need in x64 version if the app is stand-alone and won't benefit from being 64-bit?

Since Windows Server 2008 R2, WoW64 is an optional feature which can be uninstalled. It means that it is possible to have 64-bit only server, that cannot execute 32-bit code. I'm trying to think about ...
1
vote
0answers
191 views

solution using only-32bit dll and only-64bit dll

1) i am wanting to use a 32-bit dll that is not available as 64-bit dll 2) another constraint: Im wanting to also use another dll the 32bit version of which does not work in WOW64 so the second dll ...
1
vote
3answers
254 views

Opening %SystemRoot%\system32\calc.exe from a 32-bit process redirects to another file. Which, why and how?

I'm currently writing some test code in C++ that messes around with PE files to understand its file format structure. My project is set to compile to 64 bit. In my code I open ...
1
vote
1answer
475 views

Wow64DisableWow64FsRedirection and GetNamedSecurityInfo - unavoidable ERROR_BAD_EXE_FORMAT?

I am using Wow64DisableWow64FsRedirection / Wow64RevertWow64FsRedirection to disable and restore WOW-64 file redirection (making system32\ to syswow64\ and some registry changes). The MSDN page warns ...
1
vote
0answers
208 views

Freetype2 failing under WoW64

I built a tff to D3D texture function using freetype2(2.3.9) to generate grayscale maps from the fonts. it works great under native win32, however, on WoW64 it just explodes (well, FT_Done and ...
1
vote
2answers
496 views

How to launch a Vb script that runs in 64 bit mode from a vbscript running under Wow64

I have a VB script that's being forced to run in Wow64 mode. I'd like to have it start either another script, or itself, in native 64 bit mode. Is there anyway to do that? The initial script is ...
1
vote
3answers
957 views

HKEY_CURRENT_USER\Software\Wow6432Node\Classes vs HKEY_CURRENT_USER\Software\Classes\Wow6432Node

The question is very simple, what's the difference between HKEY_CURRENT_USER\Software\Wow6432Node\Classes and HKEY_CURRENT_USER\Software\Classes\Wow6432Node?
1
vote
1answer
272 views

X64 installer using Won64 node registry

I am using InstallShield 2008 premium edition. I created one basicMSI project only to target x64 platforms. I changed summary property to "x64". But this installer is writing registry entries in ...
1
vote
1answer
173 views

Use 64 bits COM objects from 32 bits process

I'm using the virtualbox api that uses COM on windows. If you have a 64 bit OS it will install the 64 bit version and the COM interfaces will be accessible to 64 bit clients but not to 32 bit ones. ...
1
vote
4answers
1k views

WOW64: get x64 %CommonProgramFiles% from 32 bit process

Queries I tried: ExpandEnvironmentStrings("%COMMONPROGRAMFILES%"), GetSpecialPath(CSIDL_PROGRAM_FILES_COMMON). All resolve to (typically) c:\\Program Files (x86)\\Common Files from my 32 bit app. I ...
1
vote
1answer
299 views

How do I prevent my Win32 process starting on WOW64?

I've got a Win32 process that is compiled and packaged in both 32-bit (x86) and 64-bit (x64) variants. I'd like the x86 variant to refuse to run on a 64-bit version of Windows (i.e. WOW64). Is there ...
1
vote
2answers
734 views

Writting settings to the registry, shared by x64 and x86 apps (bypassing registry redirection)

I want to write application settings in the registry, that are shared by x86 and x64 applications running on Windows 7 x64. The best practice is to save them in ...
1
vote
1answer
468 views

32-bit cluster.exe on 64 bit Windows 2008

We have an installation program that runs in Perl 32-bit. This program needs to get information on cluster resources, so it runs cluster.exe (using backticks) and parse its output. On Windows Server ...
1
vote
2answers
703 views

Getting executable file name from handle in Windows x64

I have a c# application that is compiled as x86 so it runs as a 32bit application on Windows 7 x64. While the application is running, I need to detect the executable name of the active window. On ...
1
vote
2answers
908 views

SHGetSpecialFolderPath, how to access 64bit CSIDL from 32bit application

Is there a way from a 32bit application running on a 64bit system to have access to the default folders for 64bit applications? For example, using SHGetSpecialFolderPath with CSIDL_PROGRAM_FILES from ...
1
vote
3answers
3k views

How to uninstall IIS 7 under WOW64?

In a Web server installer that I'm maintaining, we keep track of whether or not the installer had installed IIS 7 and/or ASP (under Vista or later) and save an appropriate value to the Registry if so. ...
1
vote
1answer
930 views

PostMessage params from 32-bit C# to 64-bit C++

I am having problem with the contents of a pointer passed as the wParam from a 32-bit C# application is changing along the way to a 64-bit C++ process. There are two processes 32.exe (in C#) and ...
1
vote
3answers
310 views

I can't build a library that needs WOW64 Api

I'm fixing a bug with Windows Vista 64 bits of a 32bit application, when I try to use the function Wow64DisableWow64FsRedirection(...) the compiler says 'undeclared identifier...'. I'm including the ...
1
vote
1answer
489 views

64/32 bit standard driver translation in Windows

The question is basically a follow up to this thread: http://stackoverflow.com/questions/602587/using-a-64-bit-driver-in-a-32-bit-program-windows As I learned when I have a 64 bit driver, which is ...
0
votes
1answer
17 views

Why doesn't YASM doesn't recognize the keyword “offset”?

I'm trying to compile Heaven's Gate: yasm-1.2.0-win64.exe "Heaven's Gate.asm" with the code below: global main section .text main: bits 32 db 9ah ;call 33:in64 dd ...
0
votes
5answers
325 views

What is the highest number Python 2.* x86 (i.e.32bit) id() function on Windows x64 can return?

What is the highest number Python 2.6's x86 id() function can return? I presume the ceiling must be the amount of memory any 32-bit application can see which must be: 232, i.e. 4294967296? (Which ...
0
votes
0answers
42 views

CBT hooking dll supporting both 32 and 64 bits

I have a design problem, and I'm not sure which is the correct way to deal with it... I have an unmanaged dll which install a CBT Hook and makes some process, and calls then a registered Callback in ...

1 2