Office 2010 with 2007 question

Discussion in 'Application Software' started by Pasta88, May 31, 2010.

  1. Pasta88

    Pasta88 MDL Expert

    Jun 17, 2009
    1,332
    44
    60
    Can I install office 2010 if I already have office 2007 on my pc? If it is possible, will there be any interference between the 2?

    thx
     
  2. whisker27

    whisker27 MDL Novice

    Aug 3, 2009
    5
    0
    0
    You can use both version side by side. For different architecture, the methods will differ. Pls try as below;

    (1) Office 2010 x86 & Office 2007 x86 - Office 2010 setup will ask if you want to upgrade or custom install. Do custom install, put your files in different folder from Office 2007. All your office docs will be defaulted to Office 2010. To default it to Office 2007, just rerun the Office 2007 setup.

    (2) Office 2010 x64 & Office 2007 x86 - Office 2010 x64 will not install when Office 2007 or older versions are present in your system. To install it, you need to uninstall all the older versions. After that run setup for Office 2010 first then run setup for Office 2007 or older version.

    One point to take note is while almost all different version of Office applications can co-exist in the same environment, only one version of Outlook can be installed at any time in the system. Hopefully these help.
     
  3. xiezhoupeng351_

    xiezhoupeng351_ MDL Junior Member

    Jun 2, 2010
    55
    7
    0
    You can choose 'upgrade' option. That's no problem. I have tried.
     
  4. mateuszd

    mateuszd MDL Member

    Mar 22, 2010
    200
    6
    10
    Is there a way to avoid the setup starting up when switching form Word 2007 to Word 2010?
    You know what I mean ... "Please wait while Office XXXX is being configured" box.

    I haven't installed them together yet because that used to happen with earlier versions of Office coexisting together and I just predict it might happen when I get Office 2007 and 2010 together (what about when you mix architectures?).
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. wla001

    wla001 MDL Novice

    Jul 24, 2009
    1
    0
    0
    #5 wla001, Jun 3, 2010
    Last edited by a moderator: Apr 20, 2017
    set NoRereg for Office 2007

    Yes, "NoRereg" must be set for Word 2007 and for other Office 2007 programs if needed. For Word / Office 2010 no changes are needed. I have tried this and it works as expected.

    Add to a .reg file and execute: (no difference for 32 or 64 bit Windows)

    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Word\Options]
    "NoRereg"=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Excel\Options]
    "NoRereg"=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\Options]
    "NoRereg"=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\PowerPoint\Options]
    "NoRereg"=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Access\Options]
    "NoRereg"=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Publisher\Options]
    "NoRereg"=dword:00000001
    
    [HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Infopath\Options]
    "NoRereg"=dword:00000001
    
    Or execute this from a cmdline:

    Code:
    reg add HKCU\Software\Microsoft\Office\12.0\Word\Options /v NoReReg /t REG_DWORD /d 1
    reg add HKCU\Software\Microsoft\Office\12.0\Excel\Options /v NoReReg /t REG_DWORD /d 1
    reg add HKCU\Software\Microsoft\Office\12.0\Outlook\Options /v NoReReg /t REG_DWORD /d 1
    reg add HKCU\Software\Microsoft\Office\12.0\PowerPoint\Options /v NoReReg /t REG_DWORD /d 1
    reg add HKCU\Software\Microsoft\Office\12.0\Access\Options /v NoReReg /t REG_DWORD /d 1
    reg add HKCU\Software\Microsoft\Office\12.0\Publisher\Options /v NoReReg /t REG_DWORD /d 1
    reg add HKCU\Software\Microsoft\Office\12.0\Infopath\Options /v NoReReg /t REG_DWORD /d 1