Office 2016 Pro Plus VL silent & custom install

Discussion in 'Microsoft Office' started by Nazzo, Oct 6, 2015.

  1. Nazzo

    Nazzo MDL Novice

    Aug 20, 2012
    4
    20
    0
    #1 Nazzo, Oct 6, 2015
    Last edited by a moderator: Apr 20, 2017
    For Office 2016 Pro Plus VL, i use the original setup with original config.xml. First, extract the iso. The config.xml it's in the proplus.ww folder. This is my edited config.xml:

    Code:
    <Configuration Product="ProPlus">
    
        <Display Level="basic" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
        
        <!-- <Logging Type="standard" Path="%temp%" Template="Microsoft Office Professional Plus Setup(*).txt" /> -->
    
        <!-- <USERNAME Value="Customer" /> -->
        
        <!-- <COMPANYNAME Value="MyCompany" /> -->
        
        <!-- <INSTALLLOCATION Value="%programfiles%\Microsoft Office" /> -->
        
        <!-- <LIS CACHEACTION="CacheOnly" /> -->
        
        <!-- <LIS SOURCELIST="\\server1\share\Office;\\server2\share\Office" /> -->
        
        <!-- <DistributionPoint Location="\\server\share\Office" /> -->
        
        <!-- <OptionState Id="OptionID" State="absent" Children="force" /> -->
             <OptionState Id="ACCESSFiles"  State="local" Children="force" />
             <OptionState Id="EXCELFiles"   State="local"  Children="force" />
             <OptionState Id="WORDFiles"    State="local"  Children="force" />
             <OptionState Id="OUTLOOKFiles" State="local" Children="force" />
             <OptionState Id="PPTFiles"     State="local"  Children="force" />
             <OptionState Id="PubPrimary"   State="absent" Children="force" />
             <OptionState Id="OneNoteFiles" State="absent" Children="force" />
             <OptionState Id="GrooveFiles2" State="absent" Children="force" />
             <OptionState Id="LyncCoreFiles" State="absent" Children="force" />
             <OptionState Id="VisioPreviewerFiles" State="absent" Children="force" />
    
            <Setting Id="SETUP_REBOOT" Value="Never" />
        
        <!-- <Command Path="%windir%\system32\msiexec.exe" Args="/i \\server\share\my.msi" QuietArg="/q" ChainPosition="after" Execute="install" /> -->
    
    </Configuration>
    
    

    You can exclude the apps you want. State="Absent" for exclude, "Local" for install.
    Now for silent install make a new txt and change the extension to cmd, then put it with the original setup. This is my office16.cmd:

    Code:
    setup.exe /config proplus.WW\config.xml
    To install click on office16.cmd.
     
  2. tanjiunnya

    tanjiunnya MDL Novice

    Aug 14, 2009
    9
    2
    0
    nice post, similiar to the C2R xml, but a bit different.
     
  3. Chibi ANUBIS

    Chibi ANUBIS MDL Chibi Developer

    Apr 28, 2014
    1,237
    911
    60
    #3 Chibi ANUBIS, Oct 8, 2015
    Last edited by a moderator: Apr 20, 2017
    Here is the configuration for a silent installation during the windows installation :)
    Just edit "name.ww\config.xml" in each edition :

    proplus.ww\config.xml
    Code:
    <Configuration Product="ProPlus">
    
    <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
    
    <Setting Id="SETUP_REBOOT" Value="Never" />
    
    <Setting Id="REBOOT" Value="ReallySuppress"/>
    
    </Configuration>
    prjpro.ww\config.xml
    Code:
    <Configuration Product="PrjPro">
    
    <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
    
    <Setting Id="SETUP_REBOOT" Value="Never" />
    
    <Setting Id="REBOOT" Value="ReallySuppress"/>
    
    </Configuration>
    vispro.ww\config.xml
    Code:
    <Configuration Product="VisPro">
    
    <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
    
    <Setting Id="SETUP_REBOOT" Value="Never" />
    
    <Setting Id="REBOOT" Value="ReallySuppress"/>
    
    </Configuration>
    
    
    proofkit.ww\config.xml
    Code:
    <Configuration Product="Proofkit">
    
    <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
    
    <Setting Id="SETUP_REBOOT" Value="Never" />
    
    <Setting Id="REBOOT" Value="ReallySuppress"/>
    
    </Configuration>
    SetupComplete.cmd
    Code:
    @ECHO OFF
    "%~dp0Office\setup.exe" /config "%~dp0Office\proplus.ww\config.xml"
    "%~dp0Office\setup.exe" /config "%~dp0Office\prjpro.ww\config.xml"
    "%~dp0Office\setup.exe" /config "%~dp0Office\vispro.ww\config.xml"
    "%~dp0Office\setup.exe" /config "%~dp0Office\proofkit.ww\config.xml"
    RMDIR /S /Q "%WINDIR%\Setup\Scripts"
    exit
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. jack29823785

    jack29823785 MDL Novice

    Oct 10, 2015
    1
    0
    0
    good script , i like !!:D
     
  5. Nazzo

    Nazzo MDL Novice

    Aug 20, 2012
    4
    20
    0
    mau370 read the first post again, there is a solution for you.
     
  6. mau370

    mau370 MDL Novice

    Mar 10, 2010
    10
    2
    0
    Thanks for reply.
    But the ways of using xxxconfig.xml d'nt work for me. It's probably my bad?
    Anyway i solved my Off2016 silent install by using setup.exe /admin, create the .MSP file as my needs, puit it in Office\Update, and exe
    "setup.exe /adminfile "Updates\Off2K16.MSP".
    Work perfectly.

    Regards