Skip to main content
Participant
August 29, 2018
Answered

Mac OS: Check if Adobe is installed

  • August 29, 2018
  • 2 replies
  • 17227 views

I am a complete beginner in Mac OS. I am currently working on a USB stick that will run on Windows and Mac. In both cases, a batch script should run first, which checks whether the Adobe Reader is installed or not. If not, then an attached HTML with installation notes should be opened.

So my question is, how to detect on Mac OS if the Reader is installed?

Or is it always installed at the same location like: /Applications/Adobe Acrobat Reader DC.app/Contents/MacOS/AdobeReader

For Windows I found that:

windows - Automatically find installation directory of application and run batch command inside folder - Super User

Thank you!

This topic has been closed for replies.
Correct answer Test Screen Name

You are nearly correct. Adobe Reader or Acrobat Reader, Acrobat Pro, Acrobat Standard (on Windows only). You can actually try using "open -a" in a command line to open an application by name wherever it is. Mac has an application database.

2 replies

Test Screen NameCorrect answer
Legend
August 30, 2018

You are nearly correct. Adobe Reader or Acrobat Reader, Acrobat Pro, Acrobat Standard (on Windows only). You can actually try using "open -a" in a command line to open an application by name wherever it is. Mac has an application database.

m47545545Author
Participant
August 31, 2018

Thank you!

Legend
August 29, 2018

Before answering, why specifically do you care? What you may not know is that EVERY Mac has a PDF reader already. Why not just use it? Similar issues apply on Windows. Only people with Windows 7 MIGHT NOT have a PDF viewer already.

Also, what if someone has Acrobat Pro (paid for)? Telling them to install Reader May make them Cross.

Finally, there is no such thing as autorun in Mac.

m47545545Author
Participant
August 30, 2018

My colleague uses the Adobe catalog function to make several hundred PDFs more searchable. And if I understood that correctly, then the user must use Adobe Reader to be able to use this functionality. With the system PDF readers this probably doesn't work.

I know that there is no autorun. The batch script have to be executed by the user or by an application.