装了mac os 14.0 sonoma 在腾讯会议投屏时候,无法设置麦克风权限问题

愿意:界面上直接空白的,无法手动或自动弹出要配置授权的软件

解决思路:

给 TCC.db 增加1条权限记录

添加到数据库里

shell 复制代码
/usr/bin/sqlite3 ~/Library/Application\ Support/com.apple.TCC/TCC.db "INSERT INTO 'main'.'access' ('service', 'client', 'client_type', 'auth_value', 'auth_reason', 'auth_version', 'csreq', 'policy_id', 'indirect_object_identifier_type', 'indirect_object_identifier', 'indirect_object_code_identity', 'flags', 'last_modified', 'pid', 'pid_version', 'boot_uuid', 'last_reminded') 
VALUES ('kTCCServiceMicrophone', 'us.zoom.xos', 0, 2, 4, 1, NULL, NULL, 0, 'UNUSED', NULL, 0, 1698058859, NULL, NULL, 'UNUSED', 1698058859);"

查询麦克风授权的

shell 复制代码
/usr/bin/sqlite3 ~/Library/Application\ Support/com.apple.TCC/TCC.db "select * from Access where service='kTCCServiceMicrophone'"

已授权的列表

shell 复制代码
/usr/bin/sqlite3 ~/Library/Application\ Support/com.apple.TCC/TCC.db "select * from Access " 

参考:

https://discussionschinese.apple.com/thread/255203283

相关推荐
小路恢弘1 小时前
使用Mac自带共享实现远程操作
macos
阿髙9 小时前
macos 隐藏、加密磁盘、文件
macos
minos.cpp11 小时前
Mac上Stable Diffusion的环境搭建(还算比较简单)
macos·ai作画·stable diffusion·aigc
追光天使1 天前
Mac/Linux 快速部署TiDB
linux·macos·tidb
wzkttt1 天前
Mac gfortran编译fortran出错
macos·gfortran
刘小哈哈哈1 天前
iOS 多个输入框弹出键盘处理
macos·ios·cocoa
草明1 天前
macOS 显示或不显示隐藏文件
macos
刘贤松1 天前
构建MacOS应用小白教程(打包 & 签名 & 公证 & 上架)
macos
power_to_go1 天前
macOS 配置 vscode 命令行启动
ide·vscode·macos
南山十一少1 天前
在 Mac M2 上安装 PyTorch 并启用 MPS 加速的详细教程与性能对比
macos