Need to use Office 97, XP, 2003 and 2010 on the same PC

Hello there,
I need to use different versions of office product on my PC, a winXP Sp3 box. I used Office 97, XP and 2003 so far without any trouble.
Now I installed Office 2010, taking care of the "leave previous Office versions" enabled during installation and to place the 2010 files in a "Office10" folder rather than the default one. Each Office suite has its own folder too.
From now I have this problem: starting any XP or 2003 application will show up the windows installer reconfiguration window, and this takes a lot of time until the application effectively starts. If then I wish to use a 2010 app, launching it will show 
the office 2010 setup-reconfiguration window, so another couple of minutes of elaboration is needed until I can use my app.
Please someone can help me with this issue?
Thanks in advance

Hi,
Multiple versions of Microsoft Office software can be installed, if you install earliest version of Office first. Following order of installation should allow error free usage of multiple Office software versions.
First - Microsoft Office XP
Second - Microsoft Office 2003
Third - 2007 Office suites and programs
Fourth - Microsoft Office 2010 suites (32-bit versions only)
Above order applies to installation of whole Microsoft Office suite and also individual Office programs on single Windows PC.
In your case, you have installed these apps successfully, but Windows Installer Appears Every Time when you start office XP or 2003, try this:
Open the Group Policy Editor by selecting Run from the Start Menu, and typing
gpedit.msc. (If the file is missing, run mmc.exe instead. Then, select
Add/Remove Snap-in from the Console menu, click
Add, and double-click Group Policy. Click
Finish, then Close, then Ok.)
Expand the following branches:
Local Computer Policy \ Computer Configuration \ Administrative Templates \ Windows Components \ Windows Installer
Double-click Disable Windows Installer to your right, click
Enabled, and choose Always from the list. Click Ok when you're done.
The change will take effect immediately. If you added a snap in, as described above, you don't need to "save changes to the console."
Note: If you encounter an error about the Administrator Policy the next time you try to install an application, you'll have to re-enable the Windows Installer temporarily.
Also you said "If then I wish to use a 2010 app, launching it will show  the office 2010 setup-reconfiguration window". To work around this issue:
Open Run (Press Windows key + R) copy and paste the following commands one at a time and then press ENTER.
reg add HKCU\Software\Microsoft\Office\14.0\Word\Options /v NoReReg /t REG_DWORD /d 1
reg add HKCU\Software\Microsoft\Office\14.0\Excel\Options /v NoReReg /t REG_DWORD /d 1
reg add HKCU\Software\Microsoft\Office\14.0\Access\Options /v NoReReg /t REG_DWORD /d 1
NOTE: You should back-up the registry using the steps given
here before modification.

Similar Messages

  • Can I use DisplayPort (for a monitor) and Thunderbolt at the same time?

    Hi all,
    I have a mid 2011 MacBook Air 13 inch with a single Thunderbolt port.
    I have the Apple Mini DisplayPort to Dual-Link DVI Adapter cable which I am able to use to run a Dell 24 inch monitor - this cable connects to both the DisplayPort/Thunderbolt port and also a USB port on the Air.
    I want to be able to run this Dell monitor, and also run a Thunderbolt hard drive - one with 2 Thunderbolt ports.
    Is this possible?
    Can I connect the DisplayPort part of the cable to the pass-through Thunderbolt port on the hard drive, and then connect the hard drive to the Thunderbolt port on the Air?
    Thanks, for any advice :-)
    I would like to buy the Apple Thunderbolt display (which would solve this issue), but I suspect it will may refreshed soon. So I don't intend to get one until then.
    Thanks :-)

    OK,
    I have tried this myself and it does work.
    Macbook Air - connect to Seagate GoFlex Thunderbolt (Using Thunderbolt cable)
    Seagate Goflex Thunderbolt passthrough to a Dell 24 Inch monitor (using Apple Mini DisplayPort to Dual-Link DVI Adapter cable).
    Both the Seagate GoFlex and the Dell 24 inch monitor work :-)
    I am happy with this result, so I won't need to get a Thunderbolt moniter just yet - I will wait for Gen 2 :-)

  • Using more than one PU and PC for the same database

    I have a scenario described here: [http://www.seamframework.org/Community/UsingTwoParallelNestedConversationsWithParentAtomicConversation|http://www.seamframework.org/Community/UsingTwoParallelNestedConversationsWithParentAtomicConversation]
    which uses Seam, EJB3, JPA, Hibernate, Richfaces (modalPanel) and JSF.
    The question I have is the following:
    is there any negative consequence (memory consumption, performance hit, etc.) of using more than one persistence unit in the persistence.xml that points to the same EntityManagerFactory? I was thinking of having one PersistenceContext (Seam-managed PC - an extended PC which is conversation-scoped) which uses one PU and reserving the other PC for the modalPanel forms and backing beans (SFSBs).
    The reason I needed to use this solution/approach is so that when using Hibernate MANUAL flush with SMPC, I can achieve isolated synchronization of the PersistenceContext without updating values in the modalPanel forms and vice versa.
    Any tips on best practices or alternative solutions? thx.
    persistence.xml snippet:
       <persistence-unit name="boBETS">
          <provider>org.hibernate.ejb.HibernatePersistence</provider>
          <jta-data-source>java:/boBETSDatasource</jta-data-source>
          <properties>
             <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
             <!-- <property name="hibernate.hbm2ddl.auto" value="validate"/>   -->
             <property name="hibernate.show_sql" value="true"/>
             <property name="hibernate.format_sql" value="true"/>
             <property name="hibernate.generate_statistics" value="true"/>
             <property name="jboss.entity.manager.factory.jndi.name" value="java:/boBETSEntityManagerFactory"/>
             <property name="hibernate.default_catalog" value="boBETS"/>
             <property name="hibernate.default_schema" value="dbo"/>
          </properties>
       </persistence-unit>
       <!-- using boBETS2 for ListValueParamAction for now! trying to isolate the em.flush() such that we can achieve atomic conversations for the
       base form as well as the popup form! -->   
       <persistence-unit name="boBETS2">
          <provider>org.hibernate.ejb.HibernatePersistence</provider>
          <jta-data-source>java:/boBETSDatasource</jta-data-source>
          <properties>
             <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
             <!-- <property name="hibernate.hbm2ddl.auto" value="validate"/>   -->
             <property name="hibernate.show_sql" value="true"/>
             <property name="hibernate.format_sql" value="true"/>
             <property name="hibernate.generate_statistics" value="true"/>
             <property name="jboss.entity.manager.factory.jndi.name" value="java:/boBETS2EntityManagerFactory"/>
             <property name="hibernate.default_catalog" value="boBETS"/>
             <property name="hibernate.default_schema" value="dbo"/>
          </properties>
       </persistence-unit>What happens if I were to have 10 PUs and 10 PCs in the same app? Whether they're all pointing to same DB or not. What's the consequence of using "too many"?

    Yes, you can use multiple iCloud accounts in multiple User Accounts on one computer, but, as you know not multiple iTunes Match accounts. Keep in mind that the two services are not the same.
    Since you've posted your question to the iTunes Match forum, which it really doesn't pertain to, you might want to also post it to the iCloud on my Mac forum.

  • LabView 8.5 and 2010 on the same XP machine?

    Is it possible to install both version 8.5 and 2010 on XP machine? And then work on some of the projects in Labview 8.5 and on other projects in Labview 2010 without a conflict?
    How about device drivers? Which version of DAQ driver will work in both versions of Labview? 
    Thanks much for any insite,
    rita
    Solved!
    Go to Solution.

    Always install older versions first. Some toolkits don't play well with multiple versions of LabVIEW. As for DAQ: http://digital.ni.com/public.nsf/allkb/F4E76EC05118F72D8625773000672298

  • Help me !!!how to use a DataSource to play and save at the same time??

    I create a DataSource :
    DataSource ds = Manager.createDataSource(new MediaLocator("rtp://192.168.2.195:10000/audio"));
    use this DataSource to create a cloneable DataSource:
    ds = Manager.createCloneableDataSource(ds);
    use this cloneable DataSource to create two datasource "saveDataSource" and "playDataSource",playDataSourceis used to play,saveDataSource is used to save;
    DataSource playDataSource = ((SourceCloneable)ds).createClone();
    DataSource saveDataSource = ((SourceCloneable)ds).createClone();
    Player player = Manager.createRealizedPlayer(playDataSource);
    player.start();
    but i can not hear anything ,if i use ds to create a player ,i can hear the voice.
    who can help me ,THX

    Thanks you ,now I can play with a clone dataSource ,but i also have a problem about how to save the voice to a local file .
    MediaLocator audioFile = new MediaLocator("rtp://192.168.2.210:"+audioPort+"/audio");
                             DataSource ds = Manager.createDataSource(audioFile);
                             Processor processor = null;
                             processor = Manager.createProcessor(ds);
                             processor.configure();
                           boolean result = waitForState(processor, processor.Configured);
                           if (result == false)
                               System.err.println("configuring failed");
                           processor.setContentDescriptor(new ContentDescriptor(ContentDescriptor.RAW));
                           processor.realize();
                           result = waitForState(processor, processor.Realized);
                           if (result == false)
                               System.err.println("realizing failed");
                           processor.start();
                           ds = processor.getDataOutput();
                           DataSource playDataSource = Manager.createCloneableDataSource( ds );
                           String type = com.sun.media.MimeManager.getMimeType("wav");
                           type = ContentDescriptor.mimeTypeToPackageName(type);
                           Processor saveProcessor = Manager.createRealizedProcessor(new ProcessorModel(ds,null,new FileTypeDescriptor(type)));
                           Player player = javax.media.Manager.createPlayer(playDataSource);
                           DataSink dsink = Manager.createDataSink(saveProcessor.getDataOutput(), new MediaLocator("file://D:/record/1234.wav"));
                             System.out.println();
                             System.out.println("-> Playing file '" + audioFile + "'");
                             System.out.println("   Press the Enter key to exit");
                             player.start();
                             dsink.open();
                             dsink.start();
                             saveProcessor.start();i can save a file ,but it can not play.

  • Using iPod both in Windows and Mac at the same Time?

    I was wondering if it was possible to use my brand new ipod both in Mac as in Windows without having to format or restore it every time?
    The idea is to use "manually manage songs" on both Operating Systems.
    Thanks for your help!

    iPods come formatted Windows and will work on Macs and Windows. Unless you Restore it in a Mac, it will stay formatted Windows.
    If it doesn't work, put the iPod on Disk Mode and iTunes should recognize in both systems.
    If it is formatted Mac, it will not be useable on Windows, even in Disk Mode.

  • My iPad 4 says not charging but it does slowly charge . I got it replaced on sat but the new one is the same . I have tried using a different power outlet and it is the same so it appears to be an issue with the new iPad

    Can anyone help .my new iPad notes not charging when it is in fact slowly charging.  I had it replaced 2 days ago but the new one has the same issue.it would appear this is a common issue with ipad4.can anyone advise on how to get over this problem. .thanks

    Found this thread by searching the forum. I hope it helps.
    https://discussions.apple.com/thread/5471311

  • After conecting to SQLexpress 2008r2 using ODBC, access 2003 and 2010 says conection failed.

    After conecting to SQLexpress using ODBC MS access 2003 and 2010 says the conection failed with in the app. Not all users are having this issue. Unable to track down the cause. Any help would would be appearated.    

    With the miniscule of information you have given, it's not really possible to help you. At a very minimum, we need the complete error message you are getting, so that we can tell whether the reach the server and are denied access, or they don't even
    come that far.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Use one external harddrive on both pc and mac at the same time

    i bought an iomega external harddrive today
    can i use it on both mac and pc at the same times?
    for ex:
    when i plug in both computer
    i could able to read and write on the hdd on both computer
    since i format it into 4 partitions (2 journal and 2 doc)
    so i wish i can use them separately in 2 computers

    Hi Jerry_L and welocme to Discussions,
    using such USB or Firewire connected external harddrives with two computers at the same time is usually not recommended by the manufacturer.
    Doing so might lead to data-loss and the like.
    Check with the manual of that harddisk to verify.
    Using it with one computer at a time with your partitioning should be doable.
    Regards
    Stefan

  • IP over Firewire and ethernet at the same time?

    Is it possible to use both IP over Firewire and ethernet at the same time?
    I want to use my TB hard drive attached to one Mac via Firewire 800 to backup another Mac also attached to the same drive via Firewire 800. I can only mount the drive on one machine at a time so I need to share it out to the other Mac. It works great if I set it up to do strait IP over Firewire, with static IPs, but that means I can't connect to the internet because my ethernet connection on both machines becomes the secondary connection method. Similarly, if ethernet is primary then I can't connect via Firewire. Is there a way to set it up so the Macs will know which method to use depending on the IP address?
    I am using 10.5.1 on both machines.
    G5, 1.8 GHz, 15.GB RAM
    MBP, 2.4 GHz, 4GB RAM
    Thanks!

    Certainly.
    In the network control panel I set Built-in FireWire to the top of the service order list, followed by Built-in Ethernet.
    Next, I set Built-in FireWire to Configure Manually with the address 192.168.1.xxx and the Subnet Mask to 255.255.255.xxx, making sure the Subnet Mask is set the same on both machines and that the IP address is different on both machines and different from the Built-in Ethernet addresses.
    I applied the settings, turned on Sharing on both machines, then mounted whatever shared drives I needed by connecting to the other machine using the FireWire IP address.
    Now I am able to share drives using FireWire 800 - which works great when used with Time Machine - and still use my normal ethernet to surf, etc..

  • Iphone keep restart and hang at the same place

    After I deleted all contents and settings from the RESET menu. My iphone cannot switch on.
    I had tried reset by pressing On/Off button & Home button until the apple icon appears. But it does not show me the red slider bar however only shows me an image "apple icon with processing sign". That "apple icon with processing sign" keep restarting after 30 seconds.
    Please help

    hi, i did the reset all from the menu same as jassaj, but i did not like the process complete and turn it off,as i needed to use it, but then turns out it repeats the same reboot forever, please help!!!!!!!!!!!!
    i also did the recovery mode a couple of times, but still doesnt work.
    Message was edited by: fmlyhmb

  • Release notes for 2.16 states that there was a fix for alerts not being modal. We are using 3.0.6 and are experiencing the same issue; was there a regression to the modal fix. What version needs to be used to make sure that alert messages are modal?

    Release notes for 2.16 states that there was a fix for alerts not being modal. We are using 3.0.6 and are experiencing the same issue; was there a regression to the modal fix. What version needs to be used to make sure that alert messages are modal?

    We are trying to determine why alert boxes are not modal
    The fix states it's for Firefox 2.0 - 3.7a1pre
    We are using 3.0.6 not the current version of 3.6.13.
    Add-on release notes 2.16.1
    https://addons.mozilla.org/en-US/firefox/addon/foxyproxy-standard/versions/
    Repeating 2.16 release notes since 2.16 was not made available for more than a couple of hours
    Fixed bug whereby some alert boxes weren't properly parented/owned. This led to some alerts not being properly modal
    with respect to the window/dialog that issued the alert.

  • Can't terminate batch file using Ctrl+C in 2003 and 2008server

    Batch file like below:==============================================================@echo off
    set DB_USER=:INPUT_USERNAME
    if "%DB_USER%"=="" (
    set /p DB_USER=Please enter username:
    goto INPUT_USERNAME
    ================================================
    When running this bat file, can't terminate using Ctrl+C in 2003 and 2008 server. But the same bat is running normally in other windows operation system.
    Pls tell me why. Thanks in advance.
    Rocky Su

    I have tested the bat on Windows server 2003 R2 Enterprise x64 Edition SP2 and Windows server 2008 R2 Enterprise.
    Rocky Su

  • I'm from israel and i need to use my iphone Warranty Where should I send the device?

    hi,
    i'm from israel and i need to use my iphone Warranty Where should I send the device to fix some problem?

    Depends on where the device was purchased.
    If it was purchased in Israel, take it to an authorized service center in Israel.
    If it was purchased elsewhere, you'll need to take it back to the country it was purchased in for support.

  • Replace a 2003 (not R2) File Server with a 2012R2 files server and preferably keep the same machine name and IP when finished

    I am wanting to replace a 2003 (not R2) File Server with a 2012R2 file server and preferably keep the same machine name and IP when finished.  For the moment I just need some "high level" guidance, little details can be worked out once I know
    which direction I will go.  I was considering that DFS might be a way to help get through the process although when finished the 2012R2 Files server will be by itself with no other file server planned at this time.  DFS can stay installed for maybe
    future purposes but clearly I wouldn't need the DFS Replication with only one machine.
    Here's a few details of the environment....
    1.  DC's are 2012R2 but it is still 2003 DFL because the old 2003 DCs are still present.  But likely they will be gone and the DFL elevated before I start on the File Server project
    2. Nearly all machines in the facility have a shortcut on the "All Users" Desktop that points to the existing old File Server.  Editing or replacing that shortcut would be a major pain,...hence why I want to keep the same machine name at least,
    and maybe the same IP if not too much trouble.  This way the existing shortcut would continue to work with the new 2012R2 File Server.  The UNC path represented in that shortcut is also configured into one or more of our major business applications,
    futher emphasizing the need to keep the UNC path the same throughout the process.
    3. The facility runs 24/7/365 but is "light" on weekends.  The political environment is such that there is little to no tolerance for any down time at all.
    4. Would DFS (based from the 2012R2 machine) be a good tool to get where I need to go?
    Thanks for any suggestions.
    Phillip Windell

    Hi Sharon,
    I've done some more reading and have a few new ideas to run past you....
    Yes regular DFS wouldn't help and the Namespace would still be different than how it was with just the old server. However I was thinking DFS Replication could replace the purpose of RoboCopy and it would keep the two locations "in sync" until I was ready
    to flip over to the new server.  DFS Rep can exist independently of a DFS Namespace, so a Namespace is not even needed. It needs a minimum of 2003R2 for the "later & better" DFS Rep but I believe 2003 can do an "in place" upgrade to 2003R2, so I would upgrade
    the old server to 2003R2 first.  As long as the DFS Rep on 2012R2 and 2003R2 will properly interact I think that will work.
    Thanks for the reg info on the Shares.  I'm debating if editing that would reg file would really be much better than manually creating the Shares on the new server while the DFS Replication was doing its job.  I'll probably export that Key as a
    safety move whether I use it or not.
    Once the DFS Rep is fully in sync and the Shares are in place on the new server, I figure I would then:
    1. Remove the DFS Replication Object (optionally remove DFS Services completely)
    2. Rename the old File Server to something else and set it to DHCP
    3. Rename the new File Server to the name I want to use and give it the IP the old server had.
    How does that sound?
    Phillip Windell

Maybe you are looking for

  • Transfer from old hard drive to new MacBook + Antivirus

    Hi, My trusty iBook G4 finally died on me (Failing to read Logic board) and I am waiting for my replacement MacBook. My question is: Can I remove the hd from my iBook and set it up in an enclosure and then transfer all my data/ preferences over to my

  • Problem With Import

    Hi, I'm trying to import an application on to our new production environment. The import / export has worked fine on other environments but on this environment I'm getting a page not found error which doesn't tell me too much. Looking through the log

  • Automatically generating a comp for imported image sequences

    hi, i'm quite new to After Effects scripting so bear with my newbieness;) Basically i have a long list of shot folders which each contain a number of render layer folders which contains image sequences. I realised after a while that it is extremely t

  • Serieous memory problems

    Hi there, Not so long ago I installed Sonik Synth 2 on my mac...since then I have severe memoryproblems within LE7. There are no other logicsongs etc.stored in the system, but I got the message that I'm out of memory. I have 3 tracks in a song with n

  • My MacBook won't boot past the grey screen.. help!

    Today I was having a problem with Safari. For some reason, it kept restarting. This annoyed me, so I restarted my MacBook. Unfortunately, it won't boot past the grey screen, with the thing spinning in the middle. I've been into disk utility and it sa