Automatically Sleep Your Mac After Running a Sync Create a post-sync AppleScript that will sleep the Mac upon completion of the sync task

TNCS-0018 – Automatically Sleep Your Mac After Running a Sync

Created: April 4, 2014

ChronoSync does not directly support the automatic sleep of the Mac after running a sync. Use this document to create a post-synchronization AppleScript that will sleep your Mac upon completion of the sync document.

RESOLUTION

Use the following steps to create the post-sync AppleScript to sleep your Mac. This procedure makes use of the AppleScript Editor which be found in the Applications- >Utilities folder.

Open the AppleScript Editor

Open the Utilities folder, found in the Applications folder of your Mac, then open the AppleScript Editor.

Create the AppleScript

Copy the following script and paste it into the AppleScript Editor:

tell application “System Events”
sleep
end tell
set quitResult to do shell script “ps axjww”
if quitResult contains “Applications/ChronoSync” then
do shell script “killall ChronoSync”
delay 2
end if

Compile and Test

Click the ‘Compile’ button in the AppleScript Editor toolbar. Check for any errors. Now, test the script. Remember, if everything works, the Mac will sleep! Now click the ‘Run’ toolbar button. Does the Mac sleep? Correct any errors before continuing.

Save the AppleScript

Save the AppleScript by going to the menubar and choosing File -> Save. Make sure to choose the ‘Script’ File Format if it is not chosen already. Choose a directory to store the AppleScript, then choose ‘Save’. It may be helpful to keep any scripts in the same folder where the sync document is stored.

Set the Script in your Sync Task

Open the saved sync document and switch to the Options Panel. Expand the ‘Scripts’ section.

Enable ‘Post-Synchronization script’, then click the ‘Choose’ button and select the AppleScript just created.

Choose whether or not to abort the sync run if the AppleScript encounters an error by enabling or disabling ‘Abort on Script Errors’.

Test the script by clicking ‘Run’.

CONCLUSION

If all has gone well, the AppleScript should sleep your Mac after running the sync.

REVISION HISTORY

Apr-4-2014 – Created from Internal Support Notes.

Shopping cart0
There are no products in the cart!
Continue shopping
0