For me it is doing it on every video file from my network share, that is ~30TB of content. So for me doing that xattr <file> thing isn't really viable...
Can you post a simple guide how to do it. ThanksThe directions by dolphin842 on this thread worked for me. It took me a while to figure out how to do it but now that I have it set up, you just right click on all the files that have problems, select the service and done.
Can you post a simple guide how to do it. Thanks
Can you post a simple guide how to do it. Thanks
on run {input, parameters}
tell application "Terminal"
activate
set filesString to ""
repeat with file_ in input
set filesString to filesString & " " & quoted form of (POSIX path of file_)
end repeat
do script "xattr -r -d com.apple.quarantine" & filesString
end tell
return input
end run
Well, hot damn, thanks! Worked here.1.) Open Automator. It should be in your "Applications" folder. Or hit Command+Spacebar and type automator to find it using Spotlight.
...
Yes, I have some lag as well especially when the computer woke up after an hour or two there are some lag for the first 10 seconds. Also, I use the invert colours shortcut often and now there is a delay when I activate it and it can make crash chrome as well when I do this.I'll add my voice to the chorus. 10.13, upgrade install, and this is annoying the hell out of me. Beyond the "verifying' problem, has anyone else noticed that all finder actions are just sliiiiightly delayed? Navigation, info pane, quick view, there's a tiny lag on every action.
I'll add my voice to the chorus. 10.13, upgrade install, and this is annoying the hell out of me. Beyond the "verifying' problem, has anyone else noticed that all finder actions are just sliiiiightly delayed? Navigation, info pane, quick view, there's a tiny lag on every action.
On what exactly did you run it?After running xattr a few days ago, I can happily report that the “verifying” bug doesn’t seem to have returned.
Every file exhibiting the problem.On what exactly did you run it?
1.) Open Automator. It should be in your "Applications" folder. Or hit Command+Spacebar and type automator to find it using Spotlight.
2.) Select "Service":
View attachment 721685
3.) Select "Run AppleScript" from the column of available actions. Drag "Run AppleScript" to the right empty pane to begin.
View attachment 721686
4.) Make sure "files or folders" is selected for "Service receives selected". Make sure "Finder" is selected for "in". Paste dolphin842's code in the empty text area shown in the screenshot below (I added "-r" so this is recursive):
Code:on run {input, parameters} tell application "Terminal" activate set filesString to "" repeat with file_ in input set filesString to filesString & " " & quoted form of (POSIX path of file_) end repeat do script "xattr -r -d com.apple.quarantine" & filesString end tell return input end run
View attachment 721687
4.) Choose File -> Save...
5.) Choose an appropriate name. I chose "Unquarantine" for now.
6.) Select all of the files you want to fix, and right click. You'll see your new service at the bottom of the right click dialog as a selection:
View attachment 721689
7.) Click "Unquarantine" (or whatever you named it) and it will modify all of the selected files, including files within selected folders.
8.) Quit Terminal after the process finishes and you're returned to the default prompt.
Thanks to dolphin842 and everyone else who helped!
Many thanks! It worked!1.) Open Automator. It should be in your "Applications" folder. Or hit Command+Spacebar and type automator to find it using Spotlight.
2.) Select "Service":
View attachment 721685
3.) Select "Run AppleScript" from the column of available actions. Drag "Run AppleScript" to the right empty pane to begin.
View attachment 721686
4.) Make sure "files or folders" is selected for "Service receives selected". Make sure "Finder" is selected for "in". Paste dolphin842's code in the empty text area shown in the screenshot below (I added "-r" so this is recursive):
Code:on run {input, parameters} tell application "Terminal" activate set filesString to "" repeat with file_ in input set filesString to filesString & " " & quoted form of (POSIX path of file_) end repeat do script "xattr -r -d com.apple.quarantine" & filesString end tell return input end run
View attachment 721687
4.) Choose File -> Save...
5.) Choose an appropriate name. I chose "Unquarantine" for now.
6.) Select all of the files you want to fix, and right click. You'll see your new service at the bottom of the right click dialog as a selection:
View attachment 721689
7.) Click "Unquarantine" (or whatever you named it) and it will modify all of the selected files, including files within selected folders.
8.) Quit Terminal after the process finishes and you're returned to the default prompt.
Thanks to dolphin842 and everyone else who helped!
Yeah same.. the unquarantine fix doesn't seem to stick. I gotta do it every time...... grrrr.it seems the workaround just work for the first time I open the file, the second time I try to open it, the verifying thing happens again....