Topic Last Modified: 2012-10-02

Although the Office Customization Tool (OCT) is the primary tool for customization installation, administrators can use the Config.xml file to specify additional installation instructions that are not available in the OCT. The following customizations can only be made by using the Config.xml file:

We recommend that you use the Config.xml file to configure Lync 2013 silent installation.

By default, the Config.xml file that is stored in the core product folder (for example, \product.WW) directs Setup to install that product. For example, the Config.xml file in the following folder installs Lync 2013:

The Config.xml elements most commonly used for Lync 2013 installation are listed in the following table.

Config.xml elements

Element Description

Configuration

Top-level element (required). Contains the Product attribute, for example: Product=Lync

OptionState

Specifies how specific product features are handled during installation. Use the following attributes to prevent installation of Business Connectivity Services, which includes shared components that interfere with Outlook 2010:

  • Id="LOBiMain"

  • State="Absent"

  • Children="Force"

Display

The level of UI that Setup displays to the user. Typical attributes include the following:

  • CompletionNotice="Yes" | "No"(default)

  • AcceptEula="Yes" | "No"(default)

Logging

Options for the kind of logging that Setup performs. Typical attributes include the following:

  • Type ="Off" | "Standard"(default) | "Verbose"

  • Template=”filename.txt” (the name of the log file)

Setting

Specifies values for Windows Installer properties. Typical attributes include the following:

  • Setting Id="name" (the name of the Windows Installer property)

  • Value="value" (the value to assign to the property)

DistributionPoint

The fully qualified path of the network installation point from which the installation is to run. Includes the Location attribute:

  • Location=”path”

The following example shows a Config.xml file for a typical silent installation of Lync 2013.

Copy Code
<Configuration Product="Lync">
  <OptionState Id="LOBiMain" State="Absent" Children="Force" />
  <Display Level="None" CompletionNotice="No" AcceptEula="Yes" />
  <Logging Type="verbose" Path="%temp%" Template="LyncSetupVerbose(*).log" />
  <Setting Id="SETUP_REBOOT" Value="Never" />
  <DistributionPoint Location="\\server\share\Lync15" />
</Configuration>

Detailed information about using the Config.xml file to perform Office installation and maintenance tasks is available at http://go.microsoft.com/fwlink/p/?linkid=267514.

To customize the Config.xml file

  1. Open the Config.xml file by using a text editor tool, such as Notepad.

  2. Locate the lines that contain the elements you want to change.

  3. Modify the element entry with the silent options that you want to use. Make sure that you remove the comment delimiters, "<!--" and "-->". For example, use the following syntax:

    Copy Code
    < DistributionPoint Location="\\server\share\Lync15" />
    
  4. Save the Config.xml file.