Link to home
Start Free TrialLog in
Avatar of Swift
Swift

asked on

Office 2007 upgrade via SCCM / SMS 2007

Hi All

We are doing a test run of upgrading Office 2007 from the previous version of Office 2003. Amongst various challenges, two of them stand out, as of now!

1. If there is an any instance of word / outlook or excel already open on the user's PC, the upgrade package installation pushed via SCCM 2007 fails. In some cases, even thought Excel window isn't there but 'excel.exe' was running as process within the taskmanger of XP workstation and the upgarde failed.

Before starting the upgrade, is there a way I can force shutdown / end all office processes?

2. For installing Outlook 2007 instant search we need to install Windows Desktop Search v 4 and I need to customise it so that it ONLY replaces search for Outlook 2007 and not the base Windows XP search. Where is Windows Desktop Search customisation wizard or command line?
Avatar of drgonzo1967
drgonzo1967

Hi fahim,
For your first question you could use a BAT file to kill the running processes using TASKKILL, and then call setup.exe thereafter.  See some sample code below.
As for your second question here is a link to a Microsoft doc that should assist you in the configuration of WDS.  Hope this helps!
http://download.microsoft.com/download/8/6/2/8629CB23-6E5A-45B5-A430-99778A34CFBF/Windows%20Desktop%20Search%20Administration%20Guide.doc

-gonzo
@echo off
taskkill /F /IM winword.exe /IM excel.exe /IM outlook.exe etc.
<location of office binaries>\setup.exe

Open in new window

Hi fahim,
I also meant to mention that you will prob want to create a msp file to run with setup by using the /admin switch on setup.exe.  Sorry to leave that out on the first comment.  hth.

-gonzo
Avatar of Swift

ASKER

Thanks for the reply gonzo.

Having gone through the documentation I failed to find the steps required to customide the WDS 4 in such a way, during the install, I only use it for replacing the Instant Search within my Outlook 2007 and not to replace the search function of Windows XP in general.

Do you have any further suggestions in this regard?
Avatar of Swift

ASKER

Also, can I 'Save' the open files at their default location (if existing) from the command line before 'terminating' the associated 'exes'?
Hey fahim,
You can have a look at the below link to enable the classic search after the install.  I referenced the above link mainly for the configuration options with GP.
http://social.msdn.microsoft.com/Forums/en-US/windowsdesktopsearchdevelopment/thread/88b38085-7151-4af5-bc02-0591051800a2
Also, using the listed cmd example the open documents will not save before closing.  I would attempt to run the install after business hours and inform the users or managers of the service.  Hope this helps!

-gonzo
ASKER CERTIFIED SOLUTION
Avatar of merowinger
merowinger
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial