Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How do I detect Acrobat add-ins , plug ins are installed?

New Here ,
Jan 27, 2022 Jan 27, 2022

Is there a way to systematically detect what addins are installed in Adobe Acrobat? 

9.7K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jan 28, 2022 Jan 28, 2022

I can't think of a way in the Acrobat SDK. Of course you can examine the plug_ins folder (Plug ins folders in Mac), but this does not tell you what they are.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 01, 2022 Feb 01, 2022

It depends on what you mean to "systematically detect". One way is to just look in "Help > About third-party plugins" menu item. It lists all 3rd party plugins that have an about menu. There is also a "Help -> About Adobe plug-ins" menu item for listing the ones that come with Acrobat.

 

You can also run this JavaScript code in the Console window

 

app.plugIns.join("\n")

 

Or use it in a script for detecting plug-ins.  It lists both Adobe and Third-Party plug-ins.

 

 

Thom Parker - Software Developer at PDFScripting
Use the Acrobat JavaScript Reference early and often

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 01, 2022 Feb 01, 2022

I would like to put something in a script and run it againest all machines in the organization so I can produce report showing machine a has this plugin, machine b has this plugin, etc. It would be ran SCCM probably, from bat or vbscript or powershell. Or if I'm able to read the registry and see what plugins are enabled for Acrobat I could work that angle also. Is it possible to run the javascript code in one of the other formats, or is their an equivalent command in vbscript or powershell?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 01, 2022 Feb 01, 2022

Yes, Acrobat has a "COM/ActiveX/OLE" interface that provided a feature for running an Acrobat Script. 

You can read about it here:

https://opensource.adobe.com/dc-acrobat-sdk-docs/acrobatsdk/html2015/index.html#t=Acro12_MasterBook%...

 

 

Thom Parker - Software Developer at PDFScripting
Use the Acrobat JavaScript Reference early and often

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 01, 2022 Feb 01, 2022
LATEST

A some what simpler solution is to do what Andy suggests. Look at the contents of the Acrobat Plug-ins folder. 

 

Here's an article that describes how to find this folder. 

https://www.pdfscripting.com/public/Installing_Automation_Tools.cfm

 

 

Thom Parker - Software Developer at PDFScripting
Use the Acrobat JavaScript Reference early and often

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines