Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!


Click here to return to the '10.5: Show files that Time Machine does not backup' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
10.5: Show files that Time Machine does not backup
Authored by: JackSloth on Fri, Apr 4 2008 at 10:06AM PDT
Here is my twist on the script. I just added a dialog to inform the user.

display dialog "This application will create a text file with a list of things that are not backed up in Time Machine. It will not include those items you specified in Time Machine's options to exclude. Your administrative password is required in order to perform the search." buttons {"Cancel", "Continue"} default button 2
if the button returned of the result is "Cancel" then
-- action for 1st button goes here
quit application
else
-- action for 2nd button goes here

end if

set myItems to do shell script "mdfind \"com_apple_backup_excludeItem = 'com.apple.backupd'\" > ~/Desktop/Files_excluded_by_Time_Machine.txt" with administrator privileges


[ Reply to This | # ]