Itunes 8.1 causing program to freeze

After installing the latest version of itunes the program freezes every time I start it up so that I don't have access to any of my music, movies etc. Any ideas?

I too have had this problem and am unable to use itunes in any way. This is the first upgrade that has not kept details of my library or indeed caused ANY PROBLEM. Upon importing my library iTunes then ran through entire library to assess gapless playback. It freezes every time as every time it attempts to do this. I have read posts with various suggestions, one from the Apple team but nothing has worked for us poor users. I'm running v8 on XP pro and wont be upgrading on my Mac, which is a work machine. I have decided that life is too short to mess with this and if Apple want to behave like MS and use their client base to beta test buggy software then it's time to move on. Sorry Apple but I've gone to Songbird which works a treat and beware 'cos Linux is becoming very user friendly and most software runs one **** of a sight better than IT8 does at present!

Similar Messages

  • Font selection in Titler causes program to freeze

    Just had an incident, (several really), where I start a new project, xcreate a title. I can input text but when I try to change the font, the program freezes up and I have to do an alt-cntrl-delete to close Premere.
    Running XP64, 8GB ram, 2 TB HDD. Dual Athlon.

    Along with the tips on troubleshooting, that Eddie posted, I'd look into your fonts. Unfortunately, PrPro's Titler is very sensitive to font corruption. Much more so than Photoshop, InDesign or Illustrator. Why? I do not know, but it is.
    I'd suggest a utility, like Font Doctor (Extensis) to first survey all fonts on your system (installed, plus all others). It will either repair, or offer to delete any that are corrupt. One can do this manually, but it's basically uninstall half, test and either uninstall hafl of that half, and so on. Then reinstall half and test, and so on. On my workstation, it'd take a full day, just to narrow in on the one bad font.
    Curt might be referring to a particular font that installs with Sun Microsystems' OpenOffice. Forget the font's name. Do you have OpenOffice? If so, do an advanced Search for "Jeff Bellune" and "font." and you'll find mention of which one is the bad guy.
    Good luck,
    Hunt

  • CloseCom() causing program freeze

    Hi everyone,
    I have a problem with the CloseCom() function, which sometimes freezes my application when tries to close a COM port. All I can do is terminate the execution of the application through the STOP button, but this does not release the COM port, and the application window does not close. In turn, I am not able to use that serial port again without rebooting the machine.
    I checked this in debug mode and the program flow gets stuck while executing the CloseCom() function, thus I don't know what is the real cause as I don't know how to check deeper. This happens in both debug and release configurations, for both 32 and 64 bits program versions. This happens only with FTDI cables, in particular we use the TTL-232R-5V-AJ ( http://www.ftdichip.com/Products/Cables/USBTTLSeri​al.htm ) to communicate with external hardware. I can exclude it is a problem from a specific cable as I tried several ones, and all fail in the same way.
    This is the code I use for closing the COM port:
    int CVICALLBACK QuitCallback (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
    switch (event)
    case EVENT_COMMIT:
    if(n_com)
    if (hw_type) ComWrtByte (n_com, 0x41);
    else {
    ComWrtByte (n_com, COD_SCHEDA);
    ComWrtByte (n_com, COD_COMMAND_STOP );
    ComWrtByte (n_com, COD_SCHEDA);
    CloseCom (n_com);
    QuitUserInterface (0);
    break;
    return 0;
    By looking at the following post:
    http://forums.ni.com/t5/LabWindows-CVI/CloseCom-ca​using-general-protection-fault/m-p/608518/highligh​...
    it seems it could be a General Protection Fault problem (even if I don't get any error, the program just freezes) as I send bytes just before closing the COM port. Thus I tried to modify the code as follows:
    int CVICALLBACK QuitCallback (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
    switch (event)
    case EVENT_COMMIT:
    if(n_com)
    if (hw_type) ComWrtByte (n_com, 0x41);
    else {
    ComWrtByte (n_com, COD_SCHEDA);
    ComWrtByte (n_com, COD_COMMAND_STOP );
    ComWrtByte (n_com, COD_SCHEDA);
    FlushInQ(n_com);
    FlushOutQ(n_com);
    Delay(0.1);
    CloseCom (n_com);
    QuitUserInterface (0);
    break;
    return 0;
    ----- OR -----
    int CVICALLBACK QuitCallback (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
    switch (event)
    case EVENT_COMMIT:
    if(n_com)
    if (hw_type) ComWrtByte (n_com, 0x41);
    else {
    ComWrtByte (n_com, COD_SCHEDA);
    ComWrtByte (n_com, COD_COMMAND_STOP );
    ComWrtByte (n_com, COD_SCHEDA);
    while(GetOutQLen(n_com)>0){};
    CloseCom (n_com);
    QuitUserInterface (0);
    break;
    return 0;
    with no success. As I said, the problem seems to show up only with that cable type (other devices attached through their own serial/USB cables never fail). However, the same cable does not fail when used in other environments, such as MATLAB.
    I am using LabWindows/CVI 2010 version 10.0.1 (434). I would like to avoid to update the system as this usually is a time consuming operation.
    Please let me know if you need any other information
    Thank you in advance

    Three Ideas:
    First:
    With our application I observed that "CloseCom()" causes an USB connection termination.
    We have a USB device which creates an virtual COM-port and by a random type of "CloseCom" I get that USB-communication termination.
    With a newer driver I face that problem less.
    --> Maybe the driver itself is the problem. Do you use the most actual COM-port driver?
    Second:
    If possible use a "real" COM-port.
    If not possible use a "better" virtual COM-port, e.g. "http://www.vscom.de/commercial-line.htm". (Or from some other company with an "industrial product line".)
    Because the "cheap" virtual COM's are not that reliable as these which are developed for "industrial purposes".
    Third:
    I faced some problems with the COM-communication since NI made it's driver MS-compliant. Especially if you have a long lasting "ping-pong"-communication between the PC and the COM-device. I developed a "new" function instead of delivered "ComWrtByte" with that function I alwas wait as long as "GetOutQLen(...)>0". In that function I have also programmed a timeout time (number of wait-loops for "GetOutQLen(...)>0").
    I had massive problems as long as I used only the lib-function "ComWrtByte" for my "ping-pong"-communication. After introducing my own "WriteByteAndWaitOutQEmptyImpr"-function my programs have no problems with unforseen corruption of the COM-communication. They run as stable as in former times (LabWindows 5.1). With error-handling such a improved "ComWrtByte"-function is more complex than only a few program lines.
    Especially with these virtual COM's you should check every communication step that the Output-Queue is empty, before you continue. In comparison to the "real"-COM-ports these virtual ones are very slowly. My experiences are that the "real" ones have reaction times in milli-seconds and the virtual ones have reaction times about some houndred milli-seconds! So you can easily be in trouble by that fact.
    I hope one or some of these ideas will help.

  • Downloading itunes causes computer to freeze because of high computer usage...how do i fix it?

    downloading itunes causes computer to freeze because of high computer usage...how do i fix it?

    With the Error 2, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • ITunes slow, "Do not disconnect" and freezing - how I fixed it

    Ok, I don't know how many people this might help but I thought I would post how I managed to fix my iTunes.
    I was experiencing various problems. Firstly, when starting up iTunes it would just give hourglass, stop, then boot up the program 1 minute later. Any action I did would cause the program to freeze for a while before it started the action I asked it to. The iPod would also never eject and would stick on "Do Not Disconnect". Any CD's I inserted would cause it to freeze. Sometimes iTunes wouldn't recognize that the iPod was inserted. It also consumed 100% of my CPU resources ALL the time, and would occasionally force me to reboot. Rebooting with iPod inserted would cause my PC to stick at the Mobo manufacturer screen and wouldn't boot at all until iPod was removed...
    The list of things that made it not work is endless...
    This fix is pretty simple, although it might not work for all. There seems to be a problem with the path letter assigned to the iPod when it is connected. If, like me you run your system boot on a path other than "C" and have no other drives attached to "C" then when you insert the iPod it will default the HD it creates to "C" - iTunes does not like this - your PC does not like this - Windows doesn't like it either! So, you could change it's path to something else but then every time you connect your iPod it will keep defaulting to "C".
    So, you need to create a HD of sorts and assign it to "C" so that the iPod can never obtain that path when it's connected each time. Either create a small partition of an existing HD or install something like Daemon Tools and assign it's virtual drive to take up the "C" path.
    As soon as I did this everything runs perfectly. No freezing whatsoever, iTunes works perfectly, no freezing ever, ejecting and inserting my iPod and CD's works fine. In fact, it all works fine!
    I hope this might help at least a few people who are suffering with not being able to run their iPod Nano.

    First of all, try another port on your computer. Some ports are not connected direct to the motherboard and do not recognize the iPod as well as those that are.
    Still no joy? See these.
    iPod doesn't appear in iTunes or on the Mac desktop.
    iPod does not appear in iPod Updater or iTunes in Mac OS X.
    iPod appears on the Mac OS X desktop but not in iTunes.
    Try it in disk mode.
    Putting iPod into disk mode.

  • Plugging in iPod causes it to freeze (EVERY time)

    I'm at my wit's end with this iPod.
    I have a 60gig 5th Gen iPod Video, which worked absolutely fine and synced with my PC with no problems. Then a few months ago, I plugged my iPod into the PC and it loaded up the 'Do no disconnect' screen, then just froze. iTunes wouldn't recognise it, and no matter what I did (rebooted computer, unplugged iPod, etc etc) it just remained frozen on that screen. Rebooting by pressing the 'play' and 'center' buttons (which I'm quite used to doing, as it's often required me to do that just to turn it on ever since I bought it) does not work.
    With any other product, there'd be a little 'reset' button you jab with the end of a pencil; but the iPod appears only to reset via the 'push and hold the play button and another button' method which - when it freezes like mine does - doesn't work. In order to reset it I am therefore forced to leave it on {I've no way of turning it off anyway} and leaving it until the battery drains. Once it's drained I plug it in and it seems ok, but the NEXT time I plug my iPod in it freezes and does the exact same thing again!
    Points to note:
    * A friend charged their iPod on my computer with my cable, and had no problems
    * If I plug the iPod in before opening iTunes, iTunes refuses to open.
    * I formatted my entire PC, and not even reinstalling Windows fixed this
    * When it's connected/disconnected, Windows makes that 'something's connected' noise.
    * When I've 'rebooted' by letting the battery drain, and temporarily got it syncing with iTunes successfully, I've done the "restore original settings" thing. But the problem still remains. I managed to make it do an 'iPod Diagnostics' thing, the results of which are as follows.
    If anyone can offer ANY help at all, please please please do. I've just plugged it in for the umpteenth time just now and, yet again, it's frozen and iTunes is refusing to open.
    --- iPod Diagnostics ---
    Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    NVIDIA AWRDACPI
    iTunes 7.0.2.16
    iPodService 7.0.2.16 is currently running.
    iTunesHelper 7.0.2.16 is currently running.
    Current user is an administrator.
    Connected Storage Devices:
    IDE\DiskST3250823AS____________________________3.03___, Bus Type ATA, Bus Address [0,0]
    IDE\DiskST3250823AS____________________________3.03___, Bus Type ATA, Bus Address [2,0]
    USBSTOR\DiskApple__iPod___________1.62, Bus Type USB
    USBSTOR\DiskVIA-P__VT6205-DevB____2.82, Bus Type USB
    USBSTOR\DiskVIA-P__VT6205-DevM____2.82
    Universal Serial Bus Controllers:
    Standard OpenHCD USB Host Controller, PCI bus 0, device 2, function 0. Device is working properly.
    Standard Enhanced PCI to USB Host Controller, PCI bus 0, device 2, function 1. Device is working properly.
    VIA Rev 5 or later USB Universal Host Controller, PCI bus 5, device 8, function 0. Device is working properly.
    VIA USB Enhanced Host Controller, PCI bus 5, device 8, function 2. Device is working properly.
    IEEE 1394 Host Controllers:
    Texas Instruments OHCI Compliant IEEE 1394 Host Controller, PCI bus 5, device 7, function 0. Device is working properly.
    VIA OHCI Compliant IEEE 1394 Host Controller, PCI bus 5, device 8, function 3. Device is working properly.
    Connected Device Information
    NOVAPOD, iPod with video running firmware version 1.2.1
    Serial Number: JQ5539G0TXL
    Bus Speed: 61440
    The last connected iPod serial number: JQ5539G0TXL.
    The iPod Service Logging Information:
    [SERVICE: 0xEFC,11:26:40 INFO] looking up device # for \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0xEFC,11:26:40 INFO] type 0x7 drive 0x4 partition 0x0
    [SERVICE: 0xEFC,11:26:40 INFO] looking up device # for \\.\D:
    [SERVICE: 0xEFC,11:26:40 INFO] type 0x7 drive 0x1 partition 0x1
    [SERVICE: 0xEFC,11:26:40 INFO] [SIMULATED INTERFACE ARRIVAL] generating connect event for device 1
    [SERVICE: 0xEF4,11:26:40 INFO] [MACHINE 1 INPUT #43] - (HDW) Volume Mount
    [SERVICE: 0xEF4,11:26:40 INFO] [MACHINE 1 TRANSITION] - {Connected} ==> {Mounted}
    [SERVICE: 0xEFC,11:26:40 INFO] looking up device # for \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0xEFC,11:26:40 INFO] type 0x7 drive 0x4 partition 0x0
    [SERVICE: 0xEF4,11:26:40 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,11:26:40 INFO] [MACHINE 1 ACTIONS] - {Mounted}
    [SERVICE: 0xEF4,11:26:40 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0xEF4,11:26:40 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0xEF4,11:26:40 ERROR] Did not find first letter of stage
    [SERVICE: 0xEF4,11:26:40 INFO] got HotPlugState 0
    [SERVICE: 0xEFC,11:26:52 INFO] [VolumeArrive] mask = 0x100
    [SERVICE: 0xEFC,11:26:52 INFO] looking up device # for \\.\I:
    [SERVICE: 0xEFC,11:26:52 INFO] type 0x7 drive 0x4 partition 0x1
    [SERVICE: 0xEFC,11:26:52 INFO] iTunes device #4 found with drive letter I, mask 0x100
    [SERVICE: 0xEFC,11:26:52 INFO] [1] set waiting to mount = 0
    [SERVICE: 0xEFC,11:26:52 INFO] [1] input #44 from src #0
    [SERVICE: 0xEFC,11:26:52 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,11:26:52 INFO] [1] input #45 from src #0
    [SERVICE: 0xEF4,11:26:53 INFO] [1] OS says filesystem is FAT32
    [SERVICE: 0xEF4,11:26:53 INFO] File does not exist!
    [SERVICE: 0xEF4,11:26:53 INFO] [1] iTunes Preference file does not exist!
    [SERVICE: 0xEF4,11:26:53 INFO] [1] ===== iPod with Video =====
    [SERVICE: 0xEF4,11:26:53 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0xEF4,11:26:53 INFO] 11:26:53, year 2007, day of yr. 16, GMT offset 0 isDST 0
    [SERVICE: 0xEF4,11:26:53 INFO] [1] progress is now 0
    [SERVICE: 0xF00,11:26:53 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xF00,11:26:53 INFO] Mounted
    [SERVICE: 0xF00,11:26:53 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xF00,11:26:53 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xED0,11:26:53 INFO] Mounted
    [SERVICE: 0xED0,11:26:53 INFO] [1] already mounted!
    [SERVICE: 0xEF4,11:26:54 INFO] [1] *** MOUNTED - Sending event out, device session 0.
    [SERVICE: 0xEF4,11:26:54 INFO] [1] Auto-launch iTunes ENABLED
    [SERVICE: 0xEF4,11:26:54 INFO] iTunes located at 'C:\Program Files\iTunes\iTunes.exe'
    [SERVICE: 0xED0,11:26:54 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0xED0,11:26:54 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0xED0,11:26:54 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xED0,11:26:54 INFO] Mounted
    [SERVICE: 0xED0,11:26:54 INFO] SUCCESS
    [SERVICE: 0xED0,11:26:55 INFO] Volume lock success!
    [SERVICE: 0xED0,11:26:55 INFO] total locks = 0, caller = 3792, caller locks = 0
    [SERVICE: 0xED0,11:26:55 INFO] [1] input #46 from src #314326
    [SERVICE: 0xEB8,11:26:55 INFO] iTunes already running in current session.
    [SERVICE: 0xEF4,11:26:55 INFO] [1] input #44
    [SERVICE: 0xEF0,11:26:55 INFO] [1] input #45
    [SERVICE: 0xEF4,11:26:55 INFO] [MACHINE 1 INPUT #44] - (HDW) Volume Mount
    [SERVICE: 0xEF4,11:26:55 INFO] ** CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xEF4,11:26:55 INFO] [1] input #46
    [SERVICE: 0xEF0,11:26:55 INFO] [MACHINE 1 INPUT #45] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,11:26:55 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,11:26:55 INFO] [MACHINE 1 INPUT #46] - (APP) RecoverFromIntermediate
    [SERVICE: 0xEF4,11:26:55 INFO] [1] progress is now 2
    [SERVICE: 0xEF4,11:26:55 INFO] Mounted
    [SERVICE: 0xEF4,11:26:55 INFO] Device 0 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xEF4,11:26:55 INFO] Device 0 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xEF4,11:26:55 INFO] [MACHINE 1 TRANSITION] - {iTunesPseudoMounting} ==> {Mounted}
    [SERVICE: 0xED0,11:26:55 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0xED0,11:26:55 INFO] [1] Mount in progress, wait till finish...
    [SERVICE: 0xEF4,11:26:55 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,11:26:55 INFO] [1] *** iTunesPseudoMounting state finalizing internal mount
    [SERVICE: 0xEF4,11:26:55 INFO] total locks = 1, caller = 3828, caller locks = 1
    [SERVICE: 0xEF4,11:26:55 INFO] SUCCESS
    [SERVICE: 0xEF4,11:26:56 INFO] Volume lock success!
    [SERVICE: 0xEF4,11:26:56 INFO] total locks = 0, caller = 3828, caller locks = 0
    [SERVICE: 0xEF4,11:26:56 INFO] [1] Finished Mounting with status 1
    [SERVICE: 0xEF4,11:26:56 INFO] [MACHINE 1 ACTIONS] - {Mounted}
    [SERVICE: 0xEF4,11:26:56 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0xEF4,11:26:56 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0xEF4,11:26:56 ERROR] Did not find first letter of stage
    [SERVICE: 0xEF4,11:26:56 INFO] got HotPlugState 0
    [SERVICE: 0xEF4,11:26:56 INFO] [1] OS says filesystem is FAT32
    [SERVICE: 0xEF4,11:26:56 INFO] File does not exist!
    [SERVICE: 0xEF4,11:26:56 INFO] [1] iTunes Preference file does not exist!
    [SERVICE: 0xEF4,11:26:56 INFO] [1] ===== iPod with Video =====
    [SERVICE: 0xEF4,11:26:56 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0xEF4,11:26:56 INFO] 11:26:56, year 2007, day of yr. 16, GMT offset 0 isDST 0
    [SERVICE: 0xEF4,11:26:56 INFO] [1] progress is now 0
    [SERVICE: 0xED0,11:26:56 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0x6D0,11:26:56 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0xF00,11:26:56 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xF00,11:26:56 INFO] Mounted
    [SERVICE: 0xF00,11:26:56 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xF00,11:26:56 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xED0,11:26:56 INFO] <0x4> COM request for device 1 drive letter - I
    [SERVICE: 0xEF4,11:26:57 INFO] [1] *** MOUNTED - Sending event out, device session 0.
    [SERVICE: 0xF00,11:26:58 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xF00,11:26:58 INFO] Mounted
    [SERVICE: 0xF00,11:26:58 INFO] Device 1 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0xF00,11:26:58 INFO] Device 1 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0xED0,11:26:58 INFO] Mounted
    [SERVICE: 0xED0,11:26:58 INFO] [1] already mounted!
    [SERVICE: 0xED0,11:26:58 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0xF00,11:27:03 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0x6D0,11:27:03 INFO] File does not exist!
    [SERVICE: 0x6D0,11:27:27 INFO] <0x4> GetFormatType() returned unknown format 0
    [SERVICE: 0xEFC,12:24:26 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:24:26 INFO] [1] input #47 from src #0
    [SERVICE: 0xEEC,12:24:27 INFO] [1] input #47
    [SERVICE: 0xEEC,12:24:27 INFO] [MACHINE 1 INPUT #47] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,12:24:27 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,12:24:28 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:24:28 INFO] [1] input #48 from src #0
    [SERVICE: 0xEF0,12:24:28 INFO] [1] input #48
    [SERVICE: 0xEF0,12:24:28 INFO] [MACHINE 1 INPUT #48] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,12:24:28 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,12:24:28 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:24:28 INFO] [1] input #49 from src #0
    [SERVICE: 0xEF4,12:24:28 INFO] [1] input #49
    [SERVICE: 0xEF4,12:24:29 INFO] [MACHINE 1 INPUT #49] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,12:24:29 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0x1B0,12:45:37 INFO] Mounted
    [SERVICE: 0x1B0,12:45:37 INFO] Device 0 is FAT32 and appears mounted, checking intermediate state...
    [SERVICE: 0x1B0,12:45:37 INFO] Device 0 not in intermediate state. It appears to be truly mounted.
    [SERVICE: 0x1B0,12:45:37 INFO] [1] input #50 from src #314326
    [SERVICE: 0xEEC,12:45:37 INFO] [1] input #50
    [SERVICE: 0xEEC,12:45:37 INFO] [MACHINE 1 INPUT #50] - (APP) Mountlock Unmount
    [SERVICE: 0xEEC,12:45:37 INFO] [1] Begin Unmounting...
    [SERVICE: 0xEEC,12:45:37 INFO] [1] progress is now 3
    [SERVICE: 0xEEC,12:45:37 INFO] total locks = 1, caller = 3820, caller locks = 1
    [SERVICE: 0xEEC,12:45:37 INFO] Ejecting media
    [SERVICE: 0xEEC,12:45:37 INFO] SUCCESS
    [SERVICE: 0xEEC,12:45:38 INFO] Volume lock success!
    [SERVICE: 0xEEC,12:45:38 INFO] total locks = 2, caller = 3820, caller locks = 2
    [SERVICE: 0xEEC,12:45:39 INFO] CMQuery_And_RemoveSubTreeW stop
    [SERVICE: 0xEFC,12:45:40 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:45:40 INFO] [1] input #51 from src #0
    [SERVICE: 0xEF0,12:45:40 INFO] [1] input #51
    [SERVICE: 0xEFC,12:45:40 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:45:40 INFO] [1] input #52 from src #0
    [SERVICE: 0xEF4,12:45:40 INFO] [1] input #52
    [SERVICE: 0xEEC,12:45:40 INFO] CMQuery_And_RemoveSubTreeW took 703 ms
    [SERVICE: 0xEEC,12:45:40 INFO] total locks = 1, caller = 3820, caller locks = 1
    [SERVICE: 0xEEC,12:45:40 INFO] total locks = 0, caller = 3820, caller locks = 0
    [SERVICE: 0xEEC,12:45:40 INFO] [1] Finished Unmounting with status 1
    [SERVICE: 0xEEC,12:45:40 INFO] NOT Mounted
    [SERVICE: 0xEEC,12:45:40 INFO] [1] ** NOT in intermediate state, device is Mounted
    [SERVICE: 0xEEC,12:45:40 INFO] [MACHINE 1 TRANSITION] - {Mounted} ==> {iTunesPseudoUnmounting}
    [SERVICE: 0xC68,12:45:40 INFO] [1] Progress state is 3, Waiting to disconnect = 0
    [SERVICE: 0xEEC,12:45:40 INFO] [MACHINE 1 ACTIONS] - {iTunesPseudoUnmounting}
    [SERVICE: 0xEF0,12:45:40 INFO] [MACHINE 1 INPUT #51] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,12:45:40 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,12:45:40 INFO] [MACHINE 1 INPUT #52] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,12:45:40 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,12:45:40 INFO] [VolumeRemoved] existing mask 0x100, arrive mask 0x100
    [SERVICE: 0xEFC,12:45:40 INFO] [1] value = 1
    [SERVICE: 0xEFC,12:45:40 INFO] [1] input #53 from src #0
    [SERVICE: 0xEEC,12:45:40 INFO] [1] input #53
    [SERVICE: 0xEFC,12:45:40 INFO] [InterfaceRemoved]
    [SERVICE: 0xEFC,12:45:40 INFO] [1] value = 0
    [SERVICE: 0xEFC,12:45:40 INFO] removed device number 4 from m_objDeviceNumberMap
    [SERVICE: 0xEFC,12:45:40 INFO] [1] input #54 from src #0
    [SERVICE: 0xEF0,12:45:40 INFO] [1] input #54
    [SERVICE: 0xEEC,12:45:40 INFO] [MACHINE 1 INPUT #53] - (HDW) Volume Unmount
    [SERVICE: 0xEEC,12:45:40 INFO] [1] progress is now 3
    [SERVICE: 0xEEC,12:45:40 INFO] [1] Setting progress to 3
    [SERVICE: 0xEEC,12:45:40 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xEF0,12:45:40 INFO] [MACHINE 1 INPUT #54] - (HDW) Interface Removal
    [SERVICE: 0xEF0,12:45:40 INFO] [MACHINE 1 TRANSITION] - {iTunesPseudoUnmounting} ==> {iTunesPseudoUnmounted}
    [SERVICE: 0xEF0,12:45:40 INFO] [MACHINE 1 ACTIONS] - {iTunesPseudoUnmounted}
    [SERVICE: 0xEF0,12:45:40 INFO] [1] *** iTunesPseudoUnmounted - Sending event out, device session 0
    [SERVICE: 0xEF0,12:45:40 INFO] [1] progress is now 0
    [SERVICE: 0xEFC,12:55:30 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:55:30 INFO] [1] input #55 from src #0
    [SERVICE: 0xEF4,12:55:30 INFO] [1] input #55
    [SERVICE: 0xEFC,12:55:30 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:55:30 INFO] [1] input #56 from src #0
    [SERVICE: 0xEFC,12:55:31 INFO] [InterfaceArrival] \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0xEFC,12:55:31 INFO] type 0x7 drive 0x4 partition 0x0
    [SERVICE: 0xEFC,12:55:31 INFO] [1] set waiting to mount = 1
    [SERVICE: 0xEFC,12:55:31 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_objDeviceNameMap
    [SERVICE: 0xEFC,12:55:31 INFO] [1] added state machine 1 to m_objDeviceIdMap
    [SERVICE: 0xEFC,12:55:31 INFO] [1] added device number 4 to m_objDeviceNumberMap
    [SERVICE: 0xEFC,12:55:31 INFO] [1] input #57 from src #0
    [SERVICE: 0xEFC,12:55:31 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:55:31 INFO] [1] input #58 from src #0
    [SERVICE: 0xEF0,12:55:31 INFO] [1] input #56
    [SERVICE: 0xEFC,12:55:31 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:55:31 INFO] [1] input #59 from src #0
    [SERVICE: 0xEEC,12:55:31 INFO] [1] input #57
    [SERVICE: 0xEF4,12:55:31 INFO] [MACHINE 1 INPUT #55] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,12:55:31 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,12:55:31 INFO] [MACHINE 1 INPUT #56] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,12:55:31 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEEC,12:55:31 INFO] [MACHINE 1 INPUT #57] - (HDW) Interface Arrival
    [SERVICE: 0xEEC,12:55:31 INFO] [1] progress state is 2, Waiting to mount = 1
    [SERVICE: 0xEEC,12:55:31 INFO] [1] progress is now 2
    [SERVICE: 0xEEC,12:55:31 INFO] [1] progress is now 2
    [SERVICE: 0xEEC,12:55:31 INFO] [MACHINE 1 TRANSITION] - {iTunesPseudoUnmounted} ==> {FalsePseudoMounting}
    [SERVICE: 0xEEC,12:55:31 INFO] [1] input #58
    [SERVICE: 0xEF0,12:55:31 INFO] [1] input #59
    [SERVICE: 0xEFC,12:55:31 INFO] [VolumeArrive] mask = 0x100
    [SERVICE: 0xEFC,12:55:31 INFO] looking up device # for \\.\I:
    [SERVICE: 0xEFC,12:55:31 INFO] type 0x7 drive 0x4 partition 0x1
    [SERVICE: 0xEFC,12:55:31 INFO] iTunes device #4 found with drive letter I, mask 0x100
    [SERVICE: 0xEFC,12:55:31 INFO] [1] set waiting to mount = 0
    [SERVICE: 0xEFC,12:55:31 INFO] [1] input #60 from src #0
    [SERVICE: 0xEFC,12:55:31 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:55:31 INFO] [1] input #61 from src #0
    [SERVICE: 0xEFC,12:55:31 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:55:31 INFO] [1] input #62 from src #0
    [SERVICE: 0xEF4,12:55:31 INFO] [1] input #60
    [SERVICE: 0xEEC,12:55:31 INFO] [MACHINE 1 INPUT #58] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,12:55:31 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,12:55:31 INFO] [MACHINE 1 INPUT #59] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,12:55:31 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,12:55:31 INFO] [1] input #61
    [SERVICE: 0xEF4,12:55:31 INFO] [MACHINE 1 INPUT #60] - (HDW) Volume Mount
    [SERVICE: 0xEF4,12:55:31 INFO] [MACHINE 1 TRANSITION] - {FalsePseudoMounting} ==> {FalseMounted}
    [SERVICE: 0xEF4,12:55:31 INFO] [MACHINE 1 ACTIONS] - {FalseMounted}
    [SERVICE: 0xEF4,12:55:31 INFO] [1] Begin Unmounting...
    [SERVICE: 0xEF4,12:55:31 INFO] [1] progress is now 3
    [SERVICE: 0xEF4,12:55:31 INFO] total locks = 1, caller = 3828, caller locks = 1
    [SERVICE: 0xEF4,12:55:31 INFO] Ejecting media
    [SERVICE: 0xEF4,12:55:31 INFO] SUCCESS
    [SERVICE: 0xEF4,12:55:31 INFO] Volume lock success!
    [SERVICE: 0xEF4,12:55:31 INFO] total locks = 2, caller = 3828, caller locks = 2
    [SERVICE: 0xEEC,12:55:31 INFO] [1] input #62
    [SERVICE: 0xEF0,12:55:31 INFO] [MACHINE 1 INPUT #61] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,12:55:31 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEEC,12:55:32 INFO] [MACHINE 1 INPUT #62] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,12:55:32 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,12:55:33 INFO] CMQuery_And_RemoveSubTreeW stop
    [SERVICE: 0xEFC,12:55:46 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:55:46 INFO] [1] input #63 from src #0
    [SERVICE: 0xEF0,12:55:46 INFO] [1] input #63
    [SERVICE: 0xEFC,12:55:46 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:55:46 INFO] [1] input #64 from src #0
    [SERVICE: 0xEEC,12:55:46 INFO] [1] input #64
    [SERVICE: 0xEFC,12:55:46 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:55:46 INFO] [1] input #65 from src #0
    [SERVICE: 0xEF4,12:55:46 INFO] CMQuery_And_RemoveSubTreeW took 13813 ms
    [SERVICE: 0xEF4,12:55:46 INFO] total locks = 1, caller = 3828, caller locks = 1
    [SERVICE: 0xEF4,12:55:46 INFO] total locks = 0, caller = 3828, caller locks = 0
    [SERVICE: 0xEF4,12:55:46 INFO] [1] Finished Unmounting with status 1
    [SERVICE: 0xEF4,12:55:46 INFO] [1] input #65
    [SERVICE: 0xEF0,12:55:47 INFO] [MACHINE 1 INPUT #63] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,12:55:47 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEEC,12:55:47 INFO] [MACHINE 1 INPUT #64] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,12:55:47 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,12:55:47 INFO] [MACHINE 1 INPUT #65] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,12:55:47 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,12:55:47 INFO] [VolumeRemoved] existing mask 0x100, arrive mask 0x100
    [SERVICE: 0xEFC,12:55:47 INFO] [1] value = 1
    [SERVICE: 0xEFC,12:55:47 INFO] [1] input #66 from src #0
    [SERVICE: 0xEF0,12:55:47 INFO] [1] input #66
    [SERVICE: 0xEFC,12:55:47 INFO] [InterfaceRemoved]
    [SERVICE: 0xEFC,12:55:47 INFO] [1] value = 0
    [SERVICE: 0xEFC,12:55:47 INFO] removed device number 4 from m_objDeviceNumberMap
    [SERVICE: 0xEFC,12:55:47 INFO] [1] input #67 from src #0
    [SERVICE: 0xEEC,12:55:47 INFO] [1] input #67
    [SERVICE: 0xEF0,12:55:47 INFO] [MACHINE 1 INPUT #66] - (HDW) Volume Unmount
    [SERVICE: 0xEF0,12:55:47 INFO] [1] progress is now 3
    [SERVICE: 0xEF0,12:55:47 INFO] [1] Setting progress to 3
    [SERVICE: 0xEF0,12:55:47 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xEEC,12:55:47 INFO] [MACHINE 1 INPUT #67] - (HDW) Interface Removal
    [SERVICE: 0xEEC,12:55:47 INFO] [MACHINE 1 TRANSITION] - {FalseMounted} ==> {iTunesPseudoUnmounted}
    [SERVICE: 0xEEC,12:55:47 INFO] [MACHINE 1 ACTIONS] - {iTunesPseudoUnmounted}
    [SERVICE: 0xEEC,12:55:47 INFO] [1] *** iTunesPseudoUnmounted - Sending event out, device session 0
    [SERVICE: 0xEEC,12:55:47 INFO] [1] progress is now 0
    [SERVICE: 0xEFC,12:56:08 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:08 INFO] [1] input #68 from src #0
    [SERVICE: 0xEF4,12:56:08 INFO] [1] input #68
    [SERVICE: 0xEFC,12:56:08 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:08 INFO] [1] input #69 from src #0
    [SERVICE: 0xEF0,12:56:08 INFO] [1] input #69
    [SERVICE: 0xEF4,12:56:09 INFO] [MACHINE 1 INPUT #68] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,12:56:09 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,12:56:09 INFO] [MACHINE 1 INPUT #69] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,12:56:09 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,12:56:09 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:09 INFO] [1] input #70 from src #0
    [SERVICE: 0xEEC,12:56:09 INFO] [1] input #70
    [SERVICE: 0xEFC,12:56:09 INFO] [InterfaceArrival] \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0xEFC,12:56:09 INFO] type 0x7 drive 0x4 partition 0x0
    [SERVICE: 0xEFC,12:56:09 INFO] [1] set waiting to mount = 1
    [SERVICE: 0xEFC,12:56:09 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_objDeviceNameMap
    [SERVICE: 0xEFC,12:56:09 INFO] [1] added state machine 1 to m_objDeviceIdMap
    [SERVICE: 0xEFC,12:56:09 INFO] [1] added device number 4 to m_objDeviceNumberMap
    [SERVICE: 0xEFC,12:56:09 INFO] [1] input #71 from src #0
    [SERVICE: 0xEF4,12:56:09 INFO] [1] input #71
    [SERVICE: 0xEFC,12:56:09 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:09 INFO] [1] input #72 from src #0
    [SERVICE: 0xEF0,12:56:09 INFO] [1] input #72
    [SERVICE: 0xEFC,12:56:09 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:09 INFO] [1] input #73 from src #0
    [SERVICE: 0xEEC,12:56:09 INFO] [MACHINE 1 INPUT #70] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,12:56:09 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,12:56:09 INFO] [MACHINE 1 INPUT #71] - (HDW) Interface Arrival
    [SERVICE: 0xEF4,12:56:09 INFO] [1] progress state is 2, Waiting to mount = 1
    [SERVICE: 0xEF4,12:56:09 INFO] [1] progress is now 2
    [SERVICE: 0xEF4,12:56:09 INFO] [1] progress is now 2
    [SERVICE: 0xEF0,12:56:09 INFO] [MACHINE 1 INPUT #72] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,12:56:09 INFO] [MACHINE 1 TRANSITION] - {iTunesPseudoUnmounted} ==> {FalsePseudoMounting}
    [SERVICE: 0xEF0,12:56:09 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,12:56:09 INFO] [1] input #73
    [SERVICE: 0xEFC,12:56:09 INFO] [VolumeArrive] mask = 0x100
    [SERVICE: 0xEFC,12:56:09 INFO] looking up device # for \\.\I:
    [SERVICE: 0xEFC,12:56:09 INFO] type 0x7 drive 0x4 partition 0x1
    [SERVICE: 0xEFC,12:56:09 INFO] iTunes device #4 found with drive letter I, mask 0x100
    [SERVICE: 0xEFC,12:56:09 INFO] [1] set waiting to mount = 0
    [SERVICE: 0xEFC,12:56:09 INFO] [1] input #74 from src #0
    [SERVICE: 0xEFC,12:56:09 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:09 INFO] [1] input #75 from src #0
    [SERVICE: 0xEF4,12:56:09 INFO] [1] input #74
    [SERVICE: 0xEEC,12:56:09 INFO] [1] input #75
    [SERVICE: 0xEF0,12:56:09 INFO] [MACHINE 1 INPUT #73] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,12:56:09 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,12:56:09 INFO] [MACHINE 1 INPUT #74] - (HDW) Volume Mount
    [SERVICE: 0xEF4,12:56:09 INFO] [MACHINE 1 TRANSITION] - {FalsePseudoMounting} ==> {FalseMounted}
    [SERVICE: 0xEF4,12:56:09 INFO] [MACHINE 1 ACTIONS] - {FalseMounted}
    [SERVICE: 0xEF4,12:56:09 INFO] [1] Begin Unmounting...
    [SERVICE: 0xEF4,12:56:09 INFO] [1] progress is now 3
    [SERVICE: 0xEF4,12:56:09 INFO] total locks = 1, caller = 3828, caller locks = 1
    [SERVICE: 0xEF4,12:56:09 INFO] Ejecting media
    [SERVICE: 0xEEC,12:56:09 INFO] [MACHINE 1 INPUT #75] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,12:56:10 INFO] SUCCESS
    [SERVICE: 0xEF4,12:56:10 INFO] Volume lock success!
    [SERVICE: 0xEF4,12:56:10 INFO] total locks = 2, caller = 3828, caller locks = 2
    [SERVICE: 0xEEC,12:56:10 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,12:56:11 INFO] CMQuery_And_RemoveSubTreeW stop
    [SERVICE: 0xEFC,12:56:11 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:11 INFO] [1] input #76 from src #0
    [SERVICE: 0xEF0,12:56:11 INFO] [1] input #76
    [SERVICE: 0xEFC,12:56:11 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:11 INFO] [1] input #77 from src #0
    [SERVICE: 0xEEC,12:56:11 INFO] [1] input #77
    [SERVICE: 0xEF4,12:56:11 INFO] CMQuery_And_RemoveSubTreeW took 47 ms
    [SERVICE: 0xEF4,12:56:11 INFO] total locks = 1, caller = 3828, caller locks = 1
    [SERVICE: 0xEF4,12:56:11 INFO] total locks = 0, caller = 3828, caller locks = 0
    [SERVICE: 0xEF4,12:56:11 INFO] [1] Finished Unmounting with status 1
    [SERVICE: 0xEF0,12:56:11 INFO] [MACHINE 1 INPUT #76] - (HDW) CheckDevNode
    [SERVICE: 0xEFC,12:56:11 INFO] [VolumeRemoved] existing mask 0x100, arrive mask 0x100
    [SERVICE: 0xEFC,12:56:11 INFO] [1] value = 1
    [SERVICE: 0xEFC,12:56:11 INFO] [1] input #78 from src #0
    [SERVICE: 0xEFC,12:56:11 INFO] [InterfaceRemoved]
    [SERVICE: 0xEFC,12:56:11 INFO] [1] value = 0
    [SERVICE: 0xEFC,12:56:11 INFO] removed device number 4 from m_objDeviceNumberMap
    [SERVICE: 0xEF0,12:56:11 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEEC,12:56:11 INFO] [MACHINE 1 INPUT #77] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,12:56:11 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,12:56:11 INFO] [1] input #79 from src #0
    [SERVICE: 0xEEC,12:56:11 INFO] [1] input #78
    [SERVICE: 0xEF4,12:56:11 INFO] [1] input #79
    [SERVICE: 0xEEC,12:56:11 INFO] [MACHINE 1 INPUT #78] - (HDW) Volume Unmount
    [SERVICE: 0xEEC,12:56:11 INFO] [1] progress is now 3
    [SERVICE: 0xEEC,12:56:11 INFO] [1] Setting progress to 3
    [SERVICE: 0xEEC,12:56:11 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xEF4,12:56:11 INFO] [MACHINE 1 INPUT #79] - (HDW) Interface Removal
    [SERVICE: 0xEF4,12:56:11 INFO] [MACHINE 1 TRANSITION] - {FalseMounted} ==> {iTunesPseudoUnmounted}
    [SERVICE: 0xEF4,12:56:11 INFO] [MACHINE 1 ACTIONS] - {iTunesPseudoUnmounted}
    [SERVICE: 0xEF4,12:56:11 INFO] [1] *** iTunesPseudoUnmounted - Sending event out, device session 0
    [SERVICE: 0xEF4,12:56:11 INFO] [1] progress is now 0
    [SERVICE: 0xEFC,12:56:14 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:14 INFO] [1] input #80 from src #0
    [SERVICE: 0xEF0,12:56:14 INFO] [1] input #80
    [SERVICE: 0xEFC,12:56:14 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:14 INFO] [1] input #81 from src #0
    [SERVICE: 0xEEC,12:56:14 INFO] [1] input #81
    [SERVICE: 0xEFC,12:56:14 INFO] [InterfaceArrival] \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0xEFC,12:56:14 INFO] type 0x7 drive 0x4 partition 0x0
    [SERVICE: 0xEFC,12:56:14 INFO] [1] set waiting to mount = 1
    [SERVICE: 0xEFC,12:56:14 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_objDeviceNameMap
    [SERVICE: 0xEFC,12:56:14 INFO] [1] added state machine 1 to m_objDeviceIdMap
    [SERVICE: 0xEFC,12:56:14 INFO] [1] added device number 4 to m_objDeviceNumberMap
    [SERVICE: 0xEFC,12:56:14 INFO] [1] input #82 from src #0
    [SERVICE: 0xEF4,12:56:14 INFO] [1] input #82
    [SERVICE: 0xEFC,12:56:14 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:14 INFO] [1] input #83 from src #0
    [SERVICE: 0xEFC,12:56:14 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:14 INFO] [1] input #84 from src #0
    [SERVICE: 0xEF0,12:56:14 INFO] [MACHINE 1 INPUT #80] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,12:56:14 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEEC,12:56:14 INFO] [MACHINE 1 INPUT #81] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,12:56:14 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,12:56:14 INFO] [MACHINE 1 INPUT #82] - (HDW) Interface Arrival
    [SERVICE: 0xEF4,12:56:14 INFO] [1] progress state is 2, Waiting to mount = 1
    [SERVICE: 0xEF4,12:56:14 INFO] [1] progress is now 2
    [SERVICE: 0xEF4,12:56:14 INFO] [1] progress is now 2
    [SERVICE: 0xEF4,12:56:14 INFO] [MACHINE 1 TRANSITION] - {iTunesPseudoUnmounted} ==> {FalsePseudoMounting}
    [SERVICE: 0xEF4,12:56:14 INFO] [1] input #83
    [SERVICE: 0xEEC,12:56:14 INFO] [1] input #84
    [SERVICE: 0xEF4,12:56:14 INFO] [MACHINE 1 INPUT #83] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,12:56:14 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEEC,12:56:14 INFO] [MACHINE 1 INPUT #84] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,12:56:14 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,12:56:15 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:15 INFO] [1] input #85 from src #0
    [SERVICE: 0xEF0,12:56:15 INFO] [1] input #85
    [SERVICE: 0xEF0,12:56:15 INFO] [MACHINE 1 INPUT #85] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,12:56:15 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,12:56:16 INFO] [VolumeArrive] mask = 0x100
    [SERVICE: 0xEFC,12:56:16 INFO] looking up device # for \\.\I:
    [SERVICE: 0xEFC,12:56:16 INFO] type 0x7 drive 0x4 partition 0x1
    [SERVICE: 0xEFC,12:56:16 INFO] iTunes device #4 found with drive letter I, mask 0x100
    [SERVICE: 0xEFC,12:56:16 INFO] [1] set waiting to mount = 0
    [SERVICE: 0xEFC,12:56:16 INFO] [1] input #86 from src #0
    [SERVICE: 0xEF4,12:56:16 INFO] [1] input #86
    [SERVICE: 0xEFC,12:56:16 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:16 INFO] [1] input #87 from src #0
    [SERVICE: 0xEEC,12:56:16 INFO] [1] input #87
    [SERVICE: 0xEF4,12:56:16 INFO] [MACHINE 1 INPUT #86] - (HDW) Volume Mount
    [SERVICE: 0xEF4,12:56:16 INFO] [MACHINE 1 TRANSITION] - {FalsePseudoMounting} ==> {FalseMounted}
    [SERVICE: 0xEF4,12:56:16 INFO] [MACHINE 1 ACTIONS] - {FalseMounted}
    [SERVICE: 0xEF4,12:56:16 INFO] [1] Begin Unmounting...
    [SERVICE: 0xEF4,12:56:16 INFO] [1] progress is now 3
    [SERVICE: 0xEF4,12:56:16 INFO] total locks = 1, caller = 3828, caller locks = 1
    [SERVICE: 0xEF4,12:56:16 INFO] Ejecting media
    [SERVICE: 0xEF4,12:56:16 INFO] SUCCESS
    [SERVICE: 0xEF4,12:56:16 INFO] Volume lock success!
    [SERVICE: 0xEF4,12:56:16 INFO] total locks = 2, caller = 3828, caller locks = 2
    [SERVICE: 0xEEC,12:56:16 INFO] [MACHINE 1 INPUT #87] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,12:56:17 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,12:56:18 INFO] CMQuery_And_RemoveSubTreeW stop
    [SERVICE: 0xEFC,12:56:18 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:18 INFO] [1] input #88 from src #0
    [SERVICE: 0xEF0,12:56:18 INFO] [1] input #88
    [SERVICE: 0xEFC,12:56:18 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,12:56:18 INFO] [1] input #89 from src #0
    [SERVICE: 0xEEC,12:56:18 INFO] [1] input #89
    [SERVICE: 0xEF4,12:56:18 INFO] CMQuery_And_RemoveSubTreeW took 47 ms
    [SERVICE: 0xEF4,12:56:18 INFO] total locks = 1, caller = 3828, caller locks = 1
    [SERVICE: 0xEF4,12:56:18 INFO] total locks = 0, caller = 3828, caller locks = 0
    [SERVICE: 0xEF4,12:56:18 INFO] [1] Finished Unmounting with status 1
    [SERVICE: 0xEF0,12:56:18 INFO] [MACHINE 1 INPUT #88] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,12:56:18 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEEC,12:56:18 INFO] [MACHINE 1 INPUT #89] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,12:56:18 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,12:56:25 INFO] [VolumeRemoved] existing mask 0x100, arrive mask 0x100
    [SERVICE: 0xEFC,12:56:25 INFO] [1] value = 1
    [SERVICE: 0xEFC,12:56:25 INFO] [1] input #90 from src #0
    [SERVICE: 0xEFC,12:56:25 INFO] [InterfaceRemoved]
    [SERVICE: 0xEFC,12:56:25 INFO] [1] value = 0
    [SERVICE: 0xEFC,12:56:25 INFO] removed device number 4 from m_objDeviceNumberMap
    [SERVICE: 0xEFC,12:56:25 INFO] [1] input #91 from src #0
    [SERVICE: 0xEF0,12:56:25 INFO] [1] input #90
    [SERVICE: 0xEF4,12:56:25 INFO] [1] input #91
    [SERVICE: 0xEF0,12:56:25 INFO] [MACHINE 1 INPUT #90] - (HDW) Volume Unmount
    [SERVICE: 0xEF0,12:56:25 INFO] [1] progress is now 3
    [SERVICE: 0xEF0,12:56:25 INFO] [1] Setting progress to 3
    [SERVICE: 0xEF0,12:56:25 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xEF4,12:56:25 INFO] [MACHINE 1 INPUT #91] - (HDW) Interface Removal
    [SERVICE: 0xEF4,12:56:25 INFO] [MACHINE 1 TRANSITION] - {FalseMounted} ==> {iTunesPseudoUnmounted}
    [SERVICE: 0xEF4,12:56:25 INFO] [MACHINE 1 ACTIONS] - {iTunesPseudoUnmounted}
    [SERVICE: 0xEF4,12:56:25 INFO] [1] *** iTunesPseudoUnmounted - Sending event out, device session 0
    [SERVICE: 0xEF4,12:56:25 INFO] [1] progress is now 0
    [SERVICE: 0xEFC,13:34:33 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:33 INFO] [1] input #92 from src #0
    [SERVICE: 0xEEC,13:34:33 INFO] [1] input #92
    [SERVICE: 0xEFC,13:34:33 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:33 INFO] [1] input #93 from src #0
    [SERVICE: 0xEF0,13:34:33 INFO] [1] input #93
    [SERVICE: 0xEFC,13:34:33 INFO] [InterfaceArrival] \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0xEFC,13:34:33 INFO] type 0x7 drive 0x4 partition 0x0
    [SERVICE: 0xEFC,13:34:33 INFO] [1] set waiting to mount = 1
    [SERVICE: 0xEFC,13:34:33 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_objDeviceNameMap
    [SERVICE: 0xEFC,13:34:33 INFO] [1] added state machine 1 to m_objDeviceIdMap
    [SERVICE: 0xEFC,13:34:33 INFO] [1] added device number 4 to m_objDeviceNumberMap
    [SERVICE: 0xEFC,13:34:33 INFO] [1] input #94 from src #0
    [SERVICE: 0xEFC,13:34:33 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:33 INFO] [1] input #95 from src #0
    [SERVICE: 0xEF4,13:34:33 INFO] [1] input #94
    [SERVICE: 0xEFC,13:34:33 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:33 INFO] [1] input #96 from src #0
    [SERVICE: 0xEEC,13:34:33 INFO] [MACHINE 1 INPUT #92] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,13:34:34 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,13:34:34 INFO] [MACHINE 1 INPUT #93] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,13:34:34 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,13:34:34 INFO] [MACHINE 1 INPUT #94] - (HDW) Interface Arrival
    [SERVICE: 0xEF4,13:34:34 INFO] [1] progress state is 2, Waiting to mount = 1
    [SERVICE: 0xEF4,13:34:34 INFO] [1] progress is now 2
    [SERVICE: 0xEF4,13:34:34 INFO] [1] progress is now 2
    [SERVICE: 0xEF4,13:34:34 INFO] [MACHINE 1 TRANSITION] - {iTunesPseudoUnmounted} ==> {FalsePseudoMounting}
    [SERVICE: 0xEF4,13:34:34 INFO] [1] input #95
    [SERVICE: 0xEF0,13:34:34 INFO] [1] input #96
    [SERVICE: 0xEF4,13:34:34 INFO] [MACHINE 1 INPUT #95] - (HDW) CheckDevNode
    [SERVICE: 0xEFC,13:34:34 INFO] [VolumeArrive] mask = 0x100
    [SERVICE: 0xEFC,13:34:34 INFO] looking up device # for \\.\I:
    [SERVICE: 0xEFC,13:34:34 INFO] type 0x7 drive 0x4 partition 0x1
    [SERVICE: 0xEFC,13:34:34 INFO] iTunes device #4 found with drive letter I, mask 0x100
    [SERVICE: 0xEFC,13:34:34 INFO] [1] set waiting to mount = 0
    [SERVICE: 0xEFC,13:34:34 INFO] [1] input #97 from src #0
    [SERVICE: 0xEFC,13:34:34 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:34 INFO] [1] input #98 from src #0
    [SERVICE: 0xEF4,13:34:34 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,13:34:34 INFO] [MACHINE 1 INPUT #96] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,13:34:34 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,13:34:34 INFO] [1] input #97
    [SERVICE: 0xEEC,13:34:34 INFO] [1] input #98
    [SERVICE: 0xEF0,13:34:34 INFO] [MACHINE 1 INPUT #97] - (HDW) Volume Mount
    [SERVICE: 0xEF0,13:34:34 INFO] [MACHINE 1 TRANSITION] - {FalsePseudoMounting} ==> {FalseMounted}
    [SERVICE: 0xEF0,13:34:34 INFO] [MACHINE 1 ACTIONS] - {FalseMounted}
    [SERVICE: 0xEF0,13:34:34 INFO] [1] Begin Unmounting...
    [SERVICE: 0xEF0,13:34:34 INFO] [1] progress is now 3
    [SERVICE: 0xEF0,13:34:34 INFO] total locks = 1, caller = 3824, caller locks = 1
    [SERVICE: 0xEF0,13:34:34 INFO] Ejecting media
    [SERVICE: 0xEF0,13:34:34 INFO] SUCCESS
    [SERVICE: 0xEF0,13:34:34 INFO] Volume lock success!
    [SERVICE: 0xEF0,13:34:34 INFO] total locks = 2, caller = 3824, caller locks = 2
    [SERVICE: 0xEEC,13:34:34 INFO] [MACHINE 1 INPUT #98] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,13:34:34 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,13:34:35 INFO] CMQuery_And_RemoveSubTreeW stop
    [SERVICE: 0xEFC,13:34:35 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:35 INFO] [1] input #99 from src #0
    [SERVICE: 0xEF4,13:34:35 INFO] [1] input #99
    [SERVICE: 0xEFC,13:34:35 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:35 INFO] [1] input #100 from src #0
    [SERVICE: 0xEEC,13:34:35 INFO] [1] input #100
    [SERVICE: 0xEF0,13:34:35 INFO] CMQuery_And_RemoveSubTreeW took 47 ms
    [SERVICE: 0xEF0,13:34:35 INFO] total locks = 1, caller = 3824, caller locks = 1
    [SERVICE: 0xEF0,13:34:35 INFO] total locks = 0, caller = 3824, caller locks = 0
    [SERVICE: 0xEF0,13:34:35 INFO] [1] Finished Unmounting with status 1
    [SERVICE: 0xEF4,13:34:36 INFO] [MACHINE 1 INPUT #99] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,13:34:36 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEEC,13:34:36 INFO] [MACHINE 1 INPUT #100] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,13:34:36 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,13:34:36 INFO] [VolumeRemoved] existing mask 0x100, arrive mask 0x100
    [SERVICE: 0xEFC,13:34:36 INFO] [1] value = 1
    [SERVICE: 0xEFC,13:34:36 INFO] [1] input #101 from src #0
    [SERVICE: 0xEF0,13:34:36 INFO] [1] input #101
    [SERVICE: 0xEFC,13:34:36 INFO] [InterfaceRemoved]
    [SERVICE: 0xEFC,13:34:36 INFO] [1] value = 0
    [SERVICE: 0xEFC,13:34:36 INFO] removed device number 4 from m_objDeviceNumberMap
    [SERVICE: 0xEFC,13:34:36 INFO] [1] input #102 from src #0
    [SERVICE: 0xEF4,13:34:36 INFO] [1] input #102
    [SERVICE: 0xEFC,13:34:36 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:36 INFO] [1] input #103 from src #0
    [SERVICE: 0xEEC,13:34:36 INFO] [1] input #103
    [SERVICE: 0xEFC,13:34:36 INFO] [InterfaceArrival] \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0xEFC,13:34:36 INFO] type 0x7 drive 0x4 partition 0x0
    [SERVICE: 0xEFC,13:34:36 INFO] [1] set waiting to mount = 1
    [SERVICE: 0xEFC,13:34:36 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_objDeviceNameMap
    [SERVICE: 0xEFC,13:34:36 INFO] [1] added state machine 1 to m_objDeviceIdMap
    [SERVICE: 0xEFC,13:34:36 INFO] [1] added device number 4 to m_objDeviceNumberMap
    [SERVICE: 0xEFC,13:34:36 INFO] [1] input #104 from src #0
    [SERVICE: 0xEFC,13:34:36 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:36 INFO] [1] input #105 from src #0
    [SERVICE: 0xEFC,13:34:36 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:36 INFO] [1] input #106 from src #0
    [SERVICE: 0xEF0,13:34:36 INFO] [MACHINE 1 INPUT #101] - (HDW) Volume Unmount
    [SERVICE: 0xEF0,13:34:36 INFO] [1] progress is now 2
    [SERVICE: 0xEF0,13:34:36 INFO] [1] Setting progress to 3
    [SERVICE: 0xEF0,13:34:36 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xEF0,13:34:36 INFO] [1] input #104
    [SERVICE: 0xEF4,13:34:36 INFO] [MACHINE 1 INPUT #102] - (HDW) Interface Removal
    [SERVICE: 0xEF4,13:34:36 INFO] [MACHINE 1 TRANSITION] - {FalseMounted} ==> {iTunesPseudoUnmounted}
    [SERVICE: 0xEF4,13:34:36 INFO] [MACHINE 1 ACTIONS] - {iTunesPseudoUnmounted}
    [SERVICE: 0xEF4,13:34:36 INFO] [1] *** iTunesPseudoUnmounted - Sending event out, device session 0
    [SERVICE: 0xEF4,13:34:36 INFO] [1] progress is now 2
    [SERVICE: 0xEF4,13:34:36 INFO] [1] input #105
    [SERVICE: 0xEEC,13:34:36 INFO] [MACHINE 1 INPUT #103] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,13:34:36 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEEC,13:34:36 INFO] [1] input #106
    [SERVICE: 0xEFC,13:34:36 INFO] [VolumeArrive] mask = 0x100
    [SERVICE: 0xEFC,13:34:36 INFO] looking up device # for \\.\I:
    [SERVICE: 0xEFC,13:34:36 INFO] type 0x7 drive 0x4 partition 0x1
    [SERVICE: 0xEFC,13:34:36 INFO] iTunes device #4 found with drive letter I, mask 0x100
    [SERVICE: 0xEFC,13:34:36 INFO] [1] set waiting to mount = 0
    [SERVICE: 0xEFC,13:34:36 INFO] [1] input #107 from src #0
    [SERVICE: 0xEFC,13:34:36 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:36 INFO] [1] input #108 from src #0
    [SERVICE: 0xEF0,13:34:36 INFO] [MACHINE 1 INPUT #104] - (HDW) Interface Arrival
    [SERVICE: 0xEF0,13:34:36 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0xEF0,13:34:36 INFO] [1] progress is now 2
    [SERVICE: 0xEF0,13:34:36 INFO] [1] progress is now 2
    [SERVICE: 0xEF0,13:34:36 INFO] [MACHINE 1 TRANSITION] - {iTunesPseudoUnmounted} ==> {FalsePseudoMounting}
    [SERVICE: 0xEF0,13:34:36 INFO] [1] input #107
    [SERVICE: 0xEF4,13:34:36 INFO] [MACHINE 1 INPUT #105] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,13:34:36 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,13:34:36 INFO] [1] input #108
    [SERVICE: 0xEEC,13:34:36 INFO] [MACHINE 1 INPUT #106] - (HDW) CheckDevNode
    [SERVICE: 0xEFC,13:34:36 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:36 INFO] [1] input #109 from src #0
    [SERVICE: 0xEEC,13:34:36 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEEC,13:34:36 INFO] [1] input #109
    [SERVICE: 0xEF0,13:34:36 INFO] [MACHINE 1 INPUT #107] - (HDW) Volume Mount
    [SERVICE: 0xEF0,13:34:36 INFO] [MACHINE 1 TRANSITION] - {FalsePseudoMounting} ==> {FalseMounted}
    [SERVICE: 0xEF0,13:34:36 INFO] [MACHINE 1 ACTIONS] - {FalseMounted}
    [SERVICE: 0xEF0,13:34:36 INFO] [1] Begin Unmounting...
    [SERVICE: 0xEF0,13:34:36 INFO] [1] progress is now 3
    [SERVICE: 0xEF0,13:34:36 INFO] total locks = 1, caller = 3824, caller locks = 1
    [SERVICE: 0xEF0,13:34:36 INFO] Ejecting media
    [SERVICE: 0xEF0,13:34:36 INFO] SUCCESS
    [SERVICE: 0xEF0,13:34:36 INFO] Volume lock success!
    [SERVICE: 0xEF0,13:34:36 INFO] total locks = 2, caller = 3824, caller locks = 2
    [SERVICE: 0xEF4,13:34:36 INFO] [MACHINE 1 INPUT #108] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,13:34:36 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEEC,13:34:36 INFO] [MACHINE 1 INPUT #109] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,13:34:37 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,13:34:37 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:37 INFO] [1] input #110 from src #0
    [SERVICE: 0xEF4,13:34:37 INFO] [1] input #110
    [SERVICE: 0xEF4,13:34:37 INFO] [MACHINE 1 INPUT #110] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,13:34:38 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,13:34:38 INFO] CMQuery_And_RemoveSubTreeW stop
    [SERVICE: 0xEFC,13:34:38 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:38 INFO] [1] input #111 from src #0
    [SERVICE: 0xEEC,13:34:38 INFO] [1] input #111
    [SERVICE: 0xEFC,13:34:38 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,13:34:38 INFO] [1] input #112 from src #0
    [SERVICE: 0xEF4,13:34:38 INFO] [1] input #112
    [SERVICE: 0xEF0,13:34:38 INFO] CMQuery_And_RemoveSubTreeW took 62 ms
    [SERVICE: 0xEF0,13:34:38 INFO] total locks = 1, caller = 3824, caller locks = 1
    [SERVICE: 0xEF0,13:34:38 INFO] total locks = 0, caller = 3824, caller locks = 0
    [SERVICE: 0xEF0,13:34:38 INFO] [1] Finished Unmounting with status 1
    [SERVICE: 0xEEC,13:34:38 INFO] [MACHINE 1 INPUT #111] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,13:34:38 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,13:34:38 INFO] [MACHINE 1 INPUT #112] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,13:34:38 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,13:34:47 INFO] [VolumeRemoved] existing mask 0x100, arrive mask 0x100
    [SERVICE: 0xEFC,13:34:47 INFO] [1] value = 1
    [SERVICE: 0xEFC,13:34:47 INFO] [1] input #113 from src #0
    [SERVICE: 0xEF0,13:34:47 INFO] [1] input #113
    [SERVICE: 0xEFC,13:34:47 INFO] [InterfaceRemoved]
    [SERVICE: 0xEFC,13:34:47 INFO] [1] value = 0
    [SERVICE: 0xEFC,13:34:47 INFO] removed device number 4 from m_objDeviceNumberMap
    [SERVICE: 0xEFC,13:34:47 INFO] [1] input #114 from src #0
    [SERVICE: 0xEEC,13:34:47 INFO] [1] input #114
    [SERVICE: 0xEF0,13:34:47 INFO] [MACHINE 1 INPUT #113] - (HDW) Volume Unmount
    [SERVICE: 0xEF0,13:34:47 INFO] [1] progress is now 3
    [SERVICE: 0xEF0,13:34:47 INFO] [1] Setting progress to 3
    [SERVICE: 0xEF0,13:34:47 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xEEC,13:34:47 INFO] [MACHINE 1 INPUT #114] - (HDW) Interface Removal
    [SERVICE: 0xEEC,13:34:47 INFO] [MACHINE 1 TRANSITION] - {FalseMounted} ==> {iTunesPseudoUnmounted}
    [SERVICE: 0xEEC,13:34:47 INFO] [MACHINE 1 ACTIONS] - {iTunesPseudoUnmounted}
    [SERVICE: 0xEEC,13:34:47 INFO] [1] *** iTunesPseudoUnmounted - Sending event out, device session 0
    [SERVICE: 0xEEC,13:34:47 INFO] [1] progress is now 0
    [SERVICE: 0xEFC,14:29:54 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,14:29:54 INFO] [1] input #115 from src #0
    [SERVICE: 0xEF4,14:29:54 INFO] [1] input #115
    [SERVICE: 0xEFC,14:29:54 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,14:29:54 INFO] [1] input #116 from src #0
    [SERVICE: 0xEF0,14:29:54 INFO] [1] input #116
    [SERVICE: 0xEFC,14:29:54 INFO] [InterfaceArrival] \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0xEFC,14:29:54 INFO] type 0x7 drive 0x4 partition 0x0
    [SERVICE: 0xEFC,14:29:54 INFO] [1] set waiting to mount = 1
    [SERVICE: 0xEFC,14:29:54 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_objDeviceNameMap
    [SERVICE: 0xEFC,14:29:54 INFO] [1] added state machine 1 to m_objDeviceIdMap
    [SERVICE: 0xEFC,14:29:54 INFO] [1] added device number 4 to m_objDeviceNumberMap
    [SERVICE: 0xEFC,14:29:54 INFO] [1] input #117 from src #0
    [SERVICE: 0xEEC,14:29:54 INFO] [1] input #117
    [SERVICE: 0xEFC,14:29:54 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,14:29:54 INFO] [1] input #118 from src #0
    [SERVICE: 0xEFC,14:29:54 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,14:29:54 INFO] [1] input #119 from src #0
    [SERVICE: 0xEF4,14:29:54 INFO] [MACHINE 1 INPUT #115] - (HDW) CheckDevNode
    [SERVICE: 0xEF4,14:29:54 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,14:29:54 INFO] [MACHINE 1 INPUT #116] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,14:29:55 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEEC,14:29:55 INFO] [MACHINE 1 INPUT #117] - (HDW) Interface Arrival
    [SERVICE: 0xEEC,14:29:55 INFO] [1] progress state is 2, Waiting to mount = 1
    [SERVICE: 0xEEC,14:29:55 INFO] [1] progress is now 2
    [SERVICE: 0xEEC,14:29:55 INFO] [1] progress is now 2
    [SERVICE: 0xEEC,14:29:55 INFO] [MACHINE 1 TRANSITION] - {iTunesPseudoUnmounted} ==> {FalsePseudoMounting}
    [SERVICE: 0xEEC,14:29:55 INFO] [1] input #118
    [SERVICE: 0xEF0,14:29:55 INFO] [1] input #119
    [SERVICE: 0xEFC,14:29:55 INFO] [VolumeArrive] mask = 0x100
    [SERVICE: 0xEFC,14:29:55 INFO] looking up device # for \\.\I:
    [SERVICE: 0xEFC,14:29:55 INFO] type 0x7 drive 0x4 partition 0x1
    [SERVICE: 0xEFC,14:29:55 INFO] iTunes device #4 found with drive letter I, mask 0x100
    [SERVICE: 0xEFC,14:29:55 INFO] [1] set waiting to mount = 0
    [SERVICE: 0xEFC,14:29:55 INFO] [1] input #120 from src #0
    [SERVICE: 0xEFC,14:29:55 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,14:29:55 INFO] [1] input #121 from src #0
    [SERVICE: 0xEFC,14:29:55 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,14:29:55 INFO] [1] input #122 from src #0
    [SERVICE: 0xEF4,14:29:55 INFO] [1] input #120
    [SERVICE: 0xEEC,14:29:55 INFO] [MACHINE 1 INPUT #118] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,14:29:55 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,14:29:55 INFO] [MACHINE 1 INPUT #119] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,14:29:55 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,14:29:55 INFO] [1] input #121
    [SERVICE: 0xEF4,14:29:55 INFO] [MACHINE 1 INPUT #120] - (HDW) Volume Mount
    [SERVICE: 0xEF4,14:29:55 INFO] [MACHINE 1 TRANSITION] - {FalsePseudoMounting} ==> {FalseMounted}
    [SERVICE: 0xEF4,14:29:55 INFO] [MACHINE 1 ACTIONS] - {FalseMounted}
    [SERVICE: 0xEF4,14:29:55 INFO] [1] Begin Unmounting...
    [SERVICE: 0xEF4,14:29:55 INFO] [1] progress is now 3
    [SERVICE: 0xEF4,14:29:55 INFO] total locks = 1, caller = 3828, caller locks = 1
    [SERVICE: 0xEF4,14:29:55 INFO] Ejecting media
    [SERVICE: 0xEF4,14:29:55 INFO] SUCCESS
    [SERVICE: 0xEF4,14:29:55 INFO] Volume lock success!
    [SERVICE: 0xEF4,14:29:55 INFO] total locks = 2, caller = 3828, caller locks = 2
    [SERVICE: 0xEEC,14:29:55 INFO] [1] input #122
    [SERVICE: 0xEF0,14:29:55 INFO] [MACHINE 1 INPUT #121] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,14:29:55 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEEC,14:29:55 INFO] [MACHINE 1 INPUT #122] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,14:29:55 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,14:29:56 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,14:29:56 INFO] [1] input #123 from src #0
    [SERVICE: 0xEF0,14:29:56 INFO] [1] input #123
    [SERVICE: 0xEF0,14:29:56 INFO] [MACHINE 1 INPUT #123] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,14:29:56 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF4,14:29:56 INFO] CMQuery_And_RemoveSubTreeW stop
    [SERVICE: 0xEFC,14:29:56 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,14:29:56 INFO] [1] input #124 from src #0
    [SERVICE: 0xEEC,14:29:56 INFO] [1] input #124
    [SERVICE: 0xEFC,14:29:56 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,14:29:56 INFO] [1] input #125 from src #0
    [SERVICE: 0xEF0,14:29:56 INFO] [1] input #125
    [SERVICE: 0xEF4,14:29:56 INFO] CMQuery_And_RemoveSubTreeW took 31 ms
    [SERVICE: 0xEF4,14:29:56 INFO] total locks = 1, caller = 3828, caller locks = 1
    [SERVICE: 0xEF4,14:29:56 INFO] total locks = 0, caller = 3828, caller locks = 0
    [SERVICE: 0xEF4,14:29:56 INFO] [1] Finished Unmounting with status 1
    [SERVICE: 0xEEC,14:29:56 INFO] [MACHINE 1 INPUT #124] - (HDW) CheckDevNode
    [SERVICE: 0xEEC,14:29:56 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEF0,14:29:56 INFO] [MACHINE 1 INPUT #125] - (HDW) CheckDevNode
    [SERVICE: 0xEF0,14:29:56 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xEFC,14:29:57 INFO] [VolumeRemoved] existing mask 0x100, arrive mask 0x100
    [SERVICE: 0xEFC,14:29:57 INFO] [1] value = 1
    [SERVICE: 0xEFC,14:29:57 INFO] [1] input #126 from src #0
    [SERVICE: 0xEF4,14:29:57 INFO] [1] input #126
    [SERVICE: 0xEFC,14:29:57 INFO] [InterfaceRemoved]
    [SERVICE: 0xEFC,14:29:57 INFO] [1] value = 0
    [SERVICE: 0xEFC,14:29:57 INFO] removed device number 4 from m_objDeviceNumberMap
    [SERVICE: 0xEFC,14:29:57 INFO] [1] input #127 from src #0
    [SERVICE: 0xEEC,14:29:57 INFO] [1] input #127
    [SERVICE: 0xEF4,14:29:57 INFO] [MACHINE 1 INPUT #126] - (HDW) Volume Unmount
    [SERVICE: 0xEF4,14:29:57 INFO] [1] progress is now 3
    [SERVICE: 0xEF4,14:29:57 INFO] [1] Setting progress to 3
    [SERVICE: 0xEF4,14:29:57 INFO] * CItunesDevice::HandleHardwareInput()
    [SERVICE: 0xEEC,14:29:57 INFO] [MACHINE 1 INPUT #127] - (HDW) Interface Removal
    [SERVICE: 0xEEC,14:29:57 INFO] [MACHINE 1 TRANSITION] - {FalseMounted} ==> {iTunesPseudoUnmounted}
    [SERVICE: 0xEEC,14:29:57 INFO] [MACHINE 1 ACTIONS] - {iTunesPseudoUnmounted}
    [SERVICE: 0xEEC,14:29:57 INFO] [1] *** iTunesPseudoUnmounted - Sending event out, device session 0
    [SERVICE: 0xEEC,14:29:57 INFO] [1] progress is now 0
    [SERVICE: 0xAF4,17:29:04 INFO] [1] Progress state is 0, Waiting to disconnect = 0
    [SERVICE: 0xAF4,17:29:04 INFO] NOT Mounted
    [SERVICE: 0xB0,17:29:04 INFO] NOT Mounted
    [SERVICE: 0xB0,17:29:04 INFO] NOT Mounted
    [SERVICE: 0xB0,17:29:04 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0xB0,17:29:04 INFO] [1] progress state is 0, Waiting to mount = 0
    [SERVICE: 0xB0,17:29:04 INFO] Connection Detection Status - 0x180600A, device '\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'
    [SERVICE: 0xB0,17:29:04 INFO] [1] input #128 from src #314326
    [SERVICE: 0xEF0,17:29:04 INFO] [1] input #128
    [SERVICE: 0xEF0,17:29:05 INFO] [MACHINE 1 INPUT #128] - (APP) Mountlock Mount
    [SERVICE: 0xEF0,17:29:05 INFO] [1] Begin Mounting...
    [SERVICE: 0xEF0,17:29:05 INFO] [1] progress is now 2
    [SERVICE: 0xEF0,17:29:05 INFO] NOT USB
    [SERVICE: 0xEFC,17:29:06 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,17:29:06 INFO] [1] input #129 from src #0
    [SERVICE: 0xEF4,17:29:06 INFO] [1] input #129
    [SERVICE: 0xEFC,17:29:06 INFO] [InterfaceArrival] \\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}
    [SERVICE: 0xEFC,17:29:06 INFO] type 0x7 drive 0x4 partition 0x0
    [SERVICE: 0xEFC,17:29:06 INFO] [1] set waiting to mount = 1
    [SERVICE: 0xEFC,17:29:06 INFO] [1] added device interface "\\?\usbstor#disk&venapple&prod_ipod&rev1.62#000a270014d57f80&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}" to m_objDeviceNameMap
    [SERVICE: 0xEFC,17:29:06 INFO] [1] added state machine 1 to m_objDeviceIdMap
    [SERVICE: 0xEFC,17:29:06 INFO] [1] added device number 4 to m_objDeviceNumberMap
    [SERVICE: 0xEFC,17:29:06 INFO] [1] input #130 from src #0
    [SERVICE: 0xEFC,17:29:06 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,17:29:06 INFO] [1] input #131 from src #0
    [SERVICE: 0xEEC,17:29:06 INFO] [1] input #130
    [SERVICE: 0xEFC,17:29:06 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,17:29:06 INFO] [1] input #132 from src #0
    [SERVICE: 0xEF0,17:29:06 INFO] SUCCESS
    [SERVICE: 0xEFC,17:29:06 INFO] [VolumeArrive] mask = 0x100
    [SERVICE: 0xEFC,17:29:06 INFO] looking up device # for \\.\I:
    [SERVICE: 0xEFC,17:29:06 INFO] type 0x7 drive 0x4 partition 0x1
    [SERVICE: 0xEFC,17:29:06 INFO] iTunes device #4 found with drive letter I, mask 0x100
    [SERVICE: 0xEFC,17:29:06 INFO] [1] set waiting to mount = 0
    [SERVICE: 0xEFC,17:29:06 INFO] [1] input #133 from src #0
    [SERVICE: 0xEFC,17:29:06 INFO] [DevNodesChanged]
    [SERVICE: 0xEFC,17:29:06 INFO] [1] input #134 from src #0
    [SERVICE: 0xEF0,17:29:06 INFO] [1] progress is now 2
    [SERVICE: 0xEF0,17:29:06 INFO] [MACHINE 1 TRANSITION] - {iTunesPseudoUnmounted} ==> {iTunesPseudoMounting}
    [SERVICE: 0xB0,17:29:06 INFO] [1] progress state is 2, Waiting to mount = 0
    [SERVICE: 0xB0,17:29:06 INFO] [1] Mount in progress, wait till finish...

    i know exactly what you mean. I seem to be having the same problem with my 30gb iPod. Mine has the exact same symptoms too, Freezes when you plug it in, restoring to factory settings does not fix the problme, and I've also taken it in to an Apple Store to see if they could help and all they told me to do was to make a note of what programs are running when it happens and the manual reset (hold the center button and menu at the same time), however tonight I've had to reset it at least 3 times which is really telling me theres some sort of problem going on with it.
    Do you get a message saying: Delayed Write Failed.....F:\iPodcontrolArtworkF10291.ithmb
    because thats the message i get every time it freezes. Let me know if soomeone finds a solution to this problem. In the mean time, i'm just thankful my iPod's still under the limited 1 year warranty.

  • Can anyone help me? The iTunes update corrupted my program. I uninstalled, and then reinstalled iTunes; only to find an error message about iTunes Helper. After several fruitless, repeat attempts, I am at a loss. Please help-

    Can anyone help me? The iTunes update corrupted my program. I uninstalled, and then reinstalled iTunes; only to find an error message about iTunes Helper. After several fruitless, repeat attempts, I am at a loss. Please help…

    Many thanks.
    With the Error 2, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR suitable for your PC (there's a 32-bit Windows version and a 64-bit Windows version):
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you?
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • Cannt close itunes, have to end program

    itunes works fine except when i try and shut down the program,
    it freezes and i am forced to end program
    i uninstalled apple mobile device support and it would close down, but then my ipod touch would not be recognised as being connected by my computer or itunes.
    help!?

    It finally seems like it finished uploading... only 6000 of the 13000 songs...
    You may be right about selecting smaller numbers at a time.  I know this problem happened before too.
    I keep most of my music on a side drive to my laptop (PC) and recently the computer had formerly named it m,y F drive, then last time when i hooked up it called it the E drive... go figure, anyway seemed iTunes considered it new and so the match started all over.
    I have music files on both my laptop and the side drive.
    Much of my music has been converted from LP's and Cassettes  (I'm old...;)
    Next time if I have issues I'll try your idea of matching a few at a time.
    I am able to select small groups and match them on top of the matched ones already completed.
    This is really cool to get all these songs on our iphone(s) at will....  great when traveling or I want my wife (4000 miles away) to have access to other songs...
    jay love joy luck
    Hawaii and Minnesota, USA

  • Itunes wont open cause its not a win32 application? it opened yesterday help

    itunes wont open cause its not a win32 application? it opened yesterday and now it wont and my friend plugged her iphone in and now it wont work?

    Doublechecking. When you did the complete uninstall, were you using the following document as a guide?
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    (If damaged program files are involved here, a standard install might not remove them, and a reinstall might not then replace them. So the Verify iTunes and related components are completely uninstalled section is an important step.)

  • ITunes 7.0.1.8 totally freezes when iPod connected

    I installed iTunes 7.0.1.8 a few days ago, and today I'm having huge problems with it. Just yesterday I managed to upload a large set of videos to my iPod, and today, if I run iTunes without my iPod connected, I have no problems. However, when I plug my iPod in, it runs until it recognizes the iPod and displays the menu for it, and at that moment, the program entirely freezes. I can't push any buttons. It doesn't even manage to update the screen if I alt-tab between it and another window. And it uses 70% or more of my processor while not actually seeming to do anything.
    I tried restarting my computer and my iPod. No good. The iPod is a 60 GB iPod video, and I have it set for manual management.
    Dell 4550   Windows XP  

    As it turns out, mine just needed about ten minutes to sit there and think after I plugged the iPod in. Maybe yours is the same way. It's not acceptable, but you can get to your iPod if you have the patience.
    I've also noticed that it feels the need to reanalyze the gapless playback information for all my songs after the first time I add something to the iPod after I plug it in. I think it might have been doing that when I first plugged it in also, and just wasn't updating the screen.

  • Internet Causes Mac to Freeze Up

    SilSiliMac 27" (Late 2012)
    3.4 GHz Core i7
    32 GB DDR3-1600
    GeForce GTX 680MX 2GB
    OS X 10.8.3
    Safari 6.0.4
    I was watching Netflix on the left side of the screen and reading about computer hardware on the right side, both using Safari. Then the screen froze and the cursor froze one second afterwards. I could still hear audio, but the computer was unresponsive: Force Quit didn't work, mouse didn't move, no keyboard input, etc. I held down the power button to force shutdown and then powered it back up again.
    The same thing happened about an hour later. I did a full system scan for viruses and malware using two different utilities, both of which reported a clean iMac. I checked the hard drive with Disk Utility and got nothing. I started up using Apple Hardware Test (hold D while booting) and did a quick test which reported nothing. The full test, with 32GB of RAM, will take an entire day.
    I have noticed this freezing up when watching video online, mostly through Netflix, but also through YouTube and Vimeo. I thought it was Safari, but I tried it with Firefox, Chrome, and Opera and they all end up freezing at some point. I can't tell how I'm making it freeze or how long it takes to freeze, but it happens when viewing video. It does not happen when watching video through iTunes - only online, regardless of playback method (Flash and   Silverlight both cause it).
    I dual-boot Windows and do not have the problem in Windows 7.
    I thought it might be a problem with my video card, but I can play FIFA and Skyrim for a couple hours without issue. I thought it might be a problem with Flash, but as far as I can tell Netflix uses Silverlight and that was what caused the initial freezes.
    Any ideas?

    I'm not really sure what you're looking for. This is some of the lines from Console before the most recent BOOT_TIME. Then I pasted the contents of System Diagnostic Reports Kernel_2013_04_27 etc., but I don't know if that's what you're looking for. That report was awhile ago, so it doesn't seem like any of my recent problems have been recorded.
    5/9/13 10:07:55.471 AM mdworker[459]: Unable to talk to lsboxd
    5/9/13 10:07:55.511 AM sandboxd[460]: ([458]) mdworker(458) deny mach-lookup com.apple.ls.boxd
    5/9/13 10:07:55.515 AM sandboxd[460]: ([459]) mdworker(459) deny mach-lookup com.apple.ls.boxd
    5/9/13 10:07:55.000 AM kernel[0]: Sandbox: sandboxd(460) deny mach-lookup com.apple.coresymbolicationd
    5/9/13 10:15:56.184 AM mdworker[485]: Unable to talk to lsboxd
    5/9/13 10:15:56.238 AM sandboxd[487]: ([485]) mdworker(485) deny mach-lookup com.apple.ls.boxd
    5/9/13 10:15:56.258 AM sandboxd[487]: ([486]) mdworker(486) deny mach-lookup com.apple.ls.boxd
    5/9/13 10:15:56.000 AM kernel[0]: Sandbox: sandboxd(487) deny mach-lookup com.apple.coresymbolicationd
    5/9/13 10:17:22.000 AM kernel[0]: AppleBCM5701Ethernet:        0        a BCM5701Enet::replaceOrCopyPacket timedout
    5/9/13 10:19:32.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=500[GoogleSoftwareUp] clearing CS_VALID
    5/9/13 10:19:56.870 AM mdworker[502]: Unable to talk to lsboxd
    5/9/13 10:19:56.934 AM sandboxd[504]: ([502]) mdworker(502) deny mach-lookup com.apple.ls.boxd
    5/9/13 10:19:56.954 AM sandboxd[504]: ([503]) mdworker(503) deny mach-lookup com.apple.ls.boxd
    5/9/13 10:19:57.000 AM kernel[0]: Sandbox: sandboxd(504) deny mach-lookup com.apple.coresymbolicationd
    5/9/13 10:32:02.000 AM bootlog[0]: BOOT_TIME 1368113522 0
    Interval Since Last Panic Report:  3314726 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    D84038B4-E2E5-FDC9-B5D3-481682E2AD11
    Sat Apr 27 15:36:40 2013
    panic(cpu 6 caller 0xffffff8008ab7e95): Kernel trap at 0xffffff7f8aeba2ce, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000000, CR3: 0x000000000b528000, CR4: 0x00000000001606e0
    RAX: 0x0000000000000000, RBX: 0xffffff804bad0800, RCX: 0x7fffffffffffffff, RDX: 0x0000000000000040
    RSP: 0xffffff83983cba90, RBP: 0xffffff83983cbab0, RSI: 0x0000000000000002, RDI: 0x0000000000000000
    R8:  0x0000000000000011, R9:  0x0000000000000000, R10: 0xffffffffffffffff, R11: 0x00000000ffffffff
    R12: 0x0000000000000111, R13: 0xffffff804aa90800, R14: 0xffffff8063bac000, R15: 0xffffff804aa90800
    RFL: 0x0000000000010246, RIP: 0xffffff7f8aeba2ce, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000000000000, Error code: 0x0000000000000000, Fault CPU: 0x6
    Backtrace (CPU 6), Frame : Return Address
    0xffffff83983cb730 : 0xffffff8008a1d626
    0xffffff83983cb7a0 : 0xffffff8008ab7e95
    0xffffff83983cb970 : 0xffffff8008acd4dd
    0xffffff83983cb990 : 0xffffff7f8aeba2ce
    0xffffff83983cbab0 : 0xffffff7f8aeb6b1e
    0xffffff83983cbb20 : 0xffffff7f8aeb4cf0
    0xffffff83983cbb40 : 0xffffff8008e308db
    0xffffff83983cbb80 : 0xffffff8008e303fe
    0xffffff83983cbc10 : 0xffffff8008e2c390
    0xffffff83983cbc50 : 0xffffff8008e2c09f
    0xffffff83983cbc90 : 0xffffff8008e2bf54
    0xffffff83983cbcd0 : 0xffffff7f890562bd
    0xffffff83983cbd00 : 0xffffff7f89056b68
    0xffffff83983cbda0 : 0xffffff7f89a22ad7
    0xffffff83983cbdd0 : 0xffffff7f89a225b9
    0xffffff83983cbe40 : 0xffffff7f89a21f6c
    0xffffff83983cbe60 : 0xffffff8008e308db
    0xffffff83983cbea0 : 0xffffff8008e303fe
    0xffffff83983cbf30 : 0xffffff8008e2c390
    0xffffff83983cbf70 : 0xffffff8008e30f59
    0xffffff83983cbfb0 : 0xffffff8008ab2977
          Kernel Extensions in backtrace:
             com.apple.iokit.IOUSBFamily(5.5.5)[A276B40E-978D-3623-93D3-8621B3CEECFC]@0xffff ff7f89040000->0xffffff7f8909bfff
                dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f89017000
             com.apple.driver.AppleUSBComposite(5.2.5)[EB8C0C1A-8DB0-396C-AD77-5390E817381B] @0xffffff7f89a21000->0xffffff7f89a27fff
                dependency: com.apple.iokit.IOUSBFamily(5.5.5)[A276B40E-978D-3623-93D3-8621B3CEECFC]@0xffff ff7f89040000
             com.razer.common.razerhid(1.5)[4C322766-8C83-E164-64F0-64CD0173060E]@0xffffff7f 8aeb3000->0xffffff7f8aec7fff
                dependency: com.apple.iokit.IOUSBFamily(5.5.5)[A276B40E-978D-3623-93D3-8621B3CEECFC]@0xffff ff7f89040000
                dependency: com.apple.iokit.IOHIDFamily(1.8.1)[FD2B6401-9BFA-32D5-ABEB-E523C061548D]@0xffff ff7f891ca000
                dependency: com.apple.iokit.IOUSBHIDDriver(5.2.5)[547419EB-025B-3C4D-AAE1-89316747D025]@0xf fffff7f8924a000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12D78
    Kernel version:
    Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    Kernel UUID: 3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6
    Kernel slide:     0x0000000008800000
    Kernel text base: 0xffffff8008a00000
    System model name: iMac13,2 (Mac-FC02E91DDD3FA6A4)
    System uptime in nanoseconds: 342990285795937
    last loaded kext at 342990271437807: com.razer.common.razerhid    1.5 (addr 0xffffff7f8aeb3000, size 86016)
    last unloaded kext at 341983256705407: com.apple.iokit.IOFireWireFamily    4.5.5 (addr 0xffffff7f890c1000, size 471040)
    loaded kexts:
    com.razer.common.razerhid    1.5
    com.mice.driver.Xbox360Controller    1.0.0d11
    com.apple.driver.AppleUSBCDC    4.1.23
    com.apple.filesystems.exfat    1.3
    com.apple.filesystems.smbfs    1.8
    com.apple.filesystems.udf    2.3
    com.apple.driver.AppleBluetoothMultitouch    75.19
    com.apple.driver.AudioAUUC    1.60
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager    4.1.3f3
    com.apple.filesystems.autofs    3.0
    com.apple.filesystems.ntfs    3.10
    com.apple.driver.AppleMikeyHIDDriver    122
    com.apple.driver.AGPM    100.12.87
    com.apple.driver.ApplePlatformEnabler    2.0.6d1
    com.apple.driver.X86PlatformShim    1.0.0
    com.apple.driver.AppleHDA    2.3.7fc4
    com.apple.driver.AppleUpstreamUserClient    3.5.10
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.GeForce    8.1.0
    com.apple.driver.AppleMikeyDriver    2.3.7fc4
    com.apple.driver.AppleIntelHD4000Graphics    8.1.0
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport    4.1.3f3
    com.apple.driver.AppleBacklight    170.2.5
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleLPC    1.6.0
    com.apple.driver.AppleMCCSControl    1.1.11
    com.apple.driver.ApplePolicyControl    3.3.0
    com.apple.driver.AppleIntelFramebufferCapri    8.1.0
    com.apple.driver.AppleSMCLMU    2.0.3d0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    34
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.3.1
    com.apple.driver.AppleUSBHub    5.5.5
    com.apple.driver.AppleSDXC    1.4.0
    com.apple.driver.AirPort.Brcm4331    614.20.16
    com.apple.iokit.AppleBCM5701Ethernet    3.6.0b1
    com.apple.driver.AppleAHCIPort    2.5.1
    com.apple.driver.AppleUSBEHCI    5.5.0
    com.apple.driver.AppleUSBXHCI    5.5.5
    com.apple.driver.AppleEFINVRAM    1.7
    com.apple.driver.AppleACPIButtons    1.7
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.8
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.7
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    196.0.0
    com.apple.nke.applicationfirewall    4.0.39
    com.apple.security.quarantine    2
    com.apple.driver.AppleIntelCPUPowerManagement    196.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard    170.2
    com.apple.driver.AppleHIDKeyboard    170.2
    com.apple.driver.IOBluetoothHIDDriver    4.1.3f3
    com.apple.driver.AppleMultitouchDriver    235.29
    com.apple.iokit.IOSerialFamily    10.0.6
    com.apple.kext.triggers    1.0
    com.apple.driver.DspFuncLib    2.3.7fc4
    com.apple.iokit.IOAudioFamily    1.8.9fc11
    com.apple.kext.OSvKernDSPLib    1.6
    com.apple.iokit.IOSurface    86.0.4
    com.apple.nvidia.gk100hal    8.1.0
    com.apple.NVDAResman    8.1.0
    com.apple.iokit.IOBluetoothFamily    4.1.3f3
    com.apple.iokit.IOAcceleratorFamily    30.14
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport    4.1.3f3
    com.apple.driver.AppleBacklightExpert    1.0.4
    com.apple.driver.AppleSMBusPCI    1.0.11d0
    com.apple.driver.AppleSMBusController    1.0.11d0
    com.apple.driver.AppleGraphicsControl    3.3.0
    com.apple.iokit.IONDRVSupport    2.3.7
    com.apple.driver.AppleHDAController    2.3.7fc4
    com.apple.iokit.IOHDAFamily    2.3.7fc4
    com.apple.driver.X86PlatformPlugin    1.0.0
    com.apple.driver.IOPlatformPluginFamily    5.3.0d51
    com.apple.driver.AppleSMC    3.1.4d2
    com.apple.iokit.IOGraphicsFamily    2.3.7
    com.apple.driver.AppleThunderboltEDMSink    1.1.8
    com.apple.driver.AppleThunderboltEDMSource    1.1.8
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.5.5
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOUSBMassStorageClass    3.5.1
    com.apple.iokit.IOUSBHIDDriver    5.2.5
    com.apple.driver.AppleThunderboltDPOutAdapter    1.8.9
    com.apple.driver.AppleThunderboltDPInAdapter    1.8.9
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.8.9
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.2.6
    com.apple.driver.AppleUSBMergeNub    5.5.5
    com.apple.driver.AppleUSBComposite    5.2.5
    com.apple.driver.CoreStorage    296.16
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.5.5
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.5.5
    com.apple.driver.AppleThunderboltNHI    1.6.3
    com.apple.iokit.IOThunderboltFamily    2.2.6
    com.apple.iokit.IOUSBUserClient    5.5.5
    com.apple.iokit.IO80211Family    522.4
    com.apple.iokit.IOEthernetAVBController    1.0.2b1
    com.apple.iokit.IONetworkingFamily    3.0
    com.apple.iokit.IOAHCIFamily    2.3.1
    com.apple.iokit.IOUSBFamily    5.5.5
    com.apple.driver.AppleEFIRuntime    1.7
    com.apple.iokit.IOHIDFamily    1.8.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    220.2
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    345
    com.apple.iokit.IOStorageFamily    1.8
    com.apple.driver.AppleKeyStore    28.21
    com.apple.driver.AppleACPIPlatform    1.7
    com.apple.iokit.IOPCIFamily    2.7.3
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.corecrypto    1.0
    System Profile:
    Model: iMac13,2, BootROM IM131.010A.B04, 4 processors, Intel Core i7, 3.4 GHz, 32 GB, SMC 2.11f14
    Graphics: NVIDIA GeForce GTX 680MX, NVIDIA GeForce GTX 680MX, PCIe, 2048 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x04CD, 0x46332D313630304331302D38475351000000
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x04CD, 0x46332D313630304331302D38475351000000
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1600 MHz, 0x04CD, 0x46332D313630304331302D38475351000000
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1600 MHz, 0x04CD, 0x46332D313630304331302D38475351000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF4), Broadcom BCM43xx 1.0 (5.106.98.100.16)
    Bluetooth: Version 4.1.3f3 11349, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: APPLE HDD WDC WD10EALX-408EA0, 1 TB
    Serial ATA Device: APPLE SSD SM128E, 121.33 GB
    USB Device: Optical USB Mouse, 0x046d  (Logitech Inc.), 0xc016, 0x14100000 / 2
    USB Device: Razer Nostromo, 0x1532, 0x0111, 0x14400000 / 1
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: Cruzer, 0x0781  (SanDisk Corporation), 0x5530, 0x1a120000 / 4
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8511, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2412, 0x1d180000 / 3
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x828b, 0x1d181300 / 6

  • Programs Keep Freezing, Why?

    I just got the mid-priced macbook because my iBook g4 crashed 2 weeks ago. I transfered all of my files over and have not been having much luck with this little guy. I get no mooing or whine, and the CoreDuoTemp indicates that it runs at acceptable temps, but programs keep freezing on me. I've had to re-boot more than 5 times today. This is highly frustrating because I could let my G4 run for weeks without restarting it.
    I've been working on a video project all week, and the programs that have been freezing are: Entourage, iTunes, iMovie, iDVD, CoreDuoTemp, Sound Studio. Sometimes the programs freeze as soon as they are opened and sometimes it's in the middle of a task.
    I did have Limewire installed, but I deleted it earlier today, still having problems.
    Any ideas? This is so frustrating.

    I've verified and repaired disk permissions, I've run the hardware test, no problems detected. I also downloaded and did the memtest, everything passed. Programs are still closing, particularly strange is soundstudio, it is no longer freezing, it is now just closing and no error messages, or anyother types of messages appear in the console log.
    Another oddity is that the "sound" icon in my system preferences looks like a light switch...it's boxed in, clearly not what it should look like. I only know it's the sound icon because when I click on it, the sound options come up. The icon has no label.
    I'm just baffled.

  • Lightroom 4 and 5 my program constantly freezes while using the crop and straighten tool

    In both Lightroom 4 and 5 my program constantly freezes while using the crop and straighten tool with horizontal images. Im running Lightroom on a Quad-Core Intel Xeon Mac with 32 GB of memory with OS 10.8.4, this problem has gotten worse and worse to the point where the crop tool is unusable. Please help!

    Alright,
    no replies so far! Anyways, here's some more information which is leading me to the conclusion that the bug causing the effect described above is a combination of Apple's SMB implementation of Mavericks and the way Lightroom is actually using SMB network access:
    I did another trial by connecting a USB hard drive to the USB port of my router (Netgear). The connection is quite slow, but moving one of the folders in question (see my 1st post above) to the shared drive connected to the Router made Lightroom on my Windows machine to see the photos again, when I told Lightroom where to find the moved folder!
    Everything was working as expected, on the Windows machine again! Moving the folder back again to the Mac Mini fileshare was causing Lightroom on the PC to get blind again for the pictures trying to sync or import. However, accessing and modifying a photo was possible again, like it was before the trial. So it's only the sync and import function having a problem!
    I also did some trial in re-building ACLs and access rights on the file server with no luck. So there's got to be a functionality in sync and import of Lightroom which is using a certain SMB feature which is not supported by Apple's SMB implementation!
    Any thoughts or hints?
    Thanks!

  • Problem with iTunes suspected to cause system crashes.

    I have been having problems lately with using iTunes. I'll try to explain the troubles as best I can.
    When iTunes is running, sometimes can be a couple minutes, sometimes half an hour, i will always eventually get a system crash of a very strange nature. The usb power will cut out, the sound will click repeatedly, and the last image displayed on the monitor will be frozen on.
    Steps I have tried:
    Reinstalling 10.1.1 including a removal of all itunes, quicktime, and apple software packages from my computer, reduced frequency of issue, still happens though.
    Downgrading to 10.0/10.0.0
    no real effect.
    Downgrading to last version of 9
    problem seemed to go away (might just be significantly less frequent), but I realized I cannot sync my ipod touch 4g with itunes 9.
    Looking for any insight or similar experiences.
    Thank you for your time.

    I haven't had the issues of iTunes freezing, but yet one more example of iTunes issues on a Win7 64 bit OS. I have NUMEROUS sync issues when trying to sync only my music on Win7 64bit OS. After I close iTunes, there is ALWAYS a small iTunes window open advising it is "backing up" but the main iTunes window is closed, the iPhone4 does not indicate it is 'syncing' and the only way to get rid of it is to kill it in task manager.
    Some of the errors I receive in iTunes when syncing are:
    1. Some of the items were NOT copied to iPhone "iPhone" because one ore more errors occured.
    2. Attempting to copy to the disk "iPhone" failed. An internal device error occured.
    3. The iPhone "iPhone" can NOT be synced. An unknown error occured (0xE8004006).
    4. The iPhone "iPhone" can not be synced. The required file can not be found.
    5. The iPhone "iPhone" can not be synced. A duplicate filename was specified.
    6. The iPhone "iPhone" can not be synced. An internal device error occured.
    These errors keep appearing one after the other.
    I have fully uninstalled iTunes and ALL Apple programs.
    I have tried changing time zones.
    I have created a new user account on same laptop and still have same issues with iTunes.
    Yet iTunes works fine on a Win7 32bit operating system for me.
    I just cant easily go back to that though as that old laptop is barely functional anymore, hence getting a new laptop.
    But I have read many issues with iTunes freezing and sync issues, and all of them appear to be coming from 64bit OS of win7. Any help from Apple? Anyone?

  • How can I export songs from my iTunes to a mail program or laptop?

    How can I export songs from my iTunes to a mail program/computer? The songs in question are originals composed by my boyfriend in Garage Band. We have full rights to them, but they import into iTunes like all the other artists songs. His hard drive crashed and I have the only copies. I have no access to my iMac for 2 months while we tour our show and we need them on the tour. We are in dire straights if we can not access these songs and the iPad will not hook up to our equipment. Plus we need to add a track to a promotional video. So how can we access our own music?
    Thanks.

    If they are in the iPad's Music app then the only way to get them out of it is by connecting the iPad to a computer. As they aren't iTunes purchases you won't be able to copy them back to a computer's iTunes via File > Devices > Transfer Purchases, instead you will need a third-party program on the computer to copy them off - there are some listed half-way down this page which should work: https://discussions.apple.com/docs/DOC-3991

Maybe you are looking for

  • Convert blob to array

    Hello everybody. I saw an article that describes how to bind array parameter. The main idea is to send Varchar and convert it to array in a function. This is the article: http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:14601234806

  • Adobe PDF presets...

    I have an ID file open... I go to File... Adobe PDF presets... smallest file size. The Save As dialog box comes up with a different file name than the file that I have open and trying to convert to a PDF. This happens occasionally... most the time th

  • How do I disable http proxy settings on iPad mini?

    How do I disable http proxy settings on iPad mini?

  • Computer Won't Run w/o TechTool CD...stuck

    Hello, I'm posting this message for my dad, so I don't know if he has a 'normal' or a 'firewire 800' G4. We recently ran TechToolDeluxe on his computer, starting up from the CD, and running a diagnostic and repairing the drive. We had also just done

  • Unix cmd for opening cd door

    Hi All, Does anyone know the unix cmds for opening and closing the cd door? Thanks, Richard