Last active
August 29, 2015 14:04
-
-
Save cmittendorf/c9cf71adfc7aeb4bc413 to your computer and use it in GitHub Desktop.
Show codesign information for an application. You may download a signed (of course) version here: http://h1152756.serverkompetenz.net/SharedStuff/Show%20CodeSign%20Information.zip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on open theFiles | |
repeat with aFile in theFiles | |
set appPath to POSIX path of aFile | |
set codeSignInformation to do shell script "codesign -vd '" & appPath & "' 2>&1" | |
display dialog codeSignInformation with title ("codesign -vd " & appPath) buttons {"Ok"} default button 1 | |
end repeat | |
end open | |
on run | |
open (choose file with multiple selections allowed) | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment