OS X Tips and Tweaks: How to Easily Change Time Machine Backup Intervals with Automator and Applescript
You can download the complete app here.
In this video I show you how to easily make an Automator app that will allow you to change your Time Machine backup interval in mere seconds and avoid painful visits to the terminal window to do it manually. Applescript code: You can copy and paste this code into an Applescript editor or into a “Run Applescript” task in Automator. Its that easy. Save as an app and you’re ready to go! You can customize your time intervals.
Simply replace the numbers in the curly braces {1, 2, 3, … to any numbers you want, keep in mind, however that these are in hours.
set hours to choose from list {1, 2, 3, 6, 12, 24} with prompt “Set your Time Machine interval:” OK button name “Go” cancel button name “Cancel”
if hours is false then return “user cancelled”
set interval to hours * 3600
do shell script “defaults write /System/Library/LaunchDaemons/com.apple.backupd-auto StartInterval -int ” & interval with administrator privileges
display dialog “Your Time Machine backup will now occur every ” & hours & ” hours.”
Alternatively, you can use this terminal command, and replace the backup interval in seconds at the end. In this command it is set to 7200 seconds, or two hours.
sudo defaults write /System/Library/LaunchDaemons/com.apple.backupd-auto StartInterval -int 7200
Hope this has helped you manage your Time Machine Backups more efficiently.
Recent Posts
- Magazines the way they were meant to be on the iPad with Readr
- Professional-grade portrait touch ups with Visage Lab for iOS
- Explore virtually unlimited music possibilites with Music Tubee for iOS
- Looking for college books? Check out CollegeBooks for iPhone
- Bored? Kill some time with Smashing Egg Tido for iOS
- Check out this cool Unity-powered 3D role playing game called Axe and Fate
- Take control of your Windows computer with your Android device with Windows Controller
- Challenge your brain with fun and addictive mini-games in TouchMii for iPhone
- Keep your documents on the iPhone safe with Scan and Protect!
- The Max in Poker Enjoyment is available with 888poker Mobile HD
- Tickle your brain with this awesome puzzle game for iPhone
- Check out this extraordinarily difficult, yet extremely addicting puzzel game for Android
- Create and edit your spreadsheets in style with Permanent for iPad
- Wake up & stay in touch with the world with Clock Weather News for iPhone!
- Discrete and private messaging with iDelete for iPhone
Archives
Tags
android android app android game android review app application appoday app review appshrink blackberry CCleaner command featured free game review giveaway giveaways images infographic ipad ipad app ipad game ipad review iphone iphone app iphone game iphone review ipod lifetopix mac app mac review news organizer os x panorama press release promo code promo codes review submit app submit press release terminal tips touch tweaks






