Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Analog Kid

macrumors G3
Original poster
Mar 4, 2003
9,486
12,827
Anybody have a solution to the problem of MakeMKV constantly requesting access to Desktop, Documents, Downloads, network and removable drives? I give it permission in the Security/Privacy, but it keeps asking, over and over and over, even for individual operations. I tried reinstalling without luck.

If I keep clicking OK, eventually I get through, until I do anything that requires files again.

I see some references in their forums to the same problem dating back a year, but haven't found a solution.
 
You can try to
-reset all permissions for the app
Code:
tccutil reset All com.makemkv.MakeMKV
-reset file access permissions for the app
Code:
tccutil reset SystemPolicyAllFiles com.makemkv.MakeMKV
- reset all permissions for file access
Code:
tccutil reset SystemPolicyAllFiles
- give the app full disk access
 
You can try to
-reset all permissions for the app
Code:
tccutil reset All com.makemkv.MakeMKV
-reset file access permissions for the app
Code:
tccutil reset SystemPolicyAllFiles com.makemkv.MakeMKV
- reset all permissions for file access
Code:
tccutil reset SystemPolicyAllFiles
- give the app full disk access

"error: code object is not signed at all"

Removing the quarantine attribute didn't help either, not that I expected it would...
 
Last edited:
Running makemkvcon at the command line seems to work without issue.
 
What command returned that error?
tccutil reset All com.makemkv.MakeMKV

Which I interpret as resetting all configurations for MakeMKV? I didn't execute the other two-- the second seemed a subset of the first and the third seemed to clear the entire database forcing every app to reauthorize?
 
tccutil reset All com.makemkv.MakeMKV
I didn’t know tccutil doesn’t run for unsigned apps.
Try to remove all MakeMKV permissions from Security & Pirivacy - Files and Folders, then give the app Full Disk access.
 
I didn’t know tccutil doesn’t run for unsigned apps.
Try to remove all MakeMKV permissions from Security & Pirivacy - Files and Folders, then give the app Full Disk access.
Yeah, I tried that, and it doesn't seem to help either...

Yeah, that seems to be the case... I think it does all tie back to not being a signed app, which is annoying.

I wonder if that means this is actually a bug on the OS side...

Seems the best approach from here is to maybe do some command line scripting to avoid all the clicking in the UI.
 
"error: code object is not signed at all"

Removing the quarantine attribute didn't help either, not that I expected it would...
Registered here to reply to you. To fix this run the following

Bash:
sudo xattr -cr /Applications/NameOfMakeMKV.app
find /Applications/NameOfMakeMKV.app -name "*" -execdir sudo codesign --force --deep --sign - {}\;
tccutil reset All com.makemkv.MakeMKV

Don't worry about any errors with the `find` command. This fixed it for me.
 
Registered here to reply to you. To fix this run the following

Bash:
sudo xattr -cr /Applications/NameOfMakeMKV.app
find /Applications/NameOfMakeMKV.app -name "*" -execdir sudo codesign --force --deep --sign - {}\;
tccutil reset All com.makemkv.MakeMKV

Don't worry about any errors with the `find` command. This fixed it for me.
Thanks for making the effort!

I suspect I need to be a registered developer to codesign the app though, right? "The specified item could not be found in the keychain"...
 
Registered here to reply to you. To fix this run the following

Bash:
sudo xattr -cr /Applications/NameOfMakeMKV.app
find /Applications/NameOfMakeMKV.app -name "*" -execdir sudo codesign --force --deep --sign - {}\;
tccutil reset All com.makemkv.MakeMKV

Don't worry about any errors with the `find` command. This fixed it for me.
Because the code object is not signed at all it will not work.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.