Any way to automate multiple Time Machine profiles?

I have 9 drives. 5 drives for data (1,2, 3, 4 & 5) and 4 drives to back them up (1/2B, 3B, 4B & 5B) using Time Machine. I have a lot of photos and video, drive 1 is a SSD boot, drive 2 is a SSD for work, the rest are hard disk drives.
I reset Time Machine manually for each profile every so often like so:
Profile Task
1 Backup Drives 1 and 2 to Drive 1/2B
2 Backup Drive 3 to Drive 3B
3 Backup Drive 4 to Drive 4B
4 Backup Drive 5 to Drive 5B
I wish I could set it up so time machine knows the profiles and does the backup tasks one after another in a continuous loop. That would be great!
If there is no practical way for me to do- then this post is my wish list for next operating system!

Hi, and welcome to the forums.
Short of something like an Applescript or Automator that would swap various versions of the preferences file (/Library/Preferences/com.apple.TimeMachine.plist), which would be a serious problem if done while a backup was in process, no.
A better solution might be to use Time Machine for your boot volume, and perhaps another (1 and 2 in your example, apparently).
Then use another app, such as CarbonCopyCloner, SuperDuper, or the like, for the other backups. CCC is donationware; SD has a free version, but you need the paid one (about $30) to do updates instead of full replacements, or scheduling. Either is easily found via Google.
And/or, see Kappy's post on Basic Backup, complete with links to the web sites of each product.
Feel free to post the suggestion here, though: http://www.apple.com/feedback/timemachine.html

Similar Messages

  • Is there any way to create a time machine backup to an external hard drive with content already on it?  I have a hard drive that i have used for pictures but when i try to run a backup it says i need to start from a blank drive. Can i get around it?

    Is there any way to create a time machine backup to an external hard drive with content already on it?  I have a hard drive that i have used for pictures but when i try to run a backup it says i need to start from a blank drive. Can i get around it?

    It would be much better if you had separate drives for the pictures and Time Machine backups.....but, if you want to use the same drive for both purposes, temporarily move the folder with the pictures to another location for safe storage.
    Run the Time Machine backup on the hard drive and verify that everything is working correctly. Time Machine will format the disk for you in Mac OS Extended (Journaled) as part of the backup process.
    Then move the folder with the pictures back to the hard drive with the Time Machine backups.
    When you have tested to make sure that everything is working again, then and only then should you delete the folder with pictures from the temporary storage area.
    Again....it would be much better to keep Time Machine backups on a drive just for that purpose, and other data on another drive for that purpose. This is clearly one of those times when the fact that you can do something does not mean to imply that you should do it.

  • HT201250 is there any way to retrieve deleted time machine backups?

    is there any way to retrieve deleted time machine backups? it has now deleted the oldest, but most important backup. It was made right before before upgrading to mountain lion. Because I had some issues with placing the files back the way I wanted, I had to connect my hard drive to my mac several times. Result, everytime I did so, a backup was made. Like today, when I was transferring everything from that specific backup. But in the meantime Time Machine made a new backup, deleting the old one I was using.  Ironically, I lost everything while I was transferring the files back to my mac. Please give me good news.

    Once the external hard drive that you use for Time machine deleted its oldest backup and overwrote it, the ability to retrieve those files disappeared.  They are gone for good.
    Hope this helps

  • Is there any way to delete multiple spams at once, right now I go through each individually and delete it, but it's time consuming, thanks

    Is there any way to delete multiple spam messages at once. Right now I go through each individual spam and delete one at a time. This is very time consuming. Any tricks out there.
    Thank you

    Hi LRagsdale517,
    You should definitely be able to upload multiple files by Shift-clicking or Ctrl-clicking the files you want to upload. Just to make sure you don't have an old version of the service cached, please clear the browser cache and then log in to https://cloud.acrobat.com/files. After clicking the File Upload icon in the upper-right corner, you should be able so select multiple files for upload.
    Please let us know how it goes.
    Best,
    Sara

  • When downloading iTunes onto a new computer, is there any way to automatically import old music files? Last time I got a new computer I didn't have to use an external drive to update my music library.

    When downloading iTunes onto a new computer, is there any way to automatically important songs from your previous computer? I recently cracked the screen on my computer and cannot access any files. Last time I got a new computer my iTunes media files automatically appeared in my iTunes when I downloaded it, and I did not have to use my external drive. Is this still possible?

    If your backup copy of the old computer was not stolen, then use it to put everything back.

  • Any way to pass Multiple Values for a single Label in the Parameter?

    I have a Report that Contains 2 Parameters, @Customer & @Area. When trying to set up the Available Values for @Area, I'm having issues using multiple values for one Label, i.e. = "4006" Or "4610"
    One of the Filters in the Report is an Operation number, which is the [OPERATION] field, which is setup as a filter on the Tablix referencing the @Area parameter. 
    PROBLEM: I cannot retrieve any data when trying to use the ‘Or’ Operator here. If I simply put “4006” or “4610” I retrieve data, but when trying to combine it returns no data.
    Example, I need to allow a user to select ‘Chassis Incoming’, which would include data from Operations 4006 & 4610.
    QUESTION:
    Any way to pass Multiple Values for a single Label in the Parameter?
    I realize the typical solution may be to use ‘Multi-Value’ selection, but in this case we want the User to select the Area and the multiple values for Filtering will be automatically determined for them. Otherwise, they are subject to not getting
    it correct.
    I have tried several different ways, such as =”4006” Or “4610”, =(“4006”, “4610”), = In(“4006”, “4610”), etc….
    Note: We are using Report Builder 3.0

    Based on my experience, there's no way to 'intercept' the query that gets passed back to SQL Server, so a Split wouldn't work.
    Try creating either a function or stored procedure using the code below (compliments to
    http://www.dotnetspider.com/resources/4680-Parse-comma-separated-string-SQL.aspx) to parse the string: 
    CREATE FUNCTION dbo.Parse(@Array VARCHAR(1000), @Separator VARCHAR(10))
    RETURNS @ResultTable TABLE (ParseValue VARCHAR(100))AS
    BEGIN
    DECLARE @SeparatorPosition INT
    DECLARE @ArrayValue VARCHAR(1000)
    SET @Array = @Array + @Separator
    WHILE PATINDEX('%' + @Separator + '%' , @Array) <> 0
    BEGIN
    SELECT @SeparatorPosition = PATINDEX('%' + @Separator + '%', @Array)
    SELECT @ArrayValue = LEFT(@Array, @SeparatorPosition - 1)
    INSERT @ResultTable VALUES (CAST(@ArrayValue AS VARCHAR))
    SELECT @Array = STUFF(@Array, 1, @SeparatorPosition, '')
    END
    RETURN
    END
    Once created you can do things like this:
    SELECT * FROM Parse('John,Bill,David,Thomas', ',')
    SELECT * FROM (SELECT 'John' AS TestName union select 'David' AS TestName) AS Main
    WHERE TestName IN (SELECT ParseValue FROM dbo.Parse('John,Bill,David,Thomas', ','))
    This is what your SQL query would probably look like:
    SELECT OperationID, OperationName FROM dbo.Operations
    WHERE AreaID IN (SELECT ParseValue FROM dbo.Parse(@Area, ','))
    You may need to fiddle around with the Separator depending on whether SQL Server inserts a space between the comma and next value.

  • Any way to upload multiple images without renaming?

    The multiple image upload seems to enforce a renaming convention and the
    creation of restricted user backup folders or new folders.
    Is there a way to just upload multiple files to an existing folder and just
    allow renaming or replacing of images, but still resizing? This procedure
    seems to work fine on individual image uploads in an update or insert record
    behavior....
    Maybe I'm missing something, but I was getting all sorts of directories
    being created and couldn't load the new files with their current name into
    the directory I actually wanted...
    Jeff

    Post Author: norton
    CA Forum: crystalreports.com
    Hi Dixie,
    You seem to be asking all the right questions lately!
    Right now we do not have any way of uploading multiple docs at once.  We do have the desktop publisher tool that helps with automatically refreshing a report and uploading it, but it is still handles them on an individual basis.
    However, with our next big release (planned for the middle of December) we are planning to add a new batch task to the desktop publisher.  The intent behind this is that you can set up your folder and document structure on your local file system and use the batch task to upload everything to your cr.com account.  This would include creating the necessary folders in cr.com.  You will be able to schedule this batch task like you do the existing individual tasks so that it runs once a week or whatever you like.
    This new batch task will NOT allow you to refresh any reports before uploading them though.  Everything will be uploaded as is.
    Hopefully this will help with what you are trying to do.
    Steve

  • Is there any way to automate purging Application Logging in azure storage account tables

    is there any way to automate purging Application Logging in azure storage account tables
    Rohit Pasrija

    hi Rohit,
    If you want to delete old data automatically, I think you need develop this feature by yourself. You could code the logic methods on your project, and set a timer to execute the methods to delete old data. Please refer to this thread (http://stackoverflow.com/questions/13602629/is-it-possible-to-acces-a-table-storage-in-azure-from-an-azure-web-site
    ), you could operate table storage data using azure sdk or REST API.
    Please try it.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is it possible to have multiple time machines on the same password protected network?

    is it possible to have multiple time machines on the same password protected network?  any insight would be helpful  thanks

    Youshould set one of them up to extend the wireless network. That one would not need an Ethernet connection and would allow your network to cover a broader area.

  • Any Way to Automate a Bluetooth Connection to a Specific Device?

    I have 3 Magic Mice that I keep in three different work areas where I use my late 2010 MacBook Air.  All mice have already been paired with the MBA.
    Sometimes when I boot up in a different location, the computer will quickly initiate a connection with the Magic Mouse in that location.  Other times, I have to manually use the Bluetooth menu in the finder to initiate a connection with that mouse.
    Is there any way to automate (Applescript, Automator, Terminal Command within an Applescript, Keyboard shortcut, etc.) a connection to a Bluetooth device that has already been paired with a Mac?
    Thanks.

    Barry,
    Thank you.  When I transferred all my info from my previous computer to my MacBook Air, I ended up deleting all my Bluetooth preferences because of some issues.  I thought I made my Magic Mice favorites again, but I didn't.  Hopefully that will make a difference.  I wouldn't have checked without your reply, so THANK YOU.
    Scott

  • Is there any way to know execution time of a  c program on Xcode

    is there any way to know execution time of a  c program on Xcode ?

    If it is a command line tool and you just what the total time do as tony wrote,
    If you need to run it from Xcode or are looking for more detail you can use the Instruments package. Select Product->Profile then select Time Profiler.

  • How can I restore my data from iCal? I didn't make any backup, but I use  time machine with an external HD. I deleted iCal when I deleted my gmail account. I have tried to restore, but I can only restore the iCal software and not the data.

    How can I restore my data from iCal? I didn't make any backup, but I use  time machine with an external HD. I deleted iCal when I deleted my gmail account. I have tried to restore, but I can only restore the iCal software and not the data.

    So what is your question?
    If you forgot your encryption password:
    Warning: Make sure it's a password you will remember or write it down for safekeeping. If you encrypt an iPhone backup in iTunes and forget your password, you can't restore from backup and your data will be unrecoverable.
    If you can't remember the password and want to start again, you must perform a full software restore and chooseset up as a new device when iTunes prompts you to select the backup from which to restore.
    The above comes from here:
    http://support.apple.com/kb/HT4946

  • Is there any way to create multiple users in a single shot in oracle db

    Can Any one tell me, is there any way to create multiple users in a single shot in oracle database.

    Hello Nunhum,
    I guess this was not my question.. This is not what I m asking.. I know there is not a single sql statement in oracle ,which could create multiusers alike UNIX/LINUX(OS LEVEL), Whatever you have written..is simple creating them one by one.
    What I am expecting is to have PL/SQL statement which could help us in this regard.

  • HT1541 i need to gift paid App to my subscriber base free, how can i do it? is there any way to automate the process it? i dont mind paying for it

    Hi,
    I have a plan of gifting popular gaming app to my user base based on certain criteria.
    I'm aware that you can gift the app through itunes.
    What i want to know if there is any way to automate the process, like any api calls to gift the app to my user base?
    Any sugestion will be most welcome
    Affu

    Hi affu_india,
    If you are looking to do volume gifting of an app, you may find the following page helpful:
    Apple - Business - Volume Purchase Program for Business
    http://www.apple.com/business/vpp/
    Regards,
    - Brenden

  • Time machine only copies User Info and Users (Applications, Library, and System are missing) from my quad core Mac Pro.  45 Gb of 162 Gb are missing.  Any one having success with time machine copying all folders using Mavericks?   What do I need to do dif

    Time machine only copies User Info and Users (Applications, Library, and System are missing) from my quad core Mac Pro.  45 Gb of 162 Gb are missing.  Any one having success with time machine copying all folders using Mavericks?
    What do I need to do differently?

    The late, great Pondini was investigating that issue before he passed away.
    See here: https://discussions.apple.com/thread/5125969
    I think there might be information there on how to reset Time Machine to do a full backup. I think you basically have to reset it and start over.

Maybe you are looking for

  • How can I use cfc query result to grid.dataprovider

    In rich from ,I builder a button , when it click ,I want to use cfc query some sql result ,and put it in grid. I use flower code ,but it have error ,help me !!! <CFSAVECONTENT variable="upd_query"> <cfinvoke component="test.components.Getorder" metho

  • Memory leak in the JVM leading to system oom

    Hi, We are running application server using java 1.5, tomcat 5.5 ... The problem is that the JVM is allocating memory continuously. If we look at the JVM memory from JConsole everything is OK the amount of memory allocated in the heap does not grow s

  • API for viewing PDF?

    Does anybody know something about a java api that is able to display PDF - Documents?

  • Content Server 6.0 Editor access

    I have some cs portlets, some allow you to add/create articles, others are simply "content" spaces using just the rich text field. How can we give access to community managers to change that content without giving them access to the content server ex

  • Adding maps to existing contacts

    Hi can only see a way to add maps to new contacts.  What about existing ones?