Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'use defaults to reset' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
use defaults to reset
Authored by: joelbruner on May 26, '09 09:59:34AM
Here's the settings I use at work, I flipped everything from am to pm and changed the weekly to run on Monday instead of Saturday
sudo defaults write /System/Library/LaunchDaemons/com.apple.periodic-daily StartCalendarInterval -dict-add 'Hour' -int '15'
sudo defaults write /System/Library/LaunchDaemons/com.apple.periodic-weekly StartCalendarInterval -dict-add 'Hour' -int '15'
sudo defaults write /System/Library/LaunchDaemons/com.apple.periodic-weekly StartCalendarInterval -dict-add 'Weekday' -int '1'
sudo defaults write /System/Library/LaunchDaemons/com.apple.periodic-monthly StartCalendarInterval -dict-add 'Hour' -int '13'


[ Reply to This | # ]
reset file perms
Authored by: joelbruner on May 26, '09 10:49:10AM
Forgot that defaults will trash the permissions on a file, so add back read ability for group and others
sudo chmod go+r /System/Library/LaunchDaemons/com.apple.periodic-*


[ Reply to This | # ]