Had the need to exclude Lync and Access out of the installation of office 365 Proplus using the following script,
<Configuration>
<Add SourcePath="C:\Office15" OfficeClientEdition="32">
<Product ID="O365ProPlusRetail" >
<Language ID="en-us" />
<ExcludeApp ID="Access" />
<ExcludeApp ID="SharePointDesigner" />
<ExcludeApp ID="Groove" />
<ExcludeApp ID="Lync" />
</Product>
</Add>
<Updates Enabled="False" />
<Display Level="None" AcceptEULA="TRUE" />
<Logging Level="Standard" Path="%temp%" />
</Configuration>
I now have the need to install lync but do not wish to reinstall office.
With Visio and Project I user a script like
<Configuration>
<Add SourcePath="\\Server\Share" OfficeClientEdition="32" >
<Product ID="VisioProRetail">
<Language ID="en-us" />
</Product>
</Add>
<Updates Enabled="False" />
<Display Level="None" AcceptEULA="TRUE" />
<Logging Level="Standard" Path="%temp%" />
</Configuration>
Is there a Product ID for Lync and Access that will allow Standalone installs
Regards
James Deland