Jump to content

Recommended Posts

Posted

Hi,

 

I hope you can help me, I have been asked to install Office 2010 onto the network and make sure I keep the old version aswell.

 

I was wondering if any of you know if there is a way to dispatch Office 2010 over the network while keeping our Office 2003 installed aswell.

 

Thanks,

 

Andy

Posted

If you use the /admin switch on the setup.exe command, you can build an MSP. One of the dialogues of the wizardy-thing is whether to uninstall older versions. You can then drop the MSP in the updates folder or specify it with the /adminfile switch.

 

I would highly recommend NOT running the two side-by-side as bad things will happen. If you need both, virtualise one (or both) using something like App-V.

  • Thanks 1
Posted

thank you for your help guys, it is greatly appreciated, I shall try both of them when I get time.

 

Probably next week now.

 

Thanks

 

Andy

Posted

If 2010 is anything like 2007, it wont play well with 2003.

 

Basically, every time you open a 2003 office app after a 2007 (10?) then you have to go throught the whole "Configuring office 2003" stuff

 

Not tested 2010 but 2007 you could deploy 2007 with Group Policy.

Posted

My colleague has both installed and he does not suffer such problems. Office 2010 and 2003 seem to play well together so far.

 

Maybe that is good news for some people then?

  • 4 weeks later...
Posted

Hi Guys,

 

I’m the person who asked for Office to be installed by anerney, but I got all excited and had to intervene. Here is the arduous process I had to go through to get it installed on my Server 2003, Windows XP network.

 

 

1. Create an MSP file with all customisations and settings, using Office Customisation Tool (OCT), then File – Save As.

 

[serverShare]\Office14\setup.exe /admin

 

2. Create a startup script which starts the installation of Office and uses the MSP file created for the settings etc. I have included a quick check to see if Office 2010 is already installed before installing.

 

if EXIST "C:\program files\microsoft office\office14" (
goto :EOF
) ELSE (
if EXIST "C:\Program Files\Microsoft Office 2010" (
goto :EOF
) ELSE (
\\[serverShare]\office14\setup.exe /adminfile "\\[serverShare]\office14\config-pupil.msp"
)
)

 

3. Create a group policy object, which uses this startup script to install Office 2010.

 

Computer Config | Windows Settings | Scripts | Startup

 

4. Finally, activation! As we use MAK keys we have to activate every installation of Office 2010. This logoff script I have created automates this process. I will leave this activation script running for a few days and then disable it.

 

C:\WINDOWS\system32\cscript.exe "%ProgramFiles%\Microsoft Office 2010\Office14\ospp.vbs" /act

 

One problem with the activation is that after Office is activated and the logoff script tries to run again it takes about 2 minutes. So I created yet another script to create a flag once activated, then it can be checked against to stop the activation trying to run for a second time. Here it is:

 

if EXIST "C:\program files\microsoft office\office14" (
if EXIST "C:\program files\microsoft office 2010-Activated" (
goto :EOF
) ELSE (
	cd \
	cd c:\
	cd "c:\Program Files\"
	md "C:\Program Files\Microsoft Office 2010-Activated"
	cd \
	cd \
	cd \
	C:\WINDOWS\system32\cscript.exe "%ProgramFiles%\Microsoft Office\Office14\ospp.vbs" /act
	)
) ELSE (
if EXIST "C:\Program Files\Microsoft Office 2010" (
if EXIST "C:\program files\microsoft office 2010-Activated" (
goto :EOF
) ELSE (
	cd \
	cd c:\
	cd "c:\Program Files\"
	md "C:\Program Files\Microsoft Office 2010-Activated"
	cd \
	cd \
	cd \
	C:\WINDOWS\system32\cscript.exe "%ProgramFiles%\Microsoft Office 2010\Office14\ospp.vbs" /act
	)
) ELSE (
goto :EOF
)
)

 

Of course you could then insert a line at the end to install Office if these folders do not exist, but we are using two different MSP files and group policies, Staff and Pupil, they differ greatly!

 

I’m sure there is probably a much better way of doing this, but this works for us. Any questions guys, feel free to ask.

 

Cheers,

 

Peter J Hughes

Network Manager

Colne Park High School

  • Thanks 3
  • 4 weeks later...
  • 1 year later...
Posted
Start up script do not start on microsoft 7 enterprise

 

I'm testing Windows 7 Pro now and have managed to get the startup script installing Office. I'm having a little problem with the software installing in the background and letting the log-on screen appear and users log-on mid installation. The software installs fine, but i think that if a user tries to open one of the programs the installation will fail.

 

I've tried using start /wait and extended the maximum wait time for group policy scripts, but it doesn't stop the log-on screen from coming up.

 

Anyone experienced this or used the start /wait successfully before?

Posted

might do better doing it as a shutdown script?

 

ive found its hit and mis as startup cos sophos interferes/gets there 1st and then office setup cant load grrrr

Posted
I would only ever do it using something like App-V - this way the two applications are totaly isolated from each other preventing the conflicts that will happen reguardless of any other fancy deployment methods.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...