私は現在、既存のplistにtrue値を持つ「disabled」と呼ばれるブールキーを追加するターミナルシェルを作成しようとしています。
これまでのところ私はdefaults write "/System/Library/LaunchAgents/com.apple.AppStoreUpdateAgent" disabled -bool true
ブール値を正しく設定していますか、それとも持ってはいけません-bool
か?「無効」は引用符で囲む必要がありますか?
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.