View Single Post
 
Old 09-17-2009, 07:22 AM
TJ311 TJ311 is offline Windows 7 Office 2007
Novice
 
Join Date: Sep 2009
Posts: 2
TJ311 is on a distinguished road
Default Install Access 2007 after initial Office install.

In our organization we were not ready to switch to Access 2007 at the same time we were upgrading to Office 2007 so I originally created a package to deploy Office Enterprise 2007 to our company. Months later, we're now ready to upgrade from Access 2003 to Access 2007 but I'm having some issues with the upgrade.

I used the OCT initially and am trying to find a silent way to install just Access 2007 and remove Access 2003 without affecting our users much. I've "almost" got it. Instead of using the OCT again, I'm creating a custom .xml which does get Access 2007 installed but doesn't remove 2003. Is there something I can put in the xml to force uninstall or remove 2003?

Here's what my xml looks like now:
Code:
<Configuration Product="Enterprise">    

    <Display Level="none" CompletionNotice="yes" SuppressModal="yes" AcceptEula="yes" />     
    <PIDKEY Value="XXXXXXXXXXXXXXXXXXXXXX" />
    <USERNAME Value="User" />
    <COMPANYNAME Value="Our Company" /> 

    <!--
    ################################################################
    2007 OFFICE SYSTEM
    INSTALL NEWER VERSIONS
    ################################################################
    -->

<!-- Remove Access 2003 -->
    <Setting Id="REMOVEPREVIOUS" Value="ACCESSFiles" />

<!-- Access -->
    <OptionState    State="Local"     Children="Force" Id="ACCESSFiles" />

<!-- Excel -->
    <OptionState    State="Local"     Children="Force" Id="EXCELFiles" />

<!-- Groove -->
    <OptionState    State="Local"     Children="Force" Id="GrooveFiles" />

<!-- InfoPath -->
    <OptionState    State="Local"    Children="Force" Id="XDOCSFiles" />

<!-- OneNote -->
    <OptionState    State="Local"     Children="Force" Id="OneNoteFiles" />

<!-- OneNote :: Integration :: Internet Explorer -->
    <OptionState    State="Local"    Children="Force" Id="OneNoteToIEAddin" />

<!-- OneNote :: Integration :: Windows Mobile devices -->
    <OptionState    State="Local"    Children="Force" Id="OneNoteMobile" />

<!-- Outlook -->
    <OptionState    State="Local"     Children="Force" Id="OUTLOOKFiles" />

<!-- PowerPoint -->
    <OptionState    State="Local"     Children="Force" Id="PPTFiles" />

<!-- Publisher -->
    <OptionState    State="Absent"    Children="Force" Id="PubPrimary" />

<!-- Word -->
    <OptionState    State="Local"     Children="Force" Id="WORDFiles" />

<!-- Visio Preview -->
    <OptionState    State="Local"     Children="Force" Id="VisioPreviewerFiles" />

<!-- Shared -->
    <OptionState    State="Local"     Children="Force" Id="SHAREDFiles" />
<!-- Shared :: Proofing :: Deutsch -->
    <OptionState    State="Absent"    Children="Force" Id="ProofingTools_1031" />
<!-- Shared :: Proofing :: Ukranian -->
    <OptionState    State="Absent"    Children="Force" Id="ProofingTools_1058" />
<!-- Shared :: Microsoft Office Download ActiveX control -->
    <OptionState    State="Local"    Children="Force" Id="TCDRegistration" />

<!-- Tools -->
    <OptionState    State="Local"     Children="Force" Id="TOOLSFiles" />
<!-- Tools :: System Information -->
    <OptionState    State="Local"    Children="Force" Id="MsInfoFiles" />
<!-- Tools :: Integration :: Office Server -->
    <OptionState    State="Local"    Children="Force" Id="OSESupp" />
<!-- Tools :: Integration :: Internet Explorer -->
    <OptionState    State="Local"    Children="Force" Id="RefIEBarFiles" />
<!-- Tools :: WebDAV -->
    <OptionState    State="Local"    Children="Force" Id="WebDriveFiles" />

<SetupUpdates
   CheckForSUpdates="Yes"
   SUpdateLocation="\\trusty\public\Office\Updates"/>
<Setting Id="SETUP_REBOOT" Value="IfNeeded" />

        

</Configuration>
Thanks in advance for ANY help!
Reply With Quote