-1

私は現在、既存のplistにtrue値を持つ「disabled」と呼ばれるブールキーを追加するターミナルシェルを作成しようとしています。

これまでのところ私はdefaults write "/System/Library/LaunchAgents/com.apple.AppStoreUpdateAgent" disabled -bool true

ブール値を正しく設定していますか、それとも持ってはいけません-boolか?「無効」は引用符で囲む必要がありますか?

4

1 に答える 1

1

defaults write /System/Library/LaunchAgents/com.apple.AppStoreUpdateAgent disabled -bool true正しいはずです。disabled引用符で囲む必要はなく-bool true、機能するはずですが、@ MichaelDautermannが述べたように、rootとして実行する必要があります。

を使用してジョブをアンロードすることもできますlaunchctl unload -w /System/Library/LaunchAgents/com.apple.AppStoreUpdateAgent.plist

-w       Overrides the Disabled key and sets it to false. In previous ver-
         sions, this option would modify the configuration file. Now the
         state of the Disabled key is stored elsewhere on-disk.
于 2012-07-20T16:49:03.497 に答える