Erased and installed - How do I get to my back up?

Had some problems with my mac and, after discussing with AppleCare, was advised to do an Archive and Install. Did this, and it made things worse (don't ask me why, cause I don't know and neither did the AppleCare guys). So, AppleCare then advised that I erase and install, do a software update and then restore my backed up stuff (photos, files, emails, etc, etc). They specifically said not to copy the whole backed up account over because I might transfer whatever was causing the initial problems. The thing is, I cannot for the life of me figure out how to do this?? I've got a TimeCapsule acting as my router and backup. Before I blew things away, the TimeCapsule was set-up via TimeMachine. I naively thought that I would just be able to go back into TM and reconnect to my TC. TM can see the TC when I select choose backup disk, but I am worried that it will wipe out the backup if I select "Use for backup" i.e. It backs up the newly reinstalled stuff. I've looked at migration assistant, but this looks like it will only copy over Apps, Files and Library settings and not let me grab the things I want. Hoping that someone can help ?

shelfkit wrote:
but I am worried that it will wipe out the backup if I select "Use for backup" i.e. It backs up the newly reinstalled stuff.
Yes, TM's next backup will back-up all the newly reinstalled stuff (so don't turn it on until you've got your Mac back the way you want it), but it won't wipe out anything, unless it runs out of room and has to delete your oldest backups to make room for the new one.
I've looked at migration assistant, but this looks like it will only copy over Apps, Files and Library settings and not let me grab the things I want.
Migration Assistant lets you "migrate" anything except your top-level System and Library folders. What other things do you want?
You can also use TM to restore any selected files/folders from your backups.
You can choose any or all of User accounts, Applications, etc. What else do you want?

Similar Messages

  • HT1349 my PC crashed, so i reinstalled windows and itunes. how do i get my music back?

    my PC crashed, so i reinstalled windows and itunes. how do i get my music back?

    If the music was purchased from iTunes you can redownload it for free (http://support.apple.com/kb/HT2519).  If not you will either have to re-import all your music to rebuild your library, or purchase 3rd party software that can transfer it from your phone to iTunes such as Touch Copy.

  • ADF and JQuery: How can I get the data back to server listener.

    Jdeveloper 11g Version 11.1.1.2.0
    I use Jquery to draw the signature. How can I get the svgOutput back to my server listener.???
    e.getSource give me the error e.getSource is not function.
    Both of function saveSignatureCapture(which calling from ADF button) and $('#save-output').click(function (event) can not send the the data back to my server listener.
    Thanks.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="dSignature" title="Signature Capture">
          <af:resource type="javascript" source="../resources/lib/jquery/jquery-1.4.2.min.js"/>
          <af:resource type="javascript" source="../resources/js/jquery.drawbox.js"/>
          <af:resource type="javascript">
            var svgOutput = '';
            function saveSignatureCapture(e) {
                var signatureText = $('#drawbox-data').val();
                var source = e.getSource();
                var type = 'saveSignatureCapture_ServerListener';
                var immediate = true;
                var params = {
                    signatureText : signatureText
                AdfCustomEvent.queue(source, type, params, immediate);
            function beginSignatureCapture(e) {
                $('#drawbox').drawbox( {
                    caption : 'This is a caption', lineWidth : 3, lineCap : 'round', lineJoin : 'round', colorSelector : true
                $('#view-output').click(function () {
                    svgOutput = window.open('data:image/svg+xml,' + $('#drawbox-data').val());
                    svgOutput.document.close();
                    return false;
                $('#save-output').click(function (event) {
                    var signatureText = $('#drawbox-data').val();
                    var source = $(document);
                    var type = "saveSignatureCapture_ServerListener";
                    var immediate = true;
                    var params = {
                        signatureText : signatureText
                    AdfCustomEvent.queue(source, type, params, immediate);
                    return false;
            $(document).ready(beginSignatureCapture);
          </af:resource>
          <af:panelStretchLayout id="psSignature">
            <f:facet name="bottom"/>
            <f:facet name="center">
              <af:panelGroupLayout id="pgSignature" layout="vertical">
                <f:verbatim>
                  <div id="divSignature">
                    <canvas id="drawbox" width="600" height="200">
                      <p>Your browser does not support &lt;canvas&gt;</p>
                    </canvas>
                  </div>
                  <br/>
                  <br/>
                  <a href="#" id="view-output">View Rendered SVG Output</a>
                  <br/>
                  <br/>
                  <a href="#" id="save-output">Save Signature</a>
                </f:verbatim>
                <af:spacer width="10" height="10" id="s10"/>
                <af:panelGroupLayout id="pghl14" layout="horizontal" halign="center">
                  <af:commandButton text="Save Signature" id="cbSaveSignatureButtonId" partialSubmit="true">
                    <af:clientListener method="saveSignatureCapture" type="click"/>
                    <af:serverListener type="saveSignatureCapture_ServerListener"
                                       method="#{backingBeanScope.mainBackingBean.saveSignatureCapture_ServerListener}"/>
                  </af:commandButton>
                </af:panelGroupLayout>
              </af:panelGroupLayout>
            </f:facet>
            <f:facet name="start"/>
            <f:facet name="end"/>
            <f:facet name="top"/>
          </af:panelStretchLayout>
        </af:document>
      </f:view>
    </jsp:root>Edited by: user553450 on Sep 17, 2010 4:02 PM
    Edited by: user553450 on Sep 17, 2010 4:13 PM

    Hi Frank,
    Thank you so much for your advice, I got lot of knowledge from your book and articles since I am in transition from forms to JDeveloper.
    By surrounding <af:panelStretchLayout id="psSignature"> with <af:form id="f1">
    Now the following code is work on Firefox, everything fine, I can get the data back and call my server listener as I expected.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1" title="Signature Capture">
          <af:resource type="javaScript" source="../resources/js/excanvas.js"/>
          <af:resource type="javascript" source="../resources/lib/jquery/jquery-1.4.2.min.js"/>
          <af:resource type="javascript" source="../resources/js/jquery.drawbox.js"/>
          <af:resource type="javascript">
            function saveSignatureCapture(e) {
                var signatureText = $('#drawbox-data').val();
                alert(signatureText);
                var source = e.getSource();
                var type = 'saveSignatureCapture_ServerListener';
                var immediate = true;
                var params = {
                    signatureText : signatureText
                AdfCustomEvent.queue(source, type, params, immediate);
            function beginSignatureCapture(e) {
                var cmd = "$('#drawbox').drawbox({lineWidth:3,lineCap:'round',lineJoin:'round',colorSelector:true});";
                if (navigator.userAgent.indexOf('MSIE') !=  - 1) {
                    setTimeout(cmd, 1000);
                else {
                    $('#drawbox').drawbox( {
                        caption : 'This is a caption', lineWidth : 3, lineCap : 'round', lineJoin : 'round', colorSelector : true
          </af:resource>
          <af:form id="f1">
            <af:panelStretchLayout id="psSignature">
              <f:facet name="bottom"/>
              <f:facet name="center">
                <af:panelGroupLayout id="pgSignature" layout="vertical">
                  <f:verbatim>
                    <canvas id="drawbox" width="600" height="200">
                      <p>Your browser does not support &lt;canvas&gt;</p>
                    </canvas>
                  </f:verbatim>
                  <af:spacer width="10" height="10" id="s10"/>
                  <af:panelGroupLayout id="pghl14" layout="horizontal" halign="center">
                    <af:commandButton text="Save Signature" id="cbSaveSignatureButtonId" partialSubmit="true">
                      <af:clientListener method="saveSignatureCapture" type="click"/>
                      <af:serverListener type="saveSignatureCapture_ServerListener"
                                         method="#{backingBeanScope.mainBackingBean.saveSignatureCapture_ServerListener}"/>
                    </af:commandButton>
                  </af:panelGroupLayout>
                </af:panelGroupLayout>
              </f:facet>
              <f:facet name="start"/>
              <f:facet name="end"/>
              <f:facet name="top"/>
            </af:panelStretchLayout>
          </af:form>
          <af:clientListener method="beginSignatureCapture" type="load"/>
        </af:document>
      </f:view>
    </jsp:root> However, I got the error following error when I run the page from IE8.
    Assertion failed: Incorrect use of AdfRichUIPeer.GetDomNodeForCommentComponent.AdfRichCommandButton[oracle.adf.RichCommandButton] id=cbSaveSignatureButtonId StackTrace:function(x217)[AdfRichCommandButton[oracle.adf.RichCommandButtonId]..........
    FYI, the following simple testing code has the similar error in IE8 too (not for Firefox).
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:resource type="javaScript" source="../resources/js/excanvas.js"/>
          <af:form id="f1">
            <f:verbatim>
              <canvas id="drawbox" width="600" height="200">
                <p>Your browser does not support &lt;canvas&gt;</p>
              </canvas>
            </f:verbatim>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>The error is: Assertion failed: Incorrect use of AdfRichUIPeer.GetDomNodeForCommentComponent.AdfRichDialog[oracle.adf.RichDialog] id:::msgDlg StackTrace function(x217).......
    Your advice is very much appreciated.

  • If I erase and install Lion, will my exisiting Time Machine Back-up be overwritten?

    Since upgrading to Lion, I have experienced problems with permissions and having to repair the disk.
    I have decided to do an erase and install of Lion, but would like to clarify a few things about the time machine back up.
    Firstly, once the operating system has been re-installed (I do not intend to restore from backup), will my current time machine back up continue to operate or will a new back up need to take its place?
    Secondly, rather than restoring from the back up (as I have alot of redundant apps), am I able to select certain apps/app data to restore?  (If the answer to the above is 'Yes' then i assume that this could be done by entering time machine once I am up and running).
    Thanks

    First, it's unlikely that reinstalling Lion will solve your problems. But that's not the question.
    If you do erase and restore, you won't lose your TM backups, but TM will need to back up all your files, even if they were previously backed up. That may result in the deletion of many snapshots to free up space.

  • I erased everything on my iphone and lost all my contacts pictures and everything how do i get all that back from my itunes account??

    I erased everything on my iphone and lost all my contacts pictures and everything else how do i get the contacts and pictures back from my itunes account?? ive tried restore its like it gave me a whole new iphone thing.

    If you plug in the iPhone to your computer, any contacts ect that you synced with your computer with sync back with the iPhone when it is selected in the iTunes menu under info. Anything that was added without syncing was lost, I'm sorry. A good future solution is to get iOS 5 when it comes out this fall, so you don't need to manually sync contacts, its automatic!
    Best Regards
    Mark

  • ITunes wiped clean on computer and iPod how do I get my music back?

    I just did the iOS 5.1 system update for the ipod. It told me it will restore my ipod and I was okay with that. But when it was finished I went to my iTunes on my computer (iMac) and there is absolutly no music. There are no music files on my computer either. I extreamly need to get back that music that was stored on my iTunes. Those songs can't be gotten back. I rarely buy from iTunes and those songs were transfered on here from a computer that I don't have anymore. Some of these songs were even of my dead family playing and instrament and I have no copies! Please help me get my music back I am completly heart broken.

    You may be able to redownload iTunes ourchased music by the following. It depends upont the country you are in:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    You will have to get the other music by the same method you got them the first time. If they are not on the iPod or computer, they are gone. Sorry.

  • URGENT:Accidently copied over code and saved-how do i get the original back

    Hi,
    I accidentily copied over the code of one program, with the code of another & saved.
    Now i can't get the original back!!! What do i do?
    Please help!

    Open the prog in SE38 (in change mode).
    From menu bar- Utilities > Versions
    Select the previous version of code and press RETRIEVE.
    Follow the prompts.
    This ASSUMES that a previous version has been saved/transported.
    If not, you are out-of-luck.

  • HT4528 i just tried to put music onto my new IPhone, but it ended up erasing all of my pictures, messages, and notes. how do i get that all back?

    Please help me!

    Plug the iPhone into the computer it normally syncs with and restore all of the media and data from there.
    If you have never backed up the device, all of the data is gone.

  • Applecare repair erased iphoto. How can I get my library back?

    Also I had them published to the web but how can I find them again?
    Doug Miura
    <Edited by Moderator>

    Doug ~ Did you backup your iPhoto library to an external media as described here?...
    http://docs.info.apple.com/article.html?path=iPhoto/7.0/en/6301.html
    ...or, since you're on OS X 10.5, have you been running Time Machine to backup your Mac?
    gentlewar wrote:
    Also I had them published to the web
    How did you publish them to the web and to where on the web? — what is the URL by which you viewed your photos on the web?

  • Mail 6 DID NOT save my rules and signatures: how do I get the RULES back?

    When I had the UNFORTUNATE idea to switch (that is to DOWNGRADE imho) from 10.6.8, the new Mail, among the MANY PROBLEMS IT CREATED TO ME (see my other posts about blocked plug-in messages, etc.), DID NOT care at all about saving my signatures and rules.
    I found the signatures as webarchives in user/library/mail/v2/mail data/signatures, and just clicked on each one and did LOTS of TIME CONSUMING copy-paste to CREATE new signatures from within mail preferences.
    I wasn't able to do the same for the MANY rules I had.
    Also, in the previous Mail, it was possible to simply do a command-f inside the To or Bcc fields to check if I had forgotten someone. Now it is NOT POSSIBLE any longer. Anyone knows ho to re-establish that possibility?
    Any help would be appreciated.

    I went back to the MUCH BETTER Snow Leopard and I have NONE of the problems I encountered with the windoz-like "lions", I have my fast and perfectly functioning computer and system with 10.6.8

  • Plugged iphone 4s in to computer to unpdate and it has cleared contacts list and calendar how do I get this information back

    I have plugged my iphone 4s in to the computer to download pocs and update and it has wided my contact list and calendar have tried restoring and they are all gone completely help?

    If you're in recovery mode, all data is ALREADY lost.  You've no choice but to restore.

  • My iPhone 5 synced with another computer and everything on my phone is removed, replacing it with other pictures and messages. how do i get my pictures and contacts back?

    My New iphone 5 was synced on my sisters computer and now when i want to use it all of my things are gone, including my pictures and contacts. they have all been replaced with her contacts and pictures. how do i get my things back? i have tried syncing with my computer again but since it was new and i hadnt synced it at all, there is no backup on my computer.
    Please Help,
    Thank you

    Sonali16 wrote:
    since it was new and i hadnt synced it at all, there is no backup on my computer.
    Then anything you had on the phone is gone.
    Settings>General>Resets>Erase All Content and Settings.
    Set it up as a new device again.

  • Trouble with Time Machine (runs constantly). Erase and install?

    Trouble with Time Machine (runs constantly). Tried re-installation (equivalent of archive install) of Snow Leopard. Time Machine still unable to complete a back-up. Erase and install recommended at Genius Bar. Have backed up data to external HD using Super Duper. Should be a bootable backup. Last successful backup through Time Machine was 6/1/11. Not sure if I can access this back-up if I erase and re-install.
    Computer shipped with Tiger (7/2007). Have original disks. Now running Snow Leopard. So: erase HD, install Tiger, then update to Snow Leopard? Start-up from Tiger disks does not appear to work (starting up holding "C" key). Suggestions? Want very much to transfer data to new iMac, but do not want to carry bugs forward. Very nervous about erasing HD. And have the questions above about reinstalling system software.
    Advice desired! Thanks.

    Well if you can hold option and boot off the Superdupes clone and it works fine then you should be set to do what you need to do to the original boot drive.
    Disconnect all drives and c boot off the Snow Leopard install disk, use Disk Utility to Erase > format HFS+ journaled your internal boot drive.
    Quit and reinstall OS X Snow Leopard, setup (do not use Setup/Migration Assitant!) and update to 10.6.8
    When you setup the new install, use the same hard drive name and user name as you did before.
    Now the free iLife that came on the Tiger disks you won't get naturally, but you can pick them off the disk with the shareware program called Pacifist.
    install your programs from fresh sources, this way you don't get the "crap" from the older setup.
    Once your machine is up and going. Hook up the clone and transfer your user folders over manually. With iTunes just replace the whole folder. Because you kept the same user and boot drive name as before, the playlists should be fine.
    Once your all peachy, take the opportunity to clone this new setup to a external drive, label and disconnect.
    Make another clone for day to day, or week to week clone updates and your just a hold option boot away for recovery.
    You know Superdupes and Carbon Copy Cloner both have auto-scedualing/updating ability, so you can leave them plugged in and it will perform a update so your clone stays fresh and recent.
    But you should keep a clone timed back about a couple of weeks back just in case you install something bad and don't learn about it right away.

  • Just done the 'Erase and Install', I can't find the Hard Drive I backed up my files on?

    I have just done the 'Erase and Install' process, but before I did, I backed up my files to an External Hard Drive using Time Machine. I have now restored my Mac and gone through the Erase and Install process, but now, when I plug in my external hard drive, I cant find it anywhere? I've tried quite a few things, but no luck! Also, what has happened to iMovie and iPhoto and all those Applications?! They have dissapeared!

    GeorgeRollo wrote:
    I have just done the 'Erase and Install' process, but before I did, I backed up my files to an External Hard Drive using Time Machine.
    That should mean that all of your data on the MBP is backed up to an external HDD.
    - Yes, should be. But when I plug it in the Mac, no menu or pop up comes up. Showing what to do next.
    I have now restored my Mac and gone through the Erase and Install process, but now, when I plug in my external hard drive,
    If you restored your internal drive with Time Machine, did you then ERASE and install?  What did you erase and what were you installing?  What is on the external HDD that has the Time Machine backup on it?
    - I talked to the Customer Support and they said just erase the Startup Disk or something? So I did. Because I basically just wanted to restore my Mac.
    I cant find it anywhere?
    What is it?
    - The External Hard Drive when I plug it in.
    I've tried quite a few things, but no luck!
    What are 'quite a few things'?
    - Things that I have researched like going into 'Finder' then going into 'Preferences', 'General', then ticking 'Hard Drive' under the option of 'Show these items on the desktop:'
    what has happened to iMovie and iPhoto and all those Applications?! They have dissapeared!
    I would think that they should be on the Time Machine backup (assuming the external HDD has not been erased) if not the internal HDD.
    - Hopefully if I can figure out this.

  • I saved my "users" folder to an external HD. I did erase and install on my imac. Now how do i get the accounts to open up on the fresh installation?

    I saved my "users" folder to an external HD. I did erase and install on my imac. Now how do i get the accounts to open up on the fresh installation?

    To move a home folder, create a new home folder, copy the contents of the old home folder into the new home folder, and then delete the old home folder.  Take a look at this link, http://manuals.info.apple.com/en_US/UserMgmt_v10.6.pdf

Maybe you are looking for

  • Writting attached file from SOAP message to a FTP folder

    Hi everybody, Our scenario is an interface which receives a SOAP message with a file attached. As we don't need to do any mapping into the attachment, we are supposed to deliver that file as it is into a FTP folder. Our problem is that we cannot find

  • Report for Open PR..

    In PR i have 3 materials.... I did Po for 1 material only... Where i can get the report for Open PR.. Tx Uts

  • Safari doesn't read pages generated by iWeb on .Mac, but Firefox does

    I had a really bad experience with Safari 2.0.4, and I still don't know why that program is becoming such a problem. I am using Quicktime 7.1.6 I have been making podcasts using GarageBand, iWeb, and .Mac since February 2006, and things have been wor

  • Copy header text of mult sales orders in a billing document

    Hello Gurus, My requirement is to pass the header text from Sales order to a Billing document. However, if I create a billing document with reference to just one sales order, it is getting copied correctly in header text of a billing document. In cas

  • Why cannot I set value "base_directory"  for AIT?

    Hi, I am trying to insert MHP app into a ts and then try to recieve it on stb. I have a simple Xlet named HelloWorld including only one file HelloWorld.class . This xlet will display a string "Hello" on screen. Suppose that my xlet is stored in file