cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Upgrade to Office XP from Office 97

Im about to upgrade our office97 to OfficeXP.

Our Office97 env. are installed on our network with files in our application server and user specific files in the users home dir. The new OfficeXP installation will be on the users local disk. The problem im having is that my OfficeXP installation wont do a new clean complete install, it will only perform an upgrade installation.

Is it possible to create a custom action that triggers an uninstall of Office97 before OfficeXP will be installed?


Thanx!
Karre
(1) Reply
Ok, so this is what you have to do

@echo off
Echo Uninstalling previous version of Office - Please wait
\\servername\shared directory\Office\Removal\offcln.exe /a /q
echo Installing Office 2003 - Please wait
\\servername\shared directory\office\setuppro.exe TRANSFORMS="\\shared drive\shared directory\office\2003.MST" /qb-
Echo Done!
echo Office XP Uninstalled >> c:\done.txt
echo Office 2003 Installed >> c:\done.txt

where the removal executable is from the Office resource kit from microsoft. This works like perfect, no problems.