Now that Office 2010 also comes in a 64bit install, where in the registry do you find out if the version of Office installed is 32bit or 64bit?
|
feedback
|
|
From TechNet article on 64-bit editions of Office 2010:
and elsewhere in the same article:
| ||||
|
feedback
|
|
I've tested Otaku's answer and it appears that the Outlook bitness value is set even when Outlook is not installed, even though the article referenced does not clearly indicate that this would be the case. | |||||||||||
feedback
|
|
I don't have a key called bitness in either of these folders. I do have a key called "default" in both of these folders and the value is "unset" My computer came with office 2010 starter (I assume 64 bit). I removed it and tried to do a full install of 32 bit office. I keep getting the following message. the file is incompatible, check to see whether you need x86 or x64 version of the program. any advice for me? | |||
|
feedback
|
|
You can search the registry for {90140000-0011-0000-0000-0000000FF1CE}. If the bold numbers start with 0 its x86, 1 is x64 For me it was in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\14.0\Registration{90140000-0057-0000-0000-0000000FF1CE} HTH Clatonh | |||
|
feedback
|
|
@clatonh: this is the path of the registry on my PC: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\14.0\Registration{90140000-002A-0000-1000-0000000FF1CE} and it's definitely a 32-bit-installation on a 64-bit OS. | |||
feedback
|
|
Regret to say, but Both Otacku's and @clatonh's methods aren't working for me - neither have Outlook Bitness nor {90140000-0011-0000-1000-0000000FF1CE} in registry (for 64-bit Office without Outlook installed). The only way I have found, though, not via the registry, is to check bitness for one of the Office executables with the use of the Windows API function GetBinaryType (since Windows 2000 Professional). For example, you can check the bitness of Winword.exe, which path is stored under Here is the MFC code fragment:
| ||||
|
feedback
|
|
I found this approach: If HKLM\Software\WOW6432Node exists then Windows is 64-bit. If HKLM\Software\WOW6432Node\Microsoft\Office exists, then Office is 32-bit. If HKLM\Software\WOW6432Node\Microsoft\Office does not exist, but HKLM\Software\Microsoft\Office does exist, then Office is 64-bit. If HKLM\Software\WOW6432Node does not exist, then Windows and Office are 32-bit. Source: Technet Forums | |||
feedback
|
|
I have win 7 64 bit + Excel 2010 32 bit. The registry is HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\14.0\Registration{90140000-002A-0000-1000-0000000FF1CE} So this can tell bitness of OS, not bitness of Office | |||
|
feedback
|
|
I've previously blindly followed the answer based on the MSDN docs. Today, this turned out to be less than required. On a machine with Office Home and Student installed, which doesn't include Outlook, | |||
|
feedback
|
|
I gather from the below (Per Wikipedia) that if the program is installed, on your C: drive, under Program Files it is a 64 bit version. However; if it is installed under Program Files (x86) it is a 32 bit installation. "On 64-bit versions of Windows, there are two folders for application files; the %ProgramFiles% folder contains 64-bit programs, and the %ProgramFiles(x86)% folder (called '\Program Files (x86)' on US-English systems) contains 32-bit programs." | |||
|
feedback
|