以 root 身份在 Mac 上运行首选项窗格
我在 /Library/PreferencePanes 中安装了一个首选项窗格。我希望此首选项窗格能够控制以 root 身份运行的应用程序(它是服务器)。首选项窗格包由 root 所有。但是,当我修改首选项时,它将结果保存到〜/ Library / Preferences。如何将结果保存到 /Library/Preferences 中?
I have a preference pane installed in /Library/PreferencePanes. I want this preference pane to control an application that is running as root (it's a server). The preference pane bundle is owned by root. However, when I modify the preferences, it saves the results to ~/Library/Preferences. How do I get the results to save to /Library/Preferences instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
快速浏览一下,您似乎需要使用 CFPreferences 而不是 NSUserDefaults。此外,你还需要提升权限,这是一件很难做到的事情。 这是指南,但 Lion 特别在授权服务方面做了很多改变,因此可能没有很多额外的信息。
Just with a quick look, it seems you'd need to use CFPreferences instead of NSUserDefaults. Also, you will need to elevate priviledges, which is a pain in the ass to do properly. Here's the guide for it, but Lion changed a lot specifically in authorization services, so there might not be a lot of extra info out there.