Tagged Questions

0
votes
1answer
32 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. …
0
votes
1answer
69 views

How do I delete a registry entry in Windows x64 in the 64 bit tree without using RegDeleteKeyEx in C++?

I'm working on an 32 installer that has to run on environments ranging from Win XP upwards. We have a problem where we have to remove a registry entry on the x64 section of the reg …
1
vote
2answers
510 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 …
1
vote
3answers
520 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 yo …
0
votes
2answers
151 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 CSID …
1
vote
1answer
114 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 …
4
votes
7answers
1k 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 …
1
vote
1answer
307 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. …
0
votes
2answers
309 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 …
1
vote
3answers
111 views

I can’t build a library that needs WOW64 Api

Hi, 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 …
8
votes
6answers
434 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 W …
1
vote
2answers
233 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)" shor …
0
votes
1answer
174 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 …
0
votes
2answers
326 views

How to optimize compiling a 32 bit application in Visual C++ 2005 on a 64 bit windows sever 2008

I have just installed a build server with a 64 bit windows server 2008 for continuous integration. The reason I choose a 64 bit server was to have more than ~3Gb of RAM. I had ho …
2
votes
2answers
2k 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") ev …