HELP: Need To Extract Itunes Files From TM Backup ...

Hi ... I have had Time Machine regularly backing up my hard drive. I just had a complete crap storm and had to wipe my hard drive and reinstall OSX. My question is ...
How do I reinstall all of my iTunes media from the time machine backup (a sparsebundle file). I don't want to reinstall all of the other settings and files, just the iTunes files.
Thanks in advance

Never mind ... figured it out myself. Mounted the sparsebundle file by double-clicking it then navigated the "Latest" backup folder to the iTunes folder and dragged it to my desktop. Worked like a charm

Similar Messages

  • Help: need to extract an application from oracle/apex directory

    Hi, all!
    I worked on oracle10xe and apex 1.3.1 and then messed with partition table a bit so got my windows crashed and I don't believe i'll be able to restore it.
    so what i have is an oracle directory from the long-dead windows with apex inside, and i need to extract the applications and the data i was working with somehow.
    Any thoughts?
    Does anybody knows where does oracle store all its databases and where apex keeps its applications?
    oraclexe\oradata\xe\ has some .dbf files in it, will it work if i just write them over in a newly installed oracle+apex?

    Hello,
    At this point, since you can't turn to Oracle Support (since it is XE), then I would suggest asking amongst your colleagues/friends/etc and trying to find a friendly DBA who will try and help you out for a beer or 3.
    Depending on how critical your work was, I wouldn't throw away all hope of recovering your database until you've exhausted all the options.
    John.
    http://jes.blogs.shellprompt.net
    http://www.apex-evangelists.com

  • Help needed to extract a value from Textfield

    Hi,
    I am new to AWT prgramming .
    I have created a menu called " Menu System Test window " and it contains toplevel menu item "File" and File Menu contains subitems "Product Evaluation" and "Exit".
    When i click File->Product Evaluation it displays a new Frame named "ProductEvaluationMeasurementTool" with some check boxes ,radiobuttons, buttons , text fields.
    After compiling the program if i check some check boxes and radiobuttons and press Button1 it displays the result as no of checkboxes checked divided by total no of checkboxes(which i have declared as 18 in my code) in textField1.
    I also have textField2 for entering user input.
    now my question is after compiling program i check some checkboxes , enter some value in textField2 and press Button2. The result should be diplayed as no of checkboxes checked plus the value added in textField2 divided by total no of checkboxes(which is 18 in my code) . This result should be displayed in textField3.
    Can anyone help me?
    Thanks in advance
    i am sending my code.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.Component;
    import java.awt.Checkbox;
    import javax.swing.*;
    // Make a main window with a top-level menu: File
    public class MainWindow extends Frame {
      public MainWindow() {
        super("Menu System Test Window");
        setSize(500, 500);
        // make a top level File menu
        FileMenu fileMenu = new FileMenu(this);
        // make a menu bar for this frame
        // and add top level menus File and Menu
        MenuBar mb = new MenuBar();
        mb.add(fileMenu);
        setMenuBar(mb);
        addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
            exit();
      public void exit() {
        setVisible(false); // hide the Frame
        dispose(); // tell windowing system to free resources
        System.exit(0); // exit
      public static void main(String args[]) {
        MainWindow w = new MainWindow();
        w.setVisible(true);
    // Encapsulate the look and behavior of the File menu
    class FileMenu extends Menu implements ActionListener {
        private MainWindow mw; // who owns us?
      private MenuItem itmPE   = new MenuItem("ProductEvaluation");
      private MenuItem itmExit = new MenuItem("Exit");
      public FileMenu(MainWindow main)
        super("File");
        this.mw = main;
        this.itmPE.addActionListener(this);
        this.itmExit.addActionListener(this);
        this.add(this.itmPE);
        this.add(this.itmExit);
      // respond to the Exit menu choice
      public void actionPerformed(ActionEvent e)
        if (e.getSource() == this.itmPE)
         Frame f = new Frame("ProductMeasurementEvaluationTool");
         f.setSize(1290,1290);
         f.setLayout(null);
         TextField t1 = new TextField("textField1");
         t1.setBounds(230, 630, 50, 24);
         f.add(t1);
         TextField t2 = new TextField("textField2");
         t2.setBounds(430, 630, 50, 24);
         f.add(t2);
         TextField t3 = new TextField("textField3");
         t3.setBounds(630, 630, 50, 24);
         f.add(t3);
         Label l1 = new Label("Select the appropriate metrics for Measurement Process Evaluation");
         l1.setBounds(380, 50, 380, 20);
         f.add(l1);
         Label l2 = new Label("Architecture Metrics");
         l2.setBounds(170, 100, 110, 20);
         f.add(l2);
         Label l3 = new Label("RunTime Metrics");
         l3.setBounds(500, 100, 110, 20);
         f.add(l3);
         Label l4 = new Label("Documentation Metrics");
         l4.setBounds(840, 100, 130, 20);
         f.add(l4);
         JRadioButton rb1 = new JRadioButton("Componenent Metrics",false);
         rb1.setBounds(190, 140, 133, 20);
         f.add(rb1);
         JRadioButton rb2 = new JRadioButton("Task Metrics",false);
         rb2.setBounds(540, 140, 95, 20);
         f.add(rb2);
         JRadioButton rb3 = new JRadioButton("Manual Metrics",false);
         rb3.setBounds(870, 140, 108, 20);
         f.add(rb3);
         JRadioButton rb4 = new JRadioButton("Configuration Metrics",false);
         rb4.setBounds(190, 270, 142, 20);
         f.add(rb4);
         JRadioButton rb6 = new JRadioButton("DataHandling Metrics",false);
         rb6.setBounds(540, 270, 142, 20);
         f.add(rb6);
         JRadioButton rb8 = new JRadioButton("Development Metrics",false);
         rb8.setBounds(870, 270, 141, 20);
         f.add(rb8);
         Checkbox  c10 = new Checkbox("Size");
         c10.setBounds(220, 170, 49, 20);
         f.add(c10);
         Checkbox c11 = new Checkbox("Structure");
         c11.setBounds(220, 190, 75, 20);
         f.add(c11);
         Checkbox c12 = new Checkbox("Complexity");
         c12.setBounds(220, 210, 86, 20);
         f.add(c12);
         Checkbox c13 = new Checkbox("Size");
         c13.setBounds(220, 300, 49, 20);
         f.add(c13);
         Checkbox c14 = new Checkbox("Structure");
         c14.setBounds(220, 320, 75, 20);
         f.add(c14);
         Checkbox c15 = new Checkbox("Complexity");
         c15.setBounds(220, 340, 86, 20);
         f.add(c15);
         Checkbox c19 = new Checkbox("Size");
         c19.setBounds(580, 170, 49, 20);
         f.add(c19);
         Checkbox c20 = new Checkbox("Structure");
         c20.setBounds(580, 190, 75, 20);
         f.add(c20);
         Checkbox c21 = new Checkbox("Complexity");
         c21.setBounds(580, 210, 86, 20);
         f.add(c21);
         Checkbox c22 = new Checkbox("Size");
         c22.setBounds(580, 300, 49, 20);
         f.add(c22);
         Checkbox c23 = new Checkbox("Structure");
         c23.setBounds(580, 320, 75, 20);
         f.add(c23);
         Checkbox c24 = new Checkbox("Complexity");
         c24.setBounds(580, 340, 86, 20);
         f.add(c24);
         Checkbox c28 = new Checkbox("Size");
         c28.setBounds(920, 170, 49, 20);
         f.add(c28);
         Checkbox c29 = new Checkbox("Structure");
         c29.setBounds(920, 190, 75, 20);
         f.add(c29);
         Checkbox c30 = new Checkbox("Complexity");
         c30.setBounds(920, 210, 86, 20);
         f.add(c30);
         Checkbox c31 = new Checkbox("Size");
         c31.setBounds(920, 300, 49, 20);
         f.add(c31);
         Checkbox c32 = new Checkbox("Structure");
         c32.setBounds(920, 320, 75, 20);
         f.add(c32);
         Checkbox c33 = new Checkbox("Complexity");
         c33.setBounds(920, 340, 86, 20);
         f.add(c33);
         ActionListener action = new MyActionListener(f, t1, t2,t3);
         Button b1  = new Button("Button1");
         b1.setBounds(230, 600, 120, 24);
         b1.addActionListener(action);
         f.add(b1);
         Button b2  = new Button("Button2");
         b2.setBounds(430, 600, 120, 24);
         b2.addActionListener(action);
         f.add(b2);
               f.addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e)
              System.exit(0);
         f.show();
        else
       { mw.exit();}
    class MyActionListener implements ActionListener
      private Frame     frame;
      private TextField textField1;
      private TextField textField2;
      private TextField textField3;
      public MyActionListener(Frame frame, TextField tf1, TextField tf2,TextField tf3)
        this.frame = frame;
        this.textField1 = tf1;
        this.textField2 = tf2;
        this.textField3 = tf3;
      public void actionPerformed(ActionEvent e)
        String s = e.getActionCommand();
        if (s.equals("Button1"))
            Component[] components = this.frame.getComponents();
      int numOfCheckBoxes = 18;
      int numChecked = 0;
      for (int i = 0; i < components.length; i++)
            if (components[i] instanceof Checkbox)
              if (((Checkbox)components).getState())
    numChecked++;
    double ratio = (double) numChecked / (double) numOfCheckBoxes;
    this.textField1.setText(Double.toString(ratio));
    else
    if (s.equals("Button2"))
    Component[] components = this.frame.getComponents();
    int numOfCheckBoxes = 18;
    int numChecked = 0;
    for (int i = 0; i < components.length; i++)
    if (components[i] instanceof Checkbox)
    if (((Checkbox)components[i]).getState())
    numChecked++;
    double ratio = (double) numChecked / (double) numOfCheckBoxes;
    // I think some methods should be writen here to get the user input from textField2 before displaying ratio in textField3
    this.textField3.setText(Double.toString(ratio));

                // The result should be diplayed as
                // no of checkboxes checked                 ->           numChecked
                // plus the value added in textField2       ->           input
                double input = Double.parseDouble(textField3.getText());
                // divided by total no of checkboxes       ->            numOfCheckBoxes
                double ratio = (numChecked + input) / (double) numOfCheckBoxes;
                // This result should be displayed in textField3
                this.textField2.setText(Double.toString(ratio));

  • Help needed to access a file from and email link.

    I received an email with a link to an Adobe document. When I attempt to open the link I receive a message " You do not have accewss to the file" How do I gain access?

    Then it is the case I mentioned, the author sent the URL from the address bar viewing the form in Edit mode rather than copying the Fillable Form link. 
    You'll need to respond to the form author and ask them to send out the correct link/URL to the fillable form (which does not ask for any login).  They can go to the "Distribute" tab and on the "Web Form" sub-tab click "Copy Link", if the form is "Closed" it will ask if they want to "Open" the form, the form needs to be in the "Open" state to collect responses so say "Yes".  This will copy the link to their clipboard and they can then send that link/URL out.
    Also, if they close the form (by clicking the X in the upper right corner) and are looking at the "My Forms" tab in FormsCentral, with the form selected there is a "Link" button in the toolbar along the top which copies the form URL to send out.
    Here are a few documents that include information on how to distribute forms: https://www.acrobat.com/formscentral/en/quickstart/distribute-web-form.html
    http://forums.adobe.com/docs/DOC-1413
    http://helpx.adobe.com/acrobat-com/formscentral/topics.html
    Thanks,
    Josh

  • Need to extract class files from win32 exe

    I have a very old java exe which uses snjrt11.dll and snjawt11.dll files to run java classes packed in it. Is there any way to extract those classes that were packed I guess by Symantec's Cafe...

    Why bother? Just distribute the 3rd-party JAR as it is. All it costs you is a little disk space. Why bother to look inside, understand which classes you do and don't need, repackage, ... repeat every 3rd-party release? repeat for every 3rd-party product?
    Just ship it the way they ship it.

  • How to find and move iTunes file from back-up

    I have a new drive in my iMac.  Now I want to move my iTunes files from my backup, but I want to know how to move it to the new computer so all my equipment will get recognized by iTunes in my new computer.  Thank you.

    Copy the entire iTunes folder (and in doing so all its subfolders and files) intact to the computer.  Open iTunes and immediately hold down the Option (alt) key so you get a prompt to select a library, then guide it to the iTunes Library.itl file in the moved iTunes folder.
    If you put the copied iTunes folder in the default location of Macintosh HD > Users > *User Name* > Music  then you don't even need to start with the option key held down, iTunes will automatically look for it there.  (Make sure there isn't anything already in the iTunes folder there that you want to keep since you will be replacing it with the one you are moving.)

  • Restoring itunes library from a backup

    I copied my iTunes folder into a backup drive. My hard drive died, and now I want to "re-connect" my iTunes with its library. How can I do it? Simply pointing iTunes to the library location doesn't work.
    I need to be able to sync my iphone, etc... Help!

    When restoring Itunes library from a backup DVD, will it overwrite anything already in the library?
    No.
    (47058)

  • Need to extract only file name from path.........

    Hi All,
    I have a parameter.This calls the function
    "CALL FUNCTION 'F4_FILENAME' to get the file from C drive.
    After selecting the file the path is displayed in the Parameter field.
    My problem is I need to extract only file name from the path.Please advice.
    Example : Prameter  id    C:\folder\file.xls  
    I shd extract only file.xls from the path.Please advice.

    Hi,
    Use the below logic:
    data: begin of itab,
               val    type  char20,
            end of itab.
    SPLIT  l_f_path  AT  '\'  INTO  TABLE itab.
    The last record of the internal table holds the file name.
    describe table itab lines l_f_lines.
    read itab index l_f_lines.
    l_f_filaname = itab-val.
    Hope this helps u.

  • Could someone suggest a procedure describing how I should migrate my iTunes files from old an older Motorola-based PowerMac to a new Intel-based Mac Pro?

    My problem concerns migrating, or moving my iTunes files from a Motorola-based G4 PowerMac OS X 10.4.11 iTunes 9.2.1 (4) to a new Intel-based Mac Pro running OS X 10.8.4 iTunes 11.0.4. 
    Context Summary:
    1.  Migration assistants on my old and new macs are not compatible. 
    2.  My older mac has my iTunes library stored on an external firewire disk. 
    3.  Part (but not all) of my iTunes files are also resident/stored on my iPod classic.
    4.  Finally, I need OS X 10.4.11 on my old mac and cannot upgrade it to OS X10.5.
    Proposed method A: Is there a way to transfer my playlists from my Motorola Mac to my Intel Mac?  If so, could I then connect my external firewire disk (containing my iTunes library) to my new mac, and then tell iTunes (on new mac) to use my iTunes library located on my external firewire disk? 
    Proposed method B: Would my chances for success improve if I used my iPod classic to transfer iTunes files from old Mac to new?
    Worst Case Proposal C:  I could start from scratch and recreate iTunes playlists and library on new mac.... time consuming proposal but it's possible.  (Please don't suggest this proposal unless no other viable choices exist for me.)
    Or have I missed something?  Is there another procedure I should use?
    Please advise, and thank you.

    Hello Chris,
    Answer to your iTunes library question:  By iTunes Library, I mean my iTunes Media folder only; not the entire /iTunes/folder with iTunes media folder inside.
    BTW: Your pointer to ht4889 was very helpful, and sharing the folder, then copying it over firewire interface from old to new mac was most useful.
    However, now with my entire iTunes folder (including iTunes media folder) moved to new mac, I remain unclear as to how I should configure iTunes on the new mac so that it can know about and use these copied files.  I understand using iTunes preferences, how to point iTunes to my media folder, but don't know what other iTunes operations are necessary for iTunes to pick up where I left off with my old mac.
    Is there any file conversion necessary? 
    Or inside iTunes, should I:
    File->Library->Organize Library?  or
    File->Library->Export Library?  or
    File->Library->Import Playlist?
    Please advise and thank you again for your help. 
    As you might imagine, I put a great deal of time building my iTunes library, and would feel very blue if I need to build it again from scratch on my new mac.
    So long for now.

  • Extracting .xls file from an FTP site

    Hi there,
    I'm trying to run a DI solution that is extracting a file from a FTP site. DI can see the file but it gives me an error saying that:
    FTP could not transfer file <FTP site/myfile.xls> from host <IP Address>: <>. Please ensure that the FTP relative path for the SAP R/3 working directory is set correctly such that the data file is accessible to the FTP
    Can someone please help with this.
    Thank you.
    Gsecure

    Hi,
    thats SP1 for DS XI 3.2
    I think there is no delta from XI 3.2 to XO 3.2 SP1 what means you have to do a fresh install and upgrade repo.
    But you better doublecheck before but i think there is no delta.
    Regards
    -Seb.

  • Batch file extracting all files from nested archives

    I have managed to leverage a powerful
    forfiles command line utility with the mighty
    7z compression program.
    Below is a simple batch file extracting all files from nested archives hidden at any depth inside other archives and/or folders. After the extraction each archive file turns into a folder having the archive file name. If, for example, there was an "outer.rar"
    archive file containing nothing but an "inner.zip" archive with only "afile.txt" inside, "outer.rar" becomes "...\outer.rar\inner.zip\afile.txt" file system path.
    @echo off
    rem extract_nested_archives.bat
    move %1 "%TMP%"\%2
    md %2
    7z x -o%1 -y %TMP%\%2
    del "%TMP%"\%2
    for %%a in (zip rar jar z bz2 gz gzip tgz tar lha iso wim cab rpm deb) do forfiles /P %1 /S /M *.%%a /C "cmd /c if @isdir==FALSE extract_nested_archives.bat @path @file"
    ARCHIVES ARE DELETED DURING THE EXTRACTION! Make a copy before running the script!
    "7z.exe" and "extract_nested_archives.bat" should be in folders available via the %PATH% environment variable.
    The first parameter of extract_nested_archives.bat is the full path name of the archive or folder that should be fully expanded; the second parameter is just the archive or folder name without the path. So you should run "c:\temp\extract_nested_archives.bat
    c:\temp\outer.rar outer.rar" from the command line to completely expand "outer.rar". "c:\temp" must be the current folder.
    Best regards, 0x000000AF

    Incredibly useful!  Thank you so much.  I did make a couple of small changes to make the script a little easier to use from the end-user perspective.
    First - I don't like making the user input the redundant second parameter, so I added this snippet which extracts it from the first parameter.  The first line of the snippet enables delayed expansion so that special characters in our file name don't
    break anything.  The second line pulls the parameter into a variable, and the 3rd line uses delayed expansion on that new variable.  Before implementing delayed expansion I had problems with file paths which included parentheses.
    SetLocal EnableDelayedExpansion
    Set SOURCE=%1
    For %%Z in (!source!) do (
    set FILENAME=%%~nxZ
    set FILENAME=%FILENAME:"=%
    Anyway once that was done, I just used %FILENAME% everywhere in the script instead of
    %2 (making sure to correct quotes as needed)
    This way, to run my script all you need to run is:
    C:\temp\extract_nested_archives.bat C:\temp\Archive.zip
    Second - I didn't want to modify the Windows environment variable.  So I replaced
    7z with "%PROGRAMFILES%\7-zip\7z.exe"
    I also replaced extract_nested_archives.bat with "%~f0" (which represents the full path+filename of the current script).
    Here is my full script now.  Tested on Windows 8 with the 64-bit version of 7-zip installed:
    @echo off
    Setlocal EnableDelayedExpansion
    Set source=%1
    For %%Z in (!source!) do (
    set FILENAME=%%~nxZ
    set FILENAME=%FILENAME:"=%
    move /Y %1 "%TMP%\%FILENAME%"
    md "%FILENAME%"
    "%PROGRAMFILES%\7-zip\7z.exe" x -o%1 -y "%TMP%\%FILENAME%"
    DEL "%TMP%\%FILENAME%"
    for %%a in (zip rar jar z bz2 gz gzip tgz tar lha iso wim cab rpm deb) do (
    forfiles /P %1 /S /M *.%%a /C "cmd /c if @isdir==FALSE "%~f0" @path @file"

  • How to extract rpt file from .b1px file in SAP B1

    How to extract rpt file from .b1px file in SAP B1

    Hi Trupti,
    You will not be able to export .b1px file without importing in SAP B1.
    Please import .b1px file in SAP B1 and then export .rpt file from SAP B1 one by one.
    Hope this helps
    Regards::::
    Atul Chakraborty

  • How to extract  DB  FILE  FROM NONSAP  SYSTEM  IN BI-7

    how to extract  DB  FILE  FROM NONSAP  SYSTEM  IN BI-7

    hi,
    chk the links for extraction using DB
    Extraction using DB connect
    http://help.sap.com/saphelp_nw70/helpdata/EN/58/54f9c1562d104c9465dabd816f3f24/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c6/0ffb40af87ee6fe10000000a1550b0/frameset.htm
    Extract data from oracle DB to SAP BI 7.0
    Ramesh

  • Extracting .s2p files from 8722A Network Analyzer?

    Hi,
    I wish to extract .s2p files from my HP 8722A Network Analyzer.
    I could not find a driver for it. It is connected to my computer over GPIB.
    I am quite new to this, so if anyone could explain the overall process to extract .s2p files from a network Analyzer, that would be much appreciated.
    I imagine that one takes a measurement, stores it under a certain filename, then a command retrieves it and sends it to the computer?
    Thank you so much,
    Nicolas
    Solved!
    Go to Solution.

    Nicolas,
    Instead of extracting the .s2p files, which because of the age of the device (manual I found said 1991), could be very difficult, I think we would be better served communicating with the device directly and not using the files it creates. Instead of the process you described, we could set it to take a measurement, send the measurement to the computer, and have the computer do any manipulation/saving it may need.
    This manual discusses the basics of communication over GPIB with that device in chapter 12:
    http://cp.literature.agilent.com/litweb/pdf/08720-​90135.pdf 
    GPIB communication is typically pretty simple. The computer will just send the device in question the command or series of commands then wait for the response back, much like the GPIB examples in labview (Example finder>>Hardware IO>>GPIB).
    Unfortunately for us, the Agilent website here:
    http://www.home.agilent.com/agilent/product.jspx?c​c=US&lc=eng&ckey=8722A:epsgro&nid=-536900197.53690...
    only has the operating and service manuals, and not the programming reference manual.  You may want to contact agilent to get the programming reference manual, as that will list all of the commands you need to send the device.
    Regards,
    Kyle Mozdzyn
    Applications Engineering
    National Instruments
    Regards,
    Kyle M.
    Applications Engineering
    National Instruments

  • No luck trying to extract .inf files from drivers downloaded as zip files

    Hi,
    I am trying to extract .inf files from drivers downloaded as zip files from the Toshiba website, but I'm having no luck.
    I am trying to deploy images using WDS on server 2008 and need the inf files for this to succeed, does anyone have the answer to this problem.
    thanks in advance.

    Hi
    I found this tip:
    Someone wrote this:
    +You have to run the installer, wait for it to get to the first point where you click Next to continue, and then leave it sitting there. Go into your system's Temp and find the particular one with the installation files inside it that were extracted, then copy it someplace, go back to the installer and cancel it.+
    You could also try this freeware application to extract the package:
    http://www.legroom.net/software/uniextract

Maybe you are looking for

  • Problem with cellular data on ipad mini

    The problem is that I cannot turn off cellular data for some apps. Earlier I was turning on/off cellular data for each app. Now its turning on cellular data for apps by himself.

  • Go back to day one. I have no start up disk I do have my copy of Snow Leopard 10.6.3

    I have two questions. I want to install Lion. I tried to install more memory I have two 512 MB I try to install a 2 GB stick.that did not work PowerLite flashes. So I'm back to 1 GB. I only have 4 GB left on my 160 GB hard drive. There is nothing on

  • Facetime activation errors since IOS8 update

    IPAD Air (16gig WiFi)  since upgrading to IOS8, I have tried to setup Face Time and keep getting "An error occurred during activation. Try again" or "Could not sign in. Please check your network connection and try again." I have rebooted. I have rese

  • Data pump, Query "1=2" performance?

    Hi guys I am trying to export a schema using data pump however I need no data from a few of the tables since they are irrelevant but I'd still like to have the structure of the table itself along with any constraints and such. I thought of using the

  • COPA - Material Desription

    Hi Experts, I am having problem in COPA drill down reports that material description is not being displayed completely, system turncates description after 20 characters. In report painter, i have increased length of field, but problem not resolved. p