Unique Problem, Need someone smart

I connected my iPod shuffle to my Xbox, and my Xbox formattted it and put new firmware on it, making it useless on Windows. I tried restoring it via the newest iPod updater, but it says "iPod service error." iPod service.exe is NOT on task manager's processes. On My Computer, it showed as a removeable disk. I clicked it and it said "Drive not Formatted. Format Drive?" I formatted it and now it is back to the FAT32 File system, but iPodservice.exe still isn't running resulting in no iPod Updater ALSO resulting in I CAN'T RESTORE IT!!!
HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1
Gateway   Windows XP  

Im have the same problem. I do not even have the original software disc anymore, but I doubt that will help.
Laptop   Windows XP   None

Similar Messages

  • Odd ipod problem needs someone smarter then me

    i plugged in my ipod to charge and update it and that was about 4 days ago. i keep getting two different results. either it just stays at the "do not disconnect" stage, or "please wait, battery is very low". and then sometimes i get a "charged" screen and i disconnect only to find its not charged at all and when i connect it again and it says ipod or itunes file is corrupt. i can't do any of the 5 R's because the battery is dead and it won't let me. i've searched the support pages but can't seem to find anything that works. does anyone have any ideas or suggestions. thanks so much

    Was this by any chance the first time you have connected your iPod since upgrading to iTunes 7 because if it is the new software is causing havoc to any iPod it comes in contact with.

  • Won't wake, tried everything - need someone smarter!

    My Intel iMac running 10.5.6 had been working fine since late 2007, but has recently had problems waking up. Holding down the power button does nothing - black screen, no fan or drive noise. The only way I can get it to reboot is to unplug it for a few hours. Things I've already tried to resolve this:
    1) Reset SMC several times by unplugging for extended periods - will reboot, but problem comes back (i.e., will go to sleep then may or may not wake)
    2) Did a disk check - nothing to repair
    3) Rebooted, resetting the NVRAM - no improvement
    4) Did a complete erase and reinstall of Leopard, moving only files over from my TM drive (not profile or apps); upon reinstall of the OS, the only app I loaded on was Photoshop CS4
    5) Bypassed my power strip, plugged straight into the wall (running short on ideas...)
    It has occasionally gotten hung on rebooting (gray screen, black screen - hence the extended unplug period to fix) and once it gave me the file folder and question mark icon on startup, but subsequently completed boot up. The only sure way at this point to get the machine to work, is to unplug it for several hours.
    Any guesses? Hardware or software?
    Thanks!

    Hi Texas Mac Man!
    I did not update firmware when I originally looked into upgrading to OS X because there was some incompatibility problem I read about when reading about firmware so I decided against upgrading. My daughter has a newer iMac with OS X so I tried a copy of her disks to see if I could get it to boot up. So I don't believe the OS X is on the iMac but I'm not positive.
    Looks like it will take me a little while to read through the tutorial and find which battery and get it but I won't mark this answered just yet.
    I am very happy to have heard from a local Mac person!! I didn't know where to go for help. Are you a service person or just a helpful person? If I can't get it working, I will need to go to someone who can fix it.
    Thanks!!
    iMac G3 Slot   Mac OS 9.2.x  

  • Dynamic Programming Change Making Problem - Need Someone to Review

    I've created a dynamic program in which you can input any amount with any given coin denominations and it should output the least amount of coins needed to solve, HOWEVER, there are some glitches I was hoping some of you could point out and correct. Here's the code for my main method and the code for my instance methods.
    public class Changemaker
    public static void main (String args[])
              int amt = Integer.parseInt(args[0]); // Initialize the method in which the program will be invoked
              Tuple[][] t = new Tuple[args.length - 1][amt + 1]; // Create the matrix
              int [] coins = new int [args.length - 1]; // Create empty array that stores the amount of coin denominations
              for (int i = 0; i < coins.length; i++) // Store input values into array called coins
                   coins[i] = Integer.parseInt ( args[i+1] );
              for (int i = 0; i < coins.length; i++) // Establish a 0 value in the first column of every row
                   t[0] = new Tuple (coins.length);
              for (int i = 0; i < coins.length; i++) // Create a tuple that checks if the given coin denomination can create the amount
                   for (int j = 0; j < amt + 1; j++)
                        if (j - coins[i] < 0) // Create a null tuple if the amount is less than the arguments
                             t[i][j] = new Tuple (coins.length);
                        else // Mantra
                             int remainder = j - coins[i]; // Take the coin out of the amount
                             t[i][j] = new Tuple (coins.length); // Create a new blank tuple of coin length
                             t[i][j].setElement(i, 1);// Change the tuple location from 0 to 1 to keep track of it
                             t[i][j].add(t[i][remainder]); // Add the tuple in the remainder cell to the existing tuple
                        try
                             if (t[i][j].total() > t[i - 1][j].total()) // Return total elements in tuple directly above
                                  if (t[i - 1][j] != null)
                                       t[i][j] = t[i - 1][j];                    
                        catch (ArrayIndexOutOfBoundsException e)
                        System.out.println(t[i][j].toString());
    }Class for Instance Methodspublic class Tuple
         private int [] change;
         public Tuple (int n) // Constructor class, elements initialized at zero
              this.change = new int [n];
              for ( int i = 0; i < this.change.length; i++)
                   this.change[i] = 0;
         public Tuple (int [] data) // Constructor class that creates a n-tuple from given data
              this.change = new int[data.length]; //Initialize the array change to incorporate data into each element
              for (int i = 0; i < this.change.length; i++)
                   this.change[i] = data[i];
         public void setElement (int i, int j) // Set element i to value j
              this.change[i] = j;
         public int getElement (int i)
              return this.change[i];
         public int length()
              return this.change.length;
         public int total() // Return total of elements in tuple
              int sum = 0;
              for (int i = 0; i < this.change.length; i++)
                   sum += this.change[i];
              return sum;
         public void add (Tuple t) // adds a tuple t to tuple
              * Make a new "change" array that equals the current one
              * Create another array called tuple t
              * Add the new "change" array with the tuple t
              for (int i = 0; i < this.change.length; i++)
                   this.change[i] = this.change[i] + t.getElement(i);
         public boolean equals(Object t) // Return true if tuple identical to t
              * Determine if object is a tuple t
              * Check to see if tuple t is the same size of change
              * If true, loop both and compare
              for (int i = 0; i < this.change.length; i++)
                   if (this.change[i] != getElement(i))
                        return false;
              return true;
         public Tuple copy() //Return an exact copy of tuple
              Tuple copy = new Tuple(this.change);
              return copy;
         public String toString() // Returns a string of the tuple
              String s = "";
              for (int i = 0; i < this.change.length; i++)
                   s += this.change[i];
              return "<," + s + ",>";
              /* Add for loop
              * Add value at each index of array into string
    *Output:*
    *java ChangemakerTest 5 1 2 3*
    <000>
    <100>
    <200>
    <300>
    <400>
    <500>
    <000>
    <000>
    <010>
    <010>
    <020>
    <020>
    <000>
    <000>
    <000>
    <001>
    <001>
    <001>
    *The correct output using the above execution line should be:*
    <000>
    <100>
    <200>
    <300>
    <400>
    <500>
    <000>
    <100>
    <010>
    <110>
    <020>
    <120>
    <000>
    <100>
    <010>
    <001>
    <101>
    <011>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    A bit of advice on getting advice.
    1) Ask a specific question, nobody is going to debug your program for you
    2) Avoid the word "Dynamic", especially if you don't know what it means.

  • Map problem,need someone to solve it!!!!

    Map can't find the routes for bus,sometimes car or walker, it's been like that for a few weeks, it used to work before, it always shows that transit locations could not be found between these locations, and it's really weird that even though I searched on google map online, either phone or my mac , it didn't work , so sad:( can someone who's really pro can help me??? Thanks:)

    Maybe vendor took it off?
    Are you regulary updating yout Tablet OS?
    Leader of Ljubljana BlackBerry Developer Group
    BlackBerry Certified Builder for Native Application Development

  • Parallax Scrolling help in Muse? This tricky problem needs a smart solution.

    I'm trying to build my portfolio website in Muse and want my text to move along with my images as you scroll, like it does here: http://jessicahische.is/feelingmelancholy
    I have been trying to use parallax scrolling to achieve the effect, but I'm having a lot of trouble.
    Basically, I want my text to start moving with the scroll, but not to start moving until the first image hits the top of the browser. Just look at the link above to see exactly how I want it to look. Does anyone know how to acheive this effect?
    Thanks!

    Just in case anyone is still curous - I figured it out!
    First of all, if you're having trouble viewing the scroll effects panel, go to Window > Scroll Effects, and the new panel will pop up. Click on the text or whatever element want to scroll alongside your first image image, and set it's "key position" - the little handle at the top - to the top of the first image, or in my case, just above the top of the first image. Then set all of your of you motion positions to 0 px except the top one - which should be 1 px. See attached screenshot. Respond if you have any questions.
    Hope this helps someone!
    Alli

  • Help! I need someone smart!

    My iPod has been completely cleared of all its music. I plugged it in and all of the songs erased. I will plug it in but a message comes up saying 'iTunes cannot update this iPod because it does not recognize the folder 'COMPAQ_OWNE' . How do I fix this!??!?!?!

    I have already tried restoring, and when I connect my iPod, the page with the iPod doesn't show up in iTunes (the page with the picture of iPod and a few tabes saying iPod, Summary, etc.). I don't think iTunes recognizes my iPod? It took me about five minutes to pull up that tab in my Library and I don't remember how to do it. Help! Again!

  • Need someone smart to help me out with uploading songs from iPod to PC !!

    Okay, I apologize, in advance, if this topic has already been covered so please just humor me. Here's my dilemma :
    I have an exchange student staying at my house. She was given a Nano for her birthday in November and the first host families daughter put a bunch of songs on it. Then she went to the second family and somebody ( she doesn't know who or how ) was able to take her songs on her Nano and put them on another iTunes list. Now she's with us and I can't figure out how to do it. I tried just hooking it up and seeing if My Computer would recognize it, which it does but when I try to open it, it says "The disk in drive E is not formatted-Do you want to format it now ?" Obviously I don't want to erase all the songs she has on here. Any suggestions ? Thanks for all help guys !
    Tim
    Nano 2GB   Windows XP  

    There are a number of third party utilities that you can use to retrieve the files from your iPod. This is just a selection.
    YamiPod Mac and Windows Versions
    PodUtil Mac and Windows Versions
    iPodCopy Mac and Windows Versions
    PodPlayer Windows Only
    PodPlus Windows Only
    Have a look at the web pages and documentation for these and pick one you are happy with, they are generally quite straightforward.
    There is also a manual method of accessing the iPod's hard drive through Windows posted in this thread: MacMuse - iPod to iTunes

  • I need someone to take over my computer and fix this problem for me

    pls help i need someone to fi this problem for me my j4680 will not go wireless can someone take over my computer and find out what is wrong plsssssssssssssss

    Try HP's diagnostic utilities:
    http://h30434.www3.hp.com/t5/Printer-networking-and-wireless/Network-Printer-Problems-Try-the-HP-Hom...
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Problems when someone shares with me it screen

    I have a problem when someone shares his screen with me it happens only in my computer.
    tried to clean the cache uninstall and install nothing shutdown the firewall nothing helps ....
    Any idea ?
    Thanks

    Hello Sallo, 
    Issue seems to have occured in the past where it got fixed by removing  kb2760556  KB2760512  one by one and after that installing them
    again. 
    Is your machine Windows 7 machine with a home user interface like Aero theme enabled? can you move into Window 7 Basic version and  give a try. 
    IIf we feel that its because of the patches , then we need to follow the methord of uninstalling patches one by and one and test the scenario each time 
    Sunilkumar

  • UNIQUE Problem in pulling DATA from DATA base table to internal table

    Dear Experts,
    I am new to ABAP. I have a very basic question but looks a quite puzzling one to me. Hemnce I am posting it here.
    I am facing an unique problem in pulling data from database table and populating that data into internal table for further use.
    The data in the database table "Zlt_mita" with fields M1 (Employee Name, Type: Char20) and M2 (Employee Code, Type Char7) are:
    Plz refer the screenshot in the attached file:
    My Code:
    1) When I try to pull data from Dbase table by taking M2 as parameter.
         This code is succcessful and I am able to populate data in internal table it_dat.
    TYPES: Begin Of ty_DAT,
                     M1   TYPE  Zlt_mita-M1,
                     M2   TYPE  ZLT_mita-M2,
                 END  OF  ty_DAT.
    DATA: it_dat        TYPE STANDARD TABLE OF ty_dat with header line,
              wa_dat      TYPE   ty_dat.
    PARAMETERS: p_mitar    TYPE  Zlt_Mita-M2.
    SELECT           M1
                           M2
            FROM     ZLt_mita
            INTO       TABLE it_dat
            Where     M2 = p_mitar.
    Loop at it_dat into wa_dat.
       WRITE:/2 wa_dat-M1,
                  10 wa_dat-M2.
    ENDLOOP.
    2) When I try to pull data from Dbase table by taking M1 as parameter.
         This code is NOT succcessful and I am NOT able to populate data in internal table it_dat.
    TYPES: Begin Of ty_DAT,
                     M1   TYPE  Zlt_mita-M1,
                     M2   TYPE  ZLT_mita-M2,
                 END  OF  ty_DAT.
    DATA: it_dat        TYPE STANDARD TABLE OF ty_dat with header line,
               wa_dat      TYPE   ty_dat.
    PARAMETERS:    P_Mita    TYPE   ZLT_Mita-M1.
    SELECT           M1
                           M2
            FROM     ZLt_mita
            INTO       TABLE it_dat
            Where     M1 = P_Mita.
    Loop at it_dat into wa_dat.
       WRITE:/2 wa_dat-M1,
                 10 wa_dat-M2.
    ENDLOOP.
    Why is this happening when both M1 and M2 are Type Character fields.
    Looking forward for your replies.
    Regards
    Chandan Kumar

    Hi Chandan ,
    Database fetch is case sensitive ,So u need to give exact format in where condition.
    Make your parameter and database in same case so that you need not worry about case sensitivity .
    Check the lowecase check box in the domain .
    Then declare your parameter 
    PARAMETERS:
    P_Mita
    TYPE   ZLT_Mita-M1 LOWER CASE . 
    You can do the vice versa also by unchecking lowercase and giving Upper case instead of lower in parameter declartion .
    Regards ,
    Juneed Manha

  • We have been loyal Verizon customers for about six years and need someone to investigate the amount of stress we have been put through by them in the last two or three weeks!HELP!Who do we go to?

    We have been loyal Verizon customers for about six years and need someone to investigate the amount of stress we have been put through by them in the last two or three weeks!HELP!Who do we go to?

    What problem are you having with your service or device? (Removed)
    Message edited as required by the Verizon Wireless Terms of Service
    Message was edited by: Admin Moderator

  • IPhone 4 apple logo loop after update, unique problem.

    Please take the time to fully read this question before copying and pasting the generic apple help links please
    Okay so today I decided to update my phone to the latest iOS version, and upon completion I got the infinite apple logo loop problem. The standard approach I know is to do the recovery solution on your itunes. Well, here lies the problem. My laptop which has my iTunes is currently badly broken, and cannot be used. I thought that oh I'd be able to use my iTunes account on a different computer, but to my annoyance, my password is different to the one I use to confirm IAP. So I try the recovery methods, first birthday. My birthday is wrong, tried a varied range to no avail. Tried email, non of my 3 only used emails work, till I look and see the Apple ID email is slightly different to the ones I currently use, but I can't even create the email it uses as I don't know of any way I can make a .co.uk email now.
    So I am stuck in a very unique situation, need to recover my iPhone via iTunes, but my iTunes can't be accessed. Is there anyway around this or am I completely screwed? I don't want to just cut my losses and make a new Apple ID/wipe my phone as I have lots of much needed information in my notes etc that I can't afford to lose and that I don't remember by heart.
    Any constructive responses would be greatly appreciated.

    if it is stuck in a reboot loop and u HAVE to do a recovery mode restore. there is no choice. u will have to get rid of that information. call applecare (1-800-275-2273) to get help with getting access to ur apple id, but for now, u need to get ur phone working first.
    to help with a loop problem sometimes a hard reset will work. hold down the power button and the home button at the same time for 20 seconds. its kinda like holding down the power button on a computer.
    if that doesnt work then u will need to place it into recovery mode and do a restore. that WILL delete what is on the phone currently but if u have a back up either on itunes or icloud u can restore that back up onto the phone afterwards.

  • I need someone to please help me!!

    I have found the problem but am not technical enough to resolve issue.  This is were it lies  " /var/Keychain/keychain.   It was in a community discuss at this link https://discussions.apple.com/thread/4015191?start=0  I need someone to step me through the process. What is happening is when I try to back up to iTunes the very generic error message " iTunes could not back up iPhone because an error occurred ". Same as in duscilussion link provided  I so would appreciate help. 

    Mozilla Firefox is a web browser, it is used for viewing websites, not for setting up websites (although it does have limited ftp features). There is help on direct chat use the is link to find out more https://support.mozilla.com/en-US/kb/ask
    In Firefox the favorites/favourites are referred to as bookmarks see for instance: [[How do I use bookmarks?]]

  • I am having a Startup problem. Someone comes on the screen with Open Firmware to Startup. How can I reset the PRAM myself to solve this problem?

    I am having a Startup problem. Someone comes on the screen with Open Firmware to Startup. How can I reset the PRAM myself to solve this problem?

    Read these.
    http://support.apple.com/kb/HT1431
    http://reviews.cnet.com/8301-13727_7-10330118-263.html

Maybe you are looking for