Slashdot Mirror


iTunes: Still Slowing Down Windows PCs After All These Years

colinneagle sends this quote from an article at NetworkWorld: "I run a very nifty desktop utility called Rainmeter on my PC that I heartily recommend to anyone who wants to keep an eye on their system. One of its main features is it has skins that can monitor your system activity. Thanks to my numerous meters, I see all CPU, disk, memory and network activity in real time. the C: drive meter. It is a circle split down the middle, with the right half lighting up to indicate a read and the left half lighting up for write activity. The C: drive was flashing a fair amount of activity considering I had nothing loaded save Outlook and Word, plus a few background apps. At the time, I didn't have a Rainmeter skin that lists the top processes by CPU and memory. So instead, I went into the Task Manager, and under Performance selected the Resource Monitor. Under the Processes tab, the culprit showed its face immediately: AppleMobileDeviceService.exe. It was consuming a ridiculous amount of threads and CPU cycles. The only way to turn it off is to go into Windows Services and turn off the service. There's just one problem. I use an iPhone. I can't disable it. But doing so for a little while dropped the CPU meters to nothing. So I now have more motivation to migrate to a new phone beyond just having one with a larger screen. This problem has been known for years. AppleMobileDeviceService.exe has been in iTunes since version 7.3. People complained on the Apple boards more than two years ago that it was consuming up to 50% of CPU cycles, and thus far it's as bad as it always has been. Mind you, Mac users aren't complaining. Just Windows users."

53 of 519 comments (clear)

  1. why does your phone need software running on your by Mr.+Slippery · · Score: 5, Interesting

    There's just one problem. I use an iPhone. I can't disable it.

    Sorry, can someone explain to a Linux/Android guy how having an iPhone implies you can't kill misbehaving software on your Windows box?

    --
    Tom Swiss | the infamous tms | my blog
    You cannot wash away blood with blood
  2. Re:why does your phone need software running on yo by mr100percent · · Score: 4, Informative

    The service runs in the background and launches iTunes when the phone is plugged in. It's quite handy.

  3. I tried to install iTunes on Windows once. by Kaenneth · · Score: 3, Interesting

    I tried to use iTunes once, but I couldn't complete the installations because a required entry drop down list wasn't in the dialog tab order, and I didn't have a mouse available, just a keyboard at that time.

    Their graphics/design guys are good, but Apple developers/testers just seem lazy to me, missing something so basic.

    1. Re:I tried to install iTunes on Windows once. by narcc · · Score: 3, Insightful

      Yeah, accessibility is for losers!

    2. Re:I tried to install iTunes on Windows once. by ctishman · · Score: 4, Informative
      Not the average use, no, but it does raise a whole lot of accessibility issues for those who have physical issues that prevent their using mice. Both Apple and Microsoft publish a set of user interface guidelines that say the following: Excerpted from Microsoft UX Guidelines ( http://msdn.microsoft.com/en-us/library/windows/desktop/aa511258.aspx ):

      To ensure that your program's functionality is easily available to the widest range of users, including those who have disabilities and impairments, all interactive user interface (UI) elements must be keyboard accessible. Generally, this means that the most commonly used UI elements are accessible using a single access key or key combination, whereas less frequently used elements may require additional tab or arrow key navigation. For these users, comprehensiveness is more important than consistency.

  4. Get Rid of iTunes! by Anonymous Coward · · Score: 3, Funny

    And replace it with the Rainmeter skin that plays MP3s.

  5. iTunes by girlintraining · · Score: 3, Funny

    People complained on the Apple boards more than two years ago that it was consuming up to 50% of CPU cycles, and thus far it's as bad as it always has been. Mind you, Mac users aren't complaining. Just Windows users."

    The reason is two-fold. First, iTunes scans your folders for new files periodically if you don't let it manage your collection for you. Second, it's constantly searching for an iDevice using the 'mobile' service; All that CPU is being eaten making windows calls to each attached USB bus and being asked "Are we there yet? Are we there yet? Are we there yet?" And then, of course, launching iTunes as soon as one is detected. You can disable this service with no ill-effect, but you have to do it manually. iTunes will then throw up a warning and then continue on its merry. That, by the way, is also on the Apple message boards.

    Now yes, Apple shouldn't have done this without telling its users: Hey, enabling this is gonna slow your junk down! -- But on the flip, Microsoft's hardware abstraction layer is a terrible, horrible, implimentation that makes every access from userspace terribly expensive. And worse? Some of the documentation specifically says they want it that way! On purpose! Everytime I have to work with HAL I'm filled with a strong urge to strip all my clothes off, burn them, then take a cold shower while shivering up in the corner, scrubbing my skin raw, chanting "must...wash...away...the sin..."

    I guess what I'm saying is... Shame on both of them. Now if you'll excuse me, I have another shower to take.

    --
    #fuckbeta #iamslashdot #dicemustdie
    1. Re:iTunes by Jeremi · · Score: 3, Insightful

      somelabel: if(something_happened() process_it(); usleep(100000); goto somelabel;

      As a result, I have a latency too short to be noticed, and also the process eats almost no processor time when idle.

      100,000 microseconds (aka 0.1 seconds) is too short to be noticed? Maybe for some very lightweight tasks, but for many (most?) computer tasks, 0.1 seconds is a huge amount of latency. If, for example, your hard disk controller was programmed using this logic, your computer would take several hours to boot. Even writing a mouse driver this way would provide a poor user experience (10Hz mouse pointer updates)

      A much better event loop would be:

      somelabel: if(something_happened() process_it(); wait_until_next_event_is_ready(); goto somelabel;

      This would have close to zero latency, and would eat precisely zero processor time when idle. Of course the trick is implementing wait_until_next_event_is_ready() to do what its name implies, but it's really not that hard to do in most cases.

      --


      I don't care if it's 90,000 hectares. That lake was not my doing.
    2. Re:iTunes by spitzak · · Score: 3, Informative

      I'm not sure why he mentioned NTFS. I believe the Windows file modified event is sent for any changes on any disk type, even on remote NFS mounts, that are done by a process on the local machine that is using the Windows api to create files. If it is limited to NTFS then Microsoft is completely bonkers.

    3. Re:iTunes by benjymouse · · Score: 5, Insightful

      But on the flip, Microsoft's hardware abstraction layer is a terrible, horrible, implimentation that makes every access from userspace terribly expensive.

      And worse? Some of the documentation specifically says they want it that way! On purpose!

      Citation needed.

      Windows actually has a rather sophisticated driver model which allows many drivers to be implemented in user mode or at least be divided so that big parts can run in user mode. This improves both stability and security. A relevant type of drivers in this context is bus drivers, specifically bus drivers for USB. These drivers will discover new devices on the USB bus *regardless* of their make, capability etc. The bus driver til inform *your* driver when a device arrives. No need to scan or poll for devices. If you do it right you can just sit there and wait to be informed. No need to poll, no need to even tie up a thread in waiting state.

      That is all in the documentation:

      Types of WDM Drivers
      Function drivers
      An example

      So which part of the documentation did you read?

      Everytime I have to work with HAL I'm filled with a strong urge to strip all my clothes off, burn them, then take a cold shower while shivering up in the corner, scrubbing my skin raw, chanting "must...wash...away...the sin..."

      Maybe you should find another line of work?

      --
      Reading slashdot one-liner: (irm http://rss.slashdot.org/Slashdot/slashdot).rdf.item | fl title,desc*
    4. Re:iTunes by benjymouse · · Score: 5, Informative

      You still have not told us where Microsoft recommends polling, as per your claim:

      And worse? Some of the documentation specifically says they want it that way! On purpose!

      [HAL] it's a nightmare of convoluted and badly-documented objects and methods. I won't go as far as to say whoever decided to go with polling instead of event-driven made a great design choice, but I can understand how, after days and days of pouring over bad documentation, he decided it was either ritualistic suicide or go with the better-documented interface...

      Windows device driver development has an entire site devoted to it. In there there is architectural guides, tools, development kits, samples, articles, process guidelines and best-practices. I really don't know what you'd expect? Would the source code be better documentation and provide better guidance?

      but I can understand how, after days and days of pouring over bad documentation, he decided it was either ritualistic suicide or go with the better-documented interface...

      I can't

      1. iPhone connects over USB. Which means that Windows already has a bus driver in place which will notity the PnP manager about device arrivals on the USB bus. What one would need to create is probably a Function Driver. If iPhone used some standard protocol one could probably do with a built-in driver, but I suspect that some proprietary protocol are at work - so therefore a function driver.

      2. The PnP manager will activate and notify the function driver upon device arrival. It will do so through the AddDevice message.

      3. From the looks of it, what the iPhone requires is probably aptly covered by a user mode driver. Which flies in the face of your previous assertion that

      Microsoft's hardware abstraction layer is a terrible, horrible, implimentation that makes every access from userspace terribly expensive

      What exactly is it you feel is not documented? What is the documentation you are missing? You did download the Windows Driver Kit, right?

      Still waiting for citation for Microsoft recommendation of polling...

      --
      Reading slashdot one-liner: (irm http://rss.slashdot.org/Slashdot/slashdot).rdf.item | fl title,desc*
  6. Re:why does your phone need software running on yo by centipedes.in.my.vag · · Score: 4, Informative

    Litigation is somewhat of an issue when dealing with Apple's hardware/software and reverse engineering.

    --
    Only on /. can I lose karma with 2x "5, Funny" posts.
  7. Purposeful by enigma32 · · Score: 3, Interesting

    Sometimes I swear Apple makes the Windows versions of their software terrible on purpose. It's still an uphill battle trying to use any of their software on a windows machine, as it always has been.

    Why?
    Obviously when you're using their amazing iPhone or iPad or whatever other tacky Apple gadget, you'll start to feel that your PC isn't up to par and you should replace it with a Mac.

    Total rubbish. People should avoid buying trashy Apple products at all costs, lest they support this fiefdom.

    full disclosure: I have used Linux exclusively for the past 13 years. I only have to interact with Apple and Microsoft's junk when I have to sync my wife's iPad with her PC.

    1. Re:Purposeful by ruir · · Score: 5, Informative

      Must be to compete with Microsoft. Their Office for Mac is a piece of junk and often doest adhere to the HID guide of development software. Hell, I cant even cut & paste images dragging and dropping them as in other Apple software. And it is SLOW.And lets not get started about Outlook. I have been trying to take a coworker out of it.

  8. iTunes is crappiest software ever by PortHaven · · Score: 4, Interesting

    Steve Jobs death I believe was because his accusation of accusing Flash as being crappy software while iTunes remained by far the worse POS ever written, literally guilted Mr. Jobs to death.

    Seriously though...I've never wasted more time than I have with iTunes. Never had any app cause my system to become unresponsive more. I would wager $5,000 Apple deliberately chose to make for a sucky experience on Windows.

  9. Sell your iPhone. by retchdog · · Score: 3, Informative

    A similar google service on my MacBook causes the keyboard to stutter every few hours and occasionally disables the camera until I reboot. There's a way to disable it, but I haven't bothered yet. However, the process is incredibly similar to this one for disabling applemobiledeviceservice on Windows.

    Mac users don't complain because iTunes on Mac doesn't have this problem, or much of any problem that I've noticed. This is either because Apple doesn't know how or care to code for Windows, or because it's a conspiracy to get iPhone and iTunes users to buy Macs because "Windows is slow." In my opinion, it's probably a mixture. Apple just doesn't have as much incentive to provide a good Windows experience, so they don't bother, knowing that this will probably convert a few suckers to Mac.

    Similarly, Google services don't seem to screw up Windows or Linux, and Google's MTP support for Mac (MTP is required for Nexus 4) is ridiculously minimal. It's an analogous situation. Vendors for system X don't care about system Y, news at 11.

    The solution seems simple. Sell your iPhone to a Mac user, and buy an Android device. Why would you even buy an iPhone for Windows? I use a Mac and I still won't buy one.

    --
    "They were pure niggers." – Noam Chomsky
  10. iTunes slows down my PC by hcs_$reboot · · Score: 4, Informative

    superuser.com is too busy and /. comes to the rescue. Thanks /.

    1 Answer:

    - First of all, you can charge your iPhone without having iTunes loaded/loading (see this).
    - Then, many users don't have such problem: be sure you have the latest windows SP, and the latest iTunes.

    Possible duplicate from Prevent iTunes from starting when iPhone is plugged in on Windows

    --
    Slashdot, fix the reply notifications... You won't get away with it...
  11. Re:why does your phone need software running on yo by binarylarry · · Score: 5, Funny

    That's SIGKILL yourself in shame.

    --
    Mod me down, my New Earth Global Warmingist friends!
  12. Re:why does your phone need software running on yo by Anonymous Coward · · Score: 5, Informative

    You can use the SC in the command line to enable the service when you need it and disable it when you don't using a BAT file.
    (sc config servicenamehere start= disable)

    Just saying... and thanks for the head up on Rainmeter

  13. This just in: iTunes is shit by redback · · Score: 4, Insightful

    iTunes is shit. It has always been shit. It will probably always be shit.

    This is not news.

  14. Re:why does your phone need software running on yo by jader3rd · · Score: 5, Informative

    The service runs in the background and launches iTunes when the phone is plugged in. It's quite handy.

    That feature is built into Windows (at least Vista+). A user can decide which action to take when a specific device is plugged in; no extra services required.

  15. Re:No iTunes for the Windows Store by rudy_wayne · · Score: 4, Informative

    Of course this means Microsoft's puppet press has to bash iTunes now. Not that I would run the stupid app, but that's what this is about. Ballmer has his knickers in a twist because he's starting to find out what it felt like to all those other people he was locking out of the dominant platform back in the day when he was king of the hill.

    I do not work for Microsoft and as an owner of an iPod, which requires iTunes to transfer music from my computer onto the device, I can tell you that the Windows version of iTunes is probably the shittiest piece of software ever written.

  16. Companies think they own my machine by EmperorOfCanada · · Score: 5, Insightful

    I hate how these companies seem to think that they can take over my machine; HP seems to think that all I do is print. Office seems to think that I type all day. AV software usually seems to think that all I do is want to hunt viruses. iTunes seems to think that I just screw with my iPad/iPhone all day. BlackBerry violates your machine. Java seems to think that it should check for an upgrade 100% of the time.

    The last few updates from Apple have this hidden MRT process that goes made for hours after the upgrade. But the MRT gives no hint that it is installing, and no hint that it is running. Your machine grinds to a halt so you slowly bring up the list of active services and find that it is using all your CPU and that of your neighbor plus so much memory that it is worse than the viruses that it is hunting.

    I wish that people would have an OS that has a simple sandbox keeping software installation tools from installing whatever they want. Then when I run Office or iTunes or even my AV it will then run. When I shut it down it will stop. The same for drivers. When I go to print it should run the driver and then go away.

    But another critical tool that could be created right now would be to have an activity monitor that differentiates vital services from crap from Acer or HP. With this tool you would bring up a list of services running and not only kill them now but disable them for all time. No more kill the service only to have some daemon pop it back up seconds later. I don't want to go digging through any config/startup/hidden file nonsense.

    1. Re:Companies think they own my machine by Pichu0102 · · Score: 3, Interesting

      Have you tried out Sandboxie? It does pretty much what you're describing.

  17. Re:No iTunes for the Windows Store by Galactic+Dominator · · Score: 4, Funny

    I can tell you that the Windows version of iTunes is probably the shittiest piece of software ever written.

    Then you haven not used FileMaker, the VB 6 IDE, or any VB 6 app.

    --
    brandelf -t FreeBSD /brain
  18. Temp Files by Anonymous Coward · · Score: 3, Insightful

    Windows ITunes is not just slow; it leaves gigantic *.tmp files in your Itunes folder, especially if you have a large library. Go ahead..check it out. I freed up over 60 gigabytes of space by deleting them recently, and I think they are created everytime you load ITunes.

  19. Re:What are you using iTunes for? by ZorinLynx · · Score: 3, Informative

    Only if you purchased it from Apple. If you want to sync your local music collection to your iPhone you still need to use iTunes sadly.

  20. Re:What are you using iTunes for? by Anonymous Coward · · Score: 5, Funny

    Clearly the problem is that he's using Windows. If he's bought an iPhone, then the next step is to buy an iMac to plug the iPhone into, and then a new iPhone, because his old iPhone won't work with his new iMac. Also a black turtle neck. And a picture, "Steve Jobs 1955 - 2011" for his wall.

    Personally I don't buy iCrap. I have a picture of Dennis Ritchie on my wall, and underneath, his widely celebrated comment: Steve Jobs is a cunt*.

    * This is not an actual comment by Dennis Ritchie**.
    ** To my knowledge.

  21. Re:why does your phone need software running on yo by fuzzyfuzzyfungus · · Score: 4, Informative

    I'm surprised that nobody makes a replacement application. I remember virtually having to buy one for my NJ3 years back because the OEM software was so bad.

    If memory serves, older flavors of ipod where more or less equivalent USB mass storage devices, though they required media files to be stored in a specific arrangement and a little database file to be uploaded, so you needed a utility of one sort or another to do transfers(you could drag and drop; but the device wouldn't do anything useful with files added that way).

    For the iDevices that Apple actually cares about(ie. not the 'classic') the situation is a bit weirder and more complex: it's strongly resembles TCP-over-USB. On top of that, all kinds of behavior has been implemented. As the latter link suggests, there has been some work on the matter; but it's a relatively complex beast(which Apple has no particular compunction about changing as it suits them).

  22. Re:why does your phone need software running on yo by dgatwood · · Score: 5, Informative

    I'm pretty sure that it is real CPU load. It is caused by a conflict with some network filtering software (e.g. antivirus software, content filtering software, etc.). Try updating the relevant software.

    --

    Check out my sci-fi/humor trilogy at PatriotsBooks.

  23. Re:why does your phone need software running on yo by RoknrolZombie · · Score: 4, Insightful

    The problem isn't in charging the phone - that can be done without iTunes installed at all. The issue is for downloading music (to my knowledge - I don't use iTunes with my phone, only an old iPod) - any interactions that you want to make happen from your computer to your phone have to be blessed by iTunes. As another poster mentioned, iTunes has at least 3 different applications that run at the same time - killing any one of them by itself it will restart immediately. Kill all 3 and they'll restart after about a minute. While it's "easy" enough for techies to go in and disable the service, my take on the question is: Why should that even be necessary? Why isn't there a clearly labeled toggle somewhere in the software? And the answer is that - at least for iDevices - there are no other alternatives (as a different poster mentioned, there are paid for apps that say they can accomplish this - I don't know anything about them). I can't come up with a Linux equivalent...sorry. (BTW, I'm not the AC from above, I think it's a good question - it's not unreasonable to have control over your own devices, however Apple has given us their opinion about that in no uncertain terms).

  24. Re:No iTunes for the Windows Store by RoknrolZombie · · Score: 3, Funny

    Or Windows.

  25. Ill-informed author by dirtyhippie · · Score: 4, Insightful

    I stopped reading when I got to the bit about how his virus scanner was written in assembly for speed. This is a ridiculous assertion given that virus scanners slow the system down because of IO pressure, not to mention how good modern x86 compilers are.

  26. Re:why does your phone need software running on yo by pecosdave · · Score: 4, Informative

    I don't actually use Windows, but I do take care of it for others.

    Hold down that little Windows key on your keyboard and hit "R". Type in "MSConfig", in the startup section enable/disable whatever you want. I personally like to disable just about anything Adobe, Apple, or Oracle puts in there, unless I actually need to run an Oracle component in the background. Those three companies can't help but attention whore and run on startup and none of there stuff actually needs to run until used. You can probably find a few more things that have no business starting with your machine while you're at it.

    --
    The preceding post was not a Slashvertisement.
  27. Re:why does your phone need software running on yo by Gadget_Guy · · Score: 4, Informative

    You misunderstood the "just click an icon" comment. It was in response to:

    The service runs in the background and launches iTunes when the phone is plugged in. It's quite handy.

    The comment was actually saying that all the service did was to save you from having to manually launch iTunes; or in other words click an icon. It was not about how to start or stop a service in Windows (which can be done with a single icon anyway using either sc.exe or net.exe).

    The iTunes service really isn't that handy a feature, especially if it is causing problems with overuse of resources when it isn't in use. It is also annoying to have the program pop up when you are just plugging in the phone to charge it.

  28. Re:why does your phone need software running on yo by Ghaoth · · Score: 5, Interesting

    I have an iPod, not an iPhone. However, the AppleMobileDeviceService.exe process is running in the background. I have never seen it gobble up cycles. It normally sits at "00" CPU. When I plug in the iPod, it jumps to an incredible "01" for a very short interval and then returns to "00". So, does anyone else have this process gobbles up to 50% of the CPU?

    --
    Nos Morituri te salutamus
  29. Re:why does your phone need software running on yo by wiredlogic · · Score: 4, Informative

    Litigation is somewhat of an issue when dealing with Apple's hardware/software and reverse engineering.

    Reverse engineering is legal in the US. Any information gleaned from such activities that doesn't violate a patent, an NDA, or copyright / DMCA can be publicly disclosed with impunity. Reverse engineering for the purposes of interoperability is also well supported by prior case law.

    --
    I am becoming gerund, destroyer of verbs.
  30. Re:why does your phone need software running on yo by RulerOf · · Score: 4, Funny

    Well, you can't just have people willy-nilly adding files to the filesystem of the device they've purchased. We should be considerate and politely ask the device if it'll alter its filesystem on our behalf, and when it tells us to go blow donkeys for wanting r/w permission to /, we sit back and acknowledge Apple's wisdom and the groundbreaking intuition of their software!

    It's kinda sad that the extremely sophisticated design of that communication isn't really there to facilitate advanced functions... it just facilitates advanced lockdown. You don't tell the device what to do; you tell it what you'd like, and then ask if that's okay. Given that, I applaud The Evad3rs for making iOS devices bend to their owners' will.

    --
    Boot Windows, Linux, and ESX over the network for free.
  31. ...someone who has no idea how an iphone works by ashpool7 · · Score: 5, Informative

    The iPhone does not show up as a SBP2 device on the USB bus, so therefore Windows cannot format it and will not ask to format it. In fact, if you hook it up to Windows 7, it loads a Microsoft driver that exposes a DCIM folder for you to peruse as a normal disk. On Windows XP, it shows up as a "Scanner or Camera" device, again, without having iTunes installed.

    iTunes may suck, but don't make shit up.

  32. Re:why does your phone need software running on yo by ultranova · · Score: 4, Insightful

    Reverse engineering is legal in the US.

    That something is legal won't stop a company from suing and using court costs - both money and time - as a de facto punishment.

    --

    Forget magic. Any technology distinguishable from divine power is insufficiently advanced.

  33. Re:why does your phone need software running on yo by tlhIngan · · Score: 5, Interesting

    I have an iPod, not an iPhone. However, the AppleMobileDeviceService.exe process is running in the background. I have never seen it gobble up cycles. It normally sits at "00" CPU. When I plug in the iPod, it jumps to an incredible "01" for a very short interval and then returns to "00". So, does anyone else have this process gobbles up to 50% of the CPU?

    I looked at my computer, and while it's had an uptime of probably since April's patch tuesday, that service has consumed a grand total of... 1m53s of CPU time.

    He never mentions what version of iTunes he's using - perhaps it's still 10.x, which is horrible. iTunes 11 has actually fixed a LOT of stuff and is actually pretty decent and more importantly, fast. It's incredible how fast iTunes is nowadays. I'm not sure what Apple did, but damn it's fixed a lot of stutters, halts, and stalls.

  34. Re:Why is parent modded funny instead of informati by FrankSchwab · · Score: 3, Informative

    (3) The Windows APIs for device arrival notification suck and require polling rather than blocking a thread to wait

    Thanks so much for sharing your knowledge. I'll call up our software engineers immediately and let them know that processing a DBT_DEVICEARRIVAL message in the message pump, or using RegisterDeviceNotification() in our service, can't possibly work and we should re-write those sections of code to poll for device change.

    I have mod points, but there's no "-1 - ignorant" mod.

    --
    And the worms ate into his brain.
  35. Re:why does your phone need software running on yo by deniable · · Score: 4, Interesting

    Wireless sync talks to the same service. You still need it to sync with a computer.

  36. Re:why does your phone need software running on yo by AmiMoJo · · Score: 3, Insightful

    iTunes replaces quite a few standard Windows services. Until a few versions ago there was a DNS resolver service, but I think it has been built into the client now. Yeah, iTunes does its own DNS lookups for some reason.

    The entire MacOS font rendering system is also in there to make sure that iTunes looks exactly the same on Mac and Windows. That's why the font rendering is a bit blurred compared to other apps that use the Windows Cleartype system that prioritizes clarity over accurate shapes.

    --
    const int one = 65536; (Silvermoon, Texture.cs)
    SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
  37. Re:Where's my mod points when I need them? by leenks · · Score: 5, Informative

    Yep - and NOD32 is even on Apple's list of software that has issues with iTunes...

  38. Re:why does your phone need software running on yo by AmiMoJo · · Score: 3, Insightful

    Even back in the mass storage days they started to encrypt the iTunes database in an attempt to lock non-iTunes software out. They really are dicks about it.

    --
    const int one = 65536; (Silvermoon, Texture.cs)
    SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
  39. Re:why does your phone need software running on yo by beelsebob · · Score: 3, Informative

    Since when do you need to sync with a computer at all? Since iOS 5, there's absolutely no functionality on the iPhone that can't be done with the phone only, and no computer.

  40. Re:why does your phone need software running on yo by serviscope_minor · · Score: 4, Funny

    You can use the SC in the command line to enable the service when you need it and disable it when you don't using a BAT file. (sc config servicenamehere start= disable)

    Well, clearly this will never be the year of the windows desktop until users never have to interact with the commandline for anything. They should scrap entirely in fact because users should never need it.

    --
    SJW n. One who posts facts.
  41. Re:why does your phone need software running on yo by MachineShedFred · · Score: 5, Informative

    You know that mDNS /is/ a standard for network discovery, right? http://tools.ietf.org/html/rfc3927

    Microsoft is listed in the RFC, but haven't bothered to implement, as they bet on the uPNP horse with WinXP way back when.

    --
    Slashdot still doesnâ(TM)t support Unicode after it was added to the HTML standard in 1997.
  42. Your APIs are insufficient to OUR problems by tlambert · · Score: 5, Interesting

    (3) The Windows APIs for device arrival notification suck and require polling rather than blocking a thread to wait

    Thanks so much for sharing your knowledge. I'll call up our software engineers immediately and let them know that processing a DBT_DEVICEARRIVAL message in the message pump, or using RegisterDeviceNotification() in our service, can't possibly work and we should re-write those sections of code to poll for device change.

    I have mod points, but there's no "-1 - ignorant" mod.

    You do that.

    Tell them to make a version of DBT_DEVICEARRIVAL that doesn't require you to have a window handle to get the callback to the message pump so that you don't have to poll using PeekMessage(). The notifications need to be able to go to windowless services. If they can't go to windowless services running and paused in the background, they are no good for causing the launching of a specific program when a device of a specific type arrives.

    Then tell them that RegisterDeviceNotification() is useless for detecting new iPod/iPhone/iPad devices because it require matching a GUID that has not been defined at the time that the service was written, and that having to update the service by having to update iTunes each time you buy a new device before the plugged in device is recognized as launching iTunes because you don't get a broadcast notification in that case, which you can then use to open up the device temporarily to probe it further ("Hi, USB device, are you an Apple Device?") rather than using a stinking GUID.

    Then call up the IronKey and other encrypted USB storage device folks and tell them about it, too, because, hey, they have to do a crypto handshake and need to be able to aske the same question AFTER the handshake.

    Then you can call up Motorola, and tell them so they can update their PhoneTools Software, because they have the same problem.

    Then call the DataPilot folks, who have no idea in heck what the phone GUID would be when you plug in your stupid random phone, particularly if you are using their DataPilot Universal PRO Kit, which connect up to almost all the phones from Apple, Motorola, LG, Samsung, Sanyo,
    Sony Ericsson, and Audiovox.

    I have more concrete examples, but I think you get the point.

    This is a general problem. The current Microsoft APIs do not solve this general problem; they require either an open application window, or they require a service which polls. They are insufficient. If you can indeed call up your engineers, do so. Tell them the problem space their APIs are not solving, and request they fix the existing APIs or add new ones to address the problem.

  43. Re:why does your phone need software running on yo by DJRumpy · · Score: 4, Informative

    You can only download matched media, or purchased media. Anyone who rips a significant portion of their library would require match to do this (pay account), and upload it before they could leverage cloud playback on demand.

    As to your CPU issue it appears to be related to winsock.

    Close your iTunes,
    Go to command Prompt -

    (Win 7/Vista) - START>PROGRAMS>ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".

    (Win XP SP2 n above) - START>PROGRAMS>ACCESSORIES>Command Prompt

    In the "Command Prompt" screen, type in

    netsh winsock reset

    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.

    Now launch your iTunes and see if it is working now.

    If you are still having these type of problems after trying the winsock reset, refer to this article to identify which software in your system is inserting LSP:

    Apple software on Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  44. Re:Itunes, not even remotely good. by David_Hart · · Score: 4, Informative

    Higher voltage? I thought it was just higher current.

    No it could actually be higher voltage, 5V (or 5.25) compared to 4.8 or something like that.

    Nah, it's higher current (AMPs). Both you computer USB port and the iPad USB charger put out 5V. If it's higher than that, it can blow out circuits etc. I've had enough experience to say that the wrong voltage kills

    From the USB Wiki, a device (plugged into a computer) may draw a maximum of 5 unit loads (500 mA) from a port in USB 2.0; 6 (900 mA) in USB 3.0. The charger, however, puts out about 2.1 AMPs.

  45. Re:No iTunes for the Windows Store by Galactic+Dominator · · Score: 3, Funny

    As somebody who uses VB6 daily

    You've already disqualified yourself.

    --
    brandelf -t FreeBSD /brain