回答:
表示を検出するために使用する別のスクリプトからそれをコピーできることに気付いたのです。
どうぞ:
無効にする:
tell application "System Preferences" to activate
tell application "System Events"
tell process "System Preferences"
click menu item "Time Machine" of menu "View" of menu bar 1
tell button "OFF" of window 1 to click
end tell
end tell
tell application "System Preferences" to quit
有効にする:
tell application "System Preferences" to activate
tell application "System Events"
tell process "System Preferences"
click menu item "Time Machine" of menu "View" of menu bar 1
tell button "ON" of window 1 to click
end tell
end tell
tell application "System Preferences" to quit
他の人に役立つことを願っています。もっと良い解決策があれば、私はみんな耳にします!
このAppleScriptを使ってTime Machineバックアップを開始することもできます。
do shell script "/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper &"
または同様のシェルスクリプトを使用してください。
私はTime Machineがあまりにも頻繁に動いていると思います。代わりに、私はTime Machineを無効にしたままにし、Awakenを使ってこのスクリプトを1日に2回実行します。
スケジュールを変更するためにTimeMachineEditorを使用しています