Skip to main content
Adobe Acrobat - Add Installation Logging to the 'Pro' Install
  1. Patch My PC/
  2. Products/
  3. Adobe Acrobat/

Adobe Acrobat - Add Installation Logging to the 'Pro' Install

Michael Escamilla
Author
Michael Escamilla
Table of Contents

Patch My PC has options to enable ‘Installation Logging’ for product that support generating their own ‘Log File’ during installation.

The Patch My PC ‘Adobe Acrobat’ product does NOT have the ‘Installation Logging’ option avaialble. But that doesn’t mean that it can be added manually as the installation can support it through the underlying MSI installer.

Check if a Product supports ‘Installation Logging’
#

You can validate if the Patch My PC product supports the ‘Installation Logging’ feature in either the ‘Publisher’ or ‘Cloud’:

Cloud
#

When in the Cloud Portal, on the ‘Summary’ tab of the deployment, check the ‘Installation Logging’ section. If it says No logging switch found for this app, then the product does not support the ‘Installation Logging’ feature.

Adobe Acrobat - No Installation Logging Option in Cloud

Publisher
#

When in the Publisher, Right-Click on the product, and if the ‘Manage Installation Logging’ option is grayed out like below, then the product does not support the ‘Installation Logging’ feature.

Adobe Acrobat - No Installation Logging Option in Publisher

Add ‘Installation Logging’ to ‘Adobe Acrobat’
#

The Adobe Acrobat installation uses the ‘setup.exe’ file, but you can pass MSI parameters to the underlying MSI installer by using the ‘/msi’ switch.

See the Adobe Acrobat Documentation here: MSI and Cmd-line examples

At the bottom of the ‘MSI switches’ section, you see the /msi switch that can be used to pass parameters to the underlying MSI installer.

Adobe Acrobat - MSI Switch Documentation

The syntax of the additional command line parameter will be:

/msi /l*v "<FolderPath>\<LogFileName>.log"
Caution

Make sure the folder path you specify exists on the device before the installation starts, otherwise the installation may fail.

You can either use a folder path that will always exist, or use a Pre-Script to validate/create the folder path.

Cloud
#

In the Cloud Poral, this will be added in the ‘Additional Argument’ section under ‘Install Parameters’ on the ‘Configuration’ tab of the deployment.

Example Path and FileName
/msi /l*v "C:\Windows\Temp\AdobeAcrobat.msi.log"
Adobe Acrobat - Add Installation Logging in Cloud

Publisher
#

In the Publisher, Right-Click on the product, and select ‘Modify Command Line’

Adobe Acrobat - Modify Command Line in Publisher

Then add the additional command line parameter in the ‘Additional Argument’ section.

Example Path and FileName
/msi /l*v "C:\Windows\Temp\AdobeAcrobat.msi.log"
Adobe Acrobat - Add Installation Logging in Publisher

Trying it out
#

When the installation runs, the ‘PatchMyPC-ScriptRunner.log’ will show the additional arguments and how it builds the full command line for the installation.

Adobe Acrobat - Installation Logging in ScriptRunner Log

And you should see the log file generated in the specified location.

Adobe Acrobat - Installation Log File Generated

Notes
#

  • This will not generate a log file for the uninstallation. Patch My PC currently only supports passing additional arguments during installation, not uninstallation.