Home > Mac administration, Mac OS X > Clearing the quarantine extended attribute from downloaded applications

Clearing the quarantine extended attribute from downloaded applications

When I’m packaging an application for deployment, I normally download the latest version from the vendor. If it’s a drag-and-drop install, where the application is a self-contained bundle, it will get the com.apple.quarantine extended attribute associated with it.

The quarantine attribute is added by the OS so that it can ask for user confirmation the first time the downloaded program is run. Gatekeeper in Lion and Mountain Lion also uses the com.apple.quarantine attribute to determine if an application should be checked (and blocked if needed.)

To avoid issues with both unwanted messages and Gatekeeper, I normally clear this attribute as part of my packaging. Here’s how to check to see if your application has the com.apple.quarantine attribute associated with it:

1. Open Terminal

2. Run the following command:

xattr /path/to/MyApp.app

If the com.apple.quarantine attribute is associated with the application, you should see the following output:

computername:Applications username$ xattr /path/to/MyApp.app
com.apple.quarantine
computername:Applications username$

Note: Other attributes may also be listed, with com.apple.FinderInfo being a common one.

To remove the quarantine attribute, you would then run the following command:

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

That will recursively remove the com.apple.quarantine attribute from the application. The -r option will allow the quarantine attribute of all files inside the application to be selected, while the -d option causes the given attribute name (and associated value) to be removed.

  1. Jeremy
    November 21, 2012 at 3:31 am

    I like to use find to make this more efficient, and I have a script that does it to my downloads folder periodically.

    find ~/Downloads -xattrname com.apple.quarantine -exec xattr -r -d com.apple.quarantine {} \;

    Typed on iPhone, so beware any odd misspellings. 😉

    • September 16, 2015 at 11:19 am

      Jeremy, it should not be necessary to do that. Apple removes the attribute the first time you launch an application in your downloaded folder. Removing it before that circumvents this measure. Then you might as well disable quarantining completely (http://hints.macworld.com/article.php?story=20091208050655947).

  2. March 20, 2018 at 1:25 pm

    How do you do it in french %

  3. Gary
    February 19, 2019 at 4:43 pm

    I’m having quite a bit of trouble with the quarantine extended metadata being added when I create a file using AppleScriptObjC createFileAtPath on Mojave. Is there anything one can do about that?

  1. No trackbacks yet.

Leave a comment