Share via

Issue with installing 64 bit Office

Myron Palmer 0 Reputation points
2026-04-19T19:27:47.2933333+00:00

I have been working for two days to install a 64bit version of office 2019 on my computer. I have used every tool available that I can find to erase all vestiges of any 32bit versions on my computer and get the same response that there is a 32bit version installed on my computer. Have had two sessions with chat first case# 7101424445 and they installed an iso on my computer with both versions. I click on setup 64bit and same problem. Both support people were very polite and used the control app to take over my computer to try to fix the problem but so far no joy.

Microsoft 365 and Office | Install, redeem, activate | For home | Windows
0 comments No comments

2 answers

Sort by: Most helpful
  1. Marcin Policht 91,965 Reputation points MVP Volunteer Moderator
    2026-04-19T19:55:52.4233333+00:00

    As far as I can tell, the issue likely persists because the standard installer performs a global check for any 32-bit registry keys or leftover components from integrated apps like Visio or Project. Even if the main applications are gone, shared architectural files in the Program Files (x86) directory or specific keys in the WOW6432Node registry hive can trigger the blockade. To bypass this check, try using the Office Deployment Tool (ODT). This method allows you to force a 64-bit architecture regardless of what the standard setup executable detects on the system.

    First, download the Office Deployment Tool from the official Microsoft Download Center and extract its contents to a folder on your desktop named ODT. Inside that folder, create a new text file and rename it to install.xml. Open this file with Notepad and paste the following configuration code into it, then save the file.

    <Configuration>
      <Add OfficeClientEdition="64" Channel="PerpetualVL2019">
        <Product ID="ProPlus2019Volume">
          <Language ID="en-us" />
        </Product>
      </Add>
      <Display Level="Full" AcceptEULA="TRUE" />
    </Configuration>
    

    Next, execute the installation through an elevated command prompt to ensure it has the permissions required to write to the registry and system folders. Click your Start menu, type cmd, right-click the Command Prompt result, and select Run as Administrator. Navigate to your ODT folder using the change directory command. If your folder is on the desktop, the command will look like the following example.

    cd %USERPROFILE%\Desktop\ODT
    

    Once you are inside the correct directory, run the following command to initiate the 64-bit installation process. This command tells the deployment tool to ignore the standard setup logic and follow the specific instructions in your XML file.

    setup.exe /configure install.xml
    

    If you receive an error regarding the Product ID, it may be because you have a Retail version rather than a Volume License version. In that specific case, you would need to change the Product ID in the XML file from ProPlus2019Volume to ProPlus2019Retail.


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin

    Was this answer helpful?

    1 person found this answer helpful.

  2. Stefan Blom 342.2K Reputation points MVP Volunteer Moderator
    2026-04-19T19:54:10.15+00:00

    See if Project or Visio is installed on your PC. If you find either of these products, uninstall them. Does that fix the issue?

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.