Time Machineを有効または無効にするためのクイックシルバーのアクセス可能なスクリプト


回答:


2

表示を検出するために使用する別のスクリプトからそれをコピーできることに気付いたのです。

どうぞ:

無効にする:

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

他の人に役立つことを願っています。もっと良い解決策があれば、私はみんな耳にします!


1

このAppleScriptを使ってTime Machineバックアップを開始することもできます。

do shell script "/System/Library/CoreServices/backupd.bundle/Contents/Resources/backupd-helper &"

または同様のシェルスクリプトを使用してください。

私はTime Machineがあまりにも頻繁に動いていると思います。代わりに、私はTime Machineを無効にしたままにし、Awakenを使ってこのスクリプトを1日に2回実行します。


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.