Ask Different is a question and answer site for power users of Apple hardware and software. It's 100% free, no registration required.

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

I've got my Security preferences set to allow apps downloaded from "Mac App Store and identified developers." When I try to open an unsigned app:

open xyz.app

I see the following:

App can't be opened

Usually, I right-click on the app and click "Open". This brings up a similar dialogue, but this one includes an "open anyway"-type button:

App can't be opened, with open button

Is there a way to do this only using the open command -- something like:

open --even-if-unsigned xyz.app
share|improve this question
up vote 22 down vote accepted
  1. Create and add a Gatekeeper label to the app. (‘Approved’ is an arbitrary string.)

    spctl --add --label "Approved" /path/to/xyz.app
    
  2. Approve all apps with the label.

    spctl --enable --label "Approved"
    

    This only needs to be done once and adding the same named label to apps in the future automatically enables their access.

  3. Open the app as usual.

    open xyz.app
    

For more information about spctl (SecAssessment system policy security), see the man page.

share|improve this answer
2  
Ah, a new addition to the list of things that I formerly only knew how to do GUI-ly, and now can do on the command line! Thanks! – L Spice yesterday

You could strip the quarantine from the app:

xattr -r -d com.apple.quarantine /path/to/xyz.app

You may want/need to use sudo for that command, depending on permissions.

Then Gatekeeper isn't involved, at all. Of course, that also means that the signature isn't verified, which removes an important safety feature.

share|improve this answer
    
I love this answer, too. It's a pity I can only pick one! – bonh 3 hours ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.