mac升级big sur后微信不能截图(安全性隐私中屏幕录制的app为空)的解决方案

更新时间 🔔🕙 2021年5月4日

在系统升级之后,有时候会发生某个app突然没有了屏幕录制权限。表现为微信不能截屏(这个概率出现最高)。幸好你不是一个人(^_^还是有比较多的人遇到这个问题)有位外国朋友Andreas_Hegenberg就找到了个解决办法。

参考:https://community.folivora.ai/t/bug-cant-add-btt-to-mojave-privacy-security-settings/6688

Unfortunately that’s a bad (but rare) bug in macOS and hard to fix. The database is probably corrupted and needs to be deleted, but the problem is that the database is under “System Integrity Protection”, thus a normal user can not delete it.

一般是【System Integrity Protection】这个服务使用的数据文件【TCC.db】损坏了。但是普通用户是没有权限修改这个文件的。

Before trying the steps below, first try whether these terminal commands fix your issue:
可以先执行下面的两行,看能否解决问题(某些情况下是可以解决问题的)

sudo tccutil reset All
sudo tccutil reset Accessibility

These would be the necessary steps, but they are not really easy…
若上面的两行不能解决问题,就需要来点复杂的操作了。如下(一定要严格按照操作来重启、输入命令):

1.) Disable SIP (system integrity protection). Which is a complicated process unfortunately (see https://apple.stackexchange.com/a/208481 276 ).
禁用掉系统的SIP服务。

  • 重启Mac,然后一直按住Command+R,进入到Recovery Mode,直到苹果logo显示在屏幕上.
  • 点击Utilities > Terminal.
  • 在Terminal窗口中, 输入 csrutil disable,然后按下Enter键.
  • Afterwards restart & boot back into normal macOS:重启Mac,正常输入密码,进入到系统中.
  • 可以输入【csrutil status】来查看SIP状态


2.) 删除/重命名 tcc.db file (e.g. using this command: sudo mv /Library/Application\ Support/com.apple.TCC/TCC.db /Library/Application\ Support/com.apple.TCC/TCC_old_backup.db )
还有一个文件,TCC.db-jxxx的,最好也删掉(本人之前没删除这个文件,貌似没生效)。建议TCC.db开头的两个文件都删掉,留着作为删坏了的备份。
3.) Boot into Recovery Mode Again:重启电脑,继续Command+R进入Recovery Mode
4.) Enable system integrity protection again (command: csrutil enable ):通过命令【csrutil enable】重新开启SIP
5.) Reboot the Mac:重启Mac,正常输入密码,进入到系统中,熟悉的权限都会出现在【安全性隐私】中了。

转载请备注引用地址:编程记忆 » mac升级big sur后微信不能截图(安全性隐私中屏幕录制的app为空)的解决方案