Battery problems... or not??? pls help

hi.. i have a 30Gb Ipod (5G)... and i don't know, but i think that since i update my firmware to the latest version the battery is lasting less and less.. i had read in some forums that the firmware uptade can causes this; is this true?? or is a battery problem??..
if it's a firmware problem, how can i set the iPod to the oldest firmware version?
thx for the help...:D:D:D
  Windows XP Pro  

It's very difficult now to revert to older firmware because the updater is now integrated to iTunes.
Have you tried these?
Beef up my iPod battery.
How to accurately determine your iPod battery life.
Can I make the meter more accurate?

Similar Messages

  • Hi, since i updated my iphone5 to 7.1 version,i found the battery easy run out,pls help how to back to 7.0.2 version,thanks

    since i updated my iphone5 to 7.1 version,i found the battery easy run out,pls help how to back to 7.0.2 version,thanks

    Downgrading of iOS is not supported by Apple.
    However, See these steps for troubleshooting battery or charging issues.

  • Again same problem error 0xE8000003 pls help again i don't know it keep doing that

    Again same problem error 0xE8000003 pls help again i don't know it keep doing that please help with that

    Hello sartip fatah,
    The following article provides further information regarding this error, and steps to help resolve it.
    iOS: Unknown error containing '0xE' when connecting to a Windows PC
    http://support.apple.com/kb/TS3221
    Cheers,
    Allen

  • I run  hard hardware test on my macbook white an found error like this 4SNS/1/40000001:VPOR-0.578 and i replace my new battery but it not charging,help me!!

    i run  hard hardware test on my macbook white an found error like this 4SNS/1/40000001:VPOR-0.578 and i replace my new battery but it not charging,help me!!

    Bring it in for service.  Anytime hardware test detects an error, that's an indication the service department needs to fix it.

  • Problem in answerMachine  pls help me

    Hi All my problem is exactly when u detect dtmf char can not stop playying wav file the code is below
    import java.net.*;
    import javax.telephony.*;
    import javax.telephony.events.*;
    import javax.telephony.media.*;
    import javax.telephony.media.events.*;
    import java.io.*;
    //class MachineCallObserver implements MediaCallObserver {
    class MachineCallObserver implements CallObserver {
    public void callChangedEvent(CallEv evlist[]) {
    TerminalConnection tc = null;
    MediaTerminalConnection mtc = null;
    for (int i = 0; i < evlist.length; i++) {
    CallEv ev = evlist;
    if (ev instanceof TermConnCreatedEv) {
    tc = ((TermConnEv)ev).getTerminalConnection();
    mtc = (MediaTerminalConnection)tc;
    String sExt = ".wav";
    try {
    mtc.usePlayURL(new URL("file:./greet" + sExt));
    //mtc.useRecordURL(new URL("file:./Treeting" + sExt));
    catch (Exception excp) {
    System.out.println("(1)"+excp.toString());
    else if (ev instanceof TermConnRingingEv) {
    final TerminalConnection tcc = ((TermConnEv)ev).getTerminalConnection();
    Terminal t = tcc.getTerminal();
    Address a[] = t.getAddresses();
    // For the callers name
    //setTitle(t.getName()+"bilal");
    // For the callers phone number
    //lblMisc.setText(a[0].getName());
    System.out.println(a[0].getName()+"bilal");
    Runnable r = new Runnable() {
    public void run() {
    try{
    tcc.answer();
    catch (Exception excp){
    // Handle answer exceptions
    System.out.println( "hata2");
    Thread T = new Thread(r);
    T.start();
    try {
    tc.answer();
    catch (Exception excp) {
    System.out.println("(2)"+excp.toString());
    else if (ev instanceof MediaTermConnAvailableEv) {
    tc = ((TermConnEv)ev).getTerminalConnection();
    mtc = (MediaTerminalConnection)tc;
    try {
    mtc.setDtmfDetection(true);
    mtc.startPlaying();
    if (ev instanceof MediaTermConnDtmfEv) mtc.stopPlaying();
    catch (Exception excp) {
    System.out.println("(3)"+excp.toString());
    else if (ev instanceof MediaTermConnStateEv) {
    tc = ((TermConnEv)ev).getTerminalConnection();
    mtc = (MediaTerminalConnection)tc;
    try {
    int state = mtc.getMediaState();
    //if ((state == 0) && (MediaTerminalConnection.PLAYING == 0)) {
    //mtc.startRecording();
    catch (Exception excp) {
    System.out.println("(4)"+excp.toString());
    else if (ev instanceof MediaTermConnUnavailableEv) {
    tc = ((TermConnEv)ev).getTerminalConnection();
    mtc = (MediaTerminalConnection)tc;
    try {
    mtc.stopRecording();
    mtc.stopPlaying();
    mtc.setDtmfDetection(false);
    catch (Exception excp) {
    System.out.println("(5)"+excp.toString());
    else if (ev instanceof MediaTermConnDtmfEv) {
    String sExt = ".wav";
    tc = ((TermConnEv)ev).getTerminalConnection();
    mtc = (MediaTerminalConnection)tc;
    try {
    mtc.stopPlaying();
    catch (Exception excp) {
    System.out.println("(6)"+excp.toString());
    char digit = ((MediaTermConnDtmfEv)ev).getDtmfDigit();
    System.out.println("detected DTMF: " + digit);
    switch (digit) {
    case '0':
    try {
    mtc.stopPlaying();
    mtc.usePlayURL(new URL("file:./zero" + sExt));
    mtc.startPlaying();
    catch (Exception excp) {
    System.out.println("(7)"+excp.toString());
    break;
    case '1':
    try {
    mtc.stopPlaying();
    mtc.usePlayURL(new URL("file:./one" + sExt));
    mtc.startPlaying();
    catch (Exception excp) {
    System.out.println("(8)"+excp.toString());
    break;
    case '2':
    try {
    mtc.stopPlaying();
    mtc.usePlayURL(new URL("file:./two" + sExt));
    mtc.startPlaying();
    catch (Exception excp) {
    System.out.println("(9)"+excp.toString());
    break;
    case '3':
    try {
    mtc.stopPlaying();
    mtc.usePlayURL(new URL("file:./three" + sExt));
    mtc.startPlaying();
    catch (Exception excp) {
    System.out.println("(10)"+excp.toString());
    break;
    default:
    try {
    mtc.stopPlaying();
    mtc.usePlayURL(new URL("file:./greet" + sExt));
    mtc.startPlaying();
    catch (Exception excp) {
    System.out.println("(11)"+excp.toString());
    break;
    please help me in this problem , if you u can pls help me

    > Hi All my problem is exactly when u detect dtmf char
    can not stop playying wav file the code is below
    import java.net.*;
    import javax.telephony.*;
    import javax.telephony.events.*;
    import javax.telephony.media.*;
    import javax.telephony.media.events.*;
    import java.io.*;
    //class MachineCallObserver implements
    MediaCallObserver {
    class MachineCallObserver implements CallObserver {
    public void callChangedEvent(CallEv evlist[]) {
    TerminalConnection tc = null;
    MediaTerminalConnection mtc = null;
    for (int i = 0; i < evlist.length; i++) {
    CallEv ev = evlist;
    if (ev instanceof TermConnCreatedEv) {
    tc =
    tc = ((TermConnEv)ev).getTerminalConnection();
    mtc = (MediaTerminalConnection)tc;
    String sExt = ".wav";
    try {
    mtc.usePlayURL(new URL("file:./greet" +
    ./greet" + sExt));
    //mtc.useRecordURL(new
    ordURL(new URL("file:./Treeting" + sExt));
    catch (Exception excp) {
    System.out.println("(1)"+excp.toString());
    else if (ev instanceof TermConnRingingEv) {
    final TerminalConnection tcc =
    on tcc = ((TermConnEv)ev).getTerminalConnection();
    Terminal t = tcc.getTerminal();
    Address a[] = t.getAddresses();
    // For the callers name
    //setTitle(t.getName()+"bilal");
    // For the callers phone number
    //lblMisc.setText(a[0].getName());
    etName());
    System.out.println(a[0].getName()+"bilal");
    Runnable r = new Runnable() {
    public void run() {
    try{
    tcc.answer();
    catch (Exception excp){
    // Handle answer exceptions
    System.out.println( "hata2");
    Thread T = new Thread(r);
    T.start();
    try {
    tc.answer();
    catch (Exception excp) {
    System.out.println("(2)"+excp.toString());
    else if (ev instanceof
    anceof MediaTermConnAvailableEv) {
    tc =
    tc = ((TermConnEv)ev).getTerminalConnection();
    mtc = (MediaTerminalConnection)tc;
    try {
    mtc.setDtmfDetection(true);
    mtc.startPlaying();
    if (ev instanceof MediaTermConnDtmfEv)
    onnDtmfEv) mtc.stopPlaying();
    catch (Exception excp) {
    System.out.println("(3)"+excp.toString());
    else if (ev instanceof MediaTermConnStateEv) {
    tc =
    tc = ((TermConnEv)ev).getTerminalConnection();
    mtc = (MediaTerminalConnection)tc;
    try {
    int state = mtc.getMediaState();
    //if ((state == 0) &&
    e == 0) && (MediaTerminalConnection.PLAYING == 0)) {
    //mtc.startRecording();
    catch (Exception excp) {
    System.out.println("(4)"+excp.toString());
    else if (ev instanceof
    anceof MediaTermConnUnavailableEv) {
    tc =
    tc = ((TermConnEv)ev).getTerminalConnection();
    mtc = (MediaTerminalConnection)tc;
    try {
    mtc.stopRecording();
    mtc.stopPlaying();
    mtc.setDtmfDetection(false);
    catch (Exception excp) {
    System.out.println("(5)"+excp.toString());
    else if (ev instanceof MediaTermConnDtmfEv) {
    String sExt = ".wav";
    tc =
    tc = ((TermConnEv)ev).getTerminalConnection();
    mtc = (MediaTerminalConnection)tc;
    try {
    mtc.stopPlaying();
    catch (Exception excp) {
    System.out.println("(6)"+excp.toString());
    char digit =
    digit = ((MediaTermConnDtmfEv)ev).getDtmfDigit();
    System.out.println("detected DTMF: " +
    TMF: " + digit);
    switch (digit) {
    case '0':
    try {
    mtc.stopPlaying();
    mtc.usePlayURL(new URL("file:./zero" +
    file:./zero" + sExt));
    mtc.startPlaying();
    catch (Exception excp) {
    System.out.println("(7)"+excp.toString());
    break;
    case '1':
    try {
    mtc.stopPlaying();
    mtc.usePlayURL(new URL("file:./one" +
    "file:./one" + sExt));
    mtc.startPlaying();
    catch (Exception excp) {
    System.out.println("(8)"+excp.toString());
    break;
    case '2':
    try {
    mtc.stopPlaying();
    mtc.usePlayURL(new URL("file:./two" +
    "file:./two" + sExt));
    mtc.startPlaying();
    catch (Exception excp) {
    System.out.println("(9)"+excp.toString());
    break;
    case '3':
    try {
    mtc.stopPlaying();
    mtc.usePlayURL(new URL("file:./three" +
    ile:./three" + sExt));
    mtc.startPlaying();
    catch (Exception excp) {
    System.out.println("(10)"+excp.toString());
    break;
    default:
    try {
    mtc.stopPlaying();
    mtc.usePlayURL(new URL("file:./greet" +
    ile:./greet" + sExt));
    mtc.startPlaying();
    catch (Exception excp) {
    System.out.println("(11)"+excp.toString());
    break;
    please help me in this problem , if you u can pls
    help me
    hi my frinds this is code with out italic font

  • UnsatisfiedLinkError Problem.(Urgent)Pls Help!!

    Hi,
    I just want to run a swing under win98 OS platform and an error message appeared :
    Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\jdk1.4\jre\bin\awt.dll: An attempt was made to load a program with an incorrect format
    I have changed different version of JDK including 1.3.1 and 1.4beta, but the problem still exists.
    Is that any special setting need for running interface as I can run the java program in no trouble at all if there is no any interface.
    Another thing when i double click the java plug-in, there is an error message: "Could not found the main class. The Program would exit. ". How come?
    Pls Help and many thx.

    Post you code.

  • Problem with Eclipse  -- pls help

    hi
    When i execute the application in debug mode with one break point :
    These are the errors i get and the compiler is not stopping at the break point .
    Pls help :
    Thread [main] (Suspended (exception ClassNotFoundException))     
         ClassLoader.findBootstrapClass(String) line: not available [native method]     
         Launcher$ExtClassLoader(ClassLoader).findBootstrapClass0(String) line: not available     
         Launcher$ExtClassLoader(ClassLoader).loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader.loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClass(String) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClassInternal(String) line: not available

    If the compiler is not stopping at your breakpoint, then it probably means that the java code you're looking at and the compiled class file are out of synch. If you're getting a classnotfound, then your classfile most likely is either not there or is not where expected.
    Check the output folder in project's properties (which may or may not be the default), and see if your classfiles are actually there. Perhaps there is some error that is preventing your classfile from being generated (Eclipse sometimes won't even be able to compile), so check the problems dialog.
    Try refreshing your project, and if all else fails, restart Eclipse/delete & create the project again. That sometimes magically fixes things. Otherwise, welcome to the quirkiness of dealing with Eclipse!

  • Earpiece problem!! pls help!!

    my earpiece got a serious problem!!the left side is brust and is louder than the right side..PLs help!!can i hav it repair or do an xchange with apple !!! thks

    i'd like to ask if you played with the volume way up high for quite some time?...at first i tried testing the earphones to its limit...it did respond well...nothing happened...after that i limit the volume to a comfortable range...not after a friend tried it out and not to my knowing he pumped up the volume way up...after he returned it and when played to a 95 percent volume the right bud would give a distorted funny sound...but its still okay when played to a 80 percent range volume...and no, you cannot have a busted earphone fixed..(as far as what ive heard)its better to replace it with a new one...happy holidays!

  • Ipod Battery Problem (No not the usual question)

    I have a new 30gb 5g Ipod which is the successor to my 15gb 3g Ipod so Im not new to the whole Ipod thing, but I was wondering if I have a battery problem: (Events leading to problem)
    1. I sync the ipod and charge it so its full
    2. I listen to it for about an hour meter goes down about half way, which is fine because its only the 3rd charge. BUT.......
    3. I "turn it off" by pressing play/pause and switch the hold switch on.
    4. 2-3 days later I turn ther hold switch off and my ipod doesnt turn on like the battery id fully depleted, and I have to charge it for 3 or more hours to get it to turn on.
    Do I have a problem. If there is a common fix could you please help me. Thanks.

    I think this is a 5th generation iPod that would clearly be under warranty.
    It really does sound like A faulty battery - it's quite common for the battery meter to dip noticably after an hour of use on a fully charged battery because the meter is not really accurate and reflects the battery charge based on what drain is occuring at the time. What is needed is to fully charge the iPod over 4 hours or so, then set it to play continuously and monitor how long it takes until it switches off. That should give a reasonably clear idea of how well the battery is performing.
    It's important to note however that the symptom described is not uncommon with a faulty lithium ion battery.

  • Solved my iPhone 5 Battery Problems: Maybe it can help you!

    Hi every one, I saw many topics regarding battery problems with the iPhone 5. I responded to one discussion describing what I did to solve the iPhone 5 battery dying fast on me. So I thought I'd make a discussion here to help out other users with the same problem.
    I would have 25-30% drop with in the hour and all I did was text a couple of my friends. I was using an iPhone 4 for the longest time, and on that phone I was able to watch videos, listen to music and use all the other features of the phone. The battery still lasted me the whole day, I was getting  worried that I wouldn't be able to use the iPhone 5 the same with out it dying on me fast.
    My friend suggested draining the battery and then charging the phone to see if any improvements were seen. I did that and I saw a small change in the battery strength. I drained the battery two more times, and that is when I saw a huge difference.
    I use my Phone as my iPod when I work out, and I run continuous music on it for 1.5-2 hours straight, along with sending texts to my friends. In this duration I would only use 15-20% which was a huge improvement from before. I would say that the battery life was on par with my iPhone 4 battery! It is such a relief, now I can use my iPhone 5 to it's fullest potential without having to worry it'll die on me fast.
    I recommend other iPhone 5 users try draining their batteries a couple of times before charging as well if they are experiencing problems.
    Hope this helps!
    Dylan

    I would let the battery completely die before I would charge it again. I would keep 3g off and only turn it on if I'm going to use it and turn it off again. Because the phone uses more power for the 3g/4g that the battery dies even faster.
    I text a lot to friends so I'm constantly texting through out the day and when I work out continously run music on it for close to 2hours. It would only drain 15-20% of the battery, which really is a huge improvement.
    I also use Siri quite often through wifi and it barely uses any battery power. Try letting the phone die until it turns off a couple of times before you charge it. That is what I did before a friend requested doing that after I was getting fraustrated with the battery power.

  • Ipod Sounds Problem (Noise) OMG PLS HELP !!!

    Ok guys,
    I have a Ipod Classic 80G ...
    All the functions works fine, songs, sync, movies, pictures (yay) !
    But i week ago my ipod start to make a noise sound when i play my musics/movies !
    The noise sounds is similar when ur listening to a very bad quality song ...
    To understand the song i have to put the volume at MAX, but comes out really LOW and all noise and if i put the volume in LOW ... well cant hear nothing ... only noises !
    I cant say if im the responsable for that prob ... cuz its all started when my Ipod battery got at 0% ... so i was recharging the battery and my pc crashed and Ipod disconnected and after that THIS PROB started ><
    Firts i restored the Ipod ... lose all songs/movies/pictures =(
    But the problem still happening ...
    I tried squeezing the top right corner but no quality restored ...
    So wut should i do to fix this problem ? Someone pls enlight meh here !
    Should i take to Ipod's specialist ? or a Hammer will do the job ? Just Kidding xD
    Perhaps the Sound Board got screwed !?
    Thanks in Advance
    Jo

    I have this same problem! From what I have read so far it seems to be the headphone jack that is the issue. Apparently you can change these out but I don't know if I am brave enough to try it.
    I did have some luck with pulling the headphone plug out a bit. This seems to be a temporary fix but really in this case you are no longer connected and it is easy for the plug to fall out of the jack.
    Good luck to us both, I guess!!

  • NetBeans Problem with package, pls help.....

    Hi all, I have a package problem. With the following 2 classes, I can compile fine in dos with
    c:\java> javac WapDev3\*.java
    but wont compile in Netbeans 3.4 Pls help.
    The classes are
    -------------------class sample1 at c:\java\WapDev3------------------
    package WapDev3;
    class sample1 {
    public sample1() {
    System.out.println("hi");
    --------------------class sample2 at c:\WapDev3------------------
    package WapDev3;
    class sample2 {
    public sample2() {
    public static void main(String[] args) {
    sample1 osample1 = new sample1();

    I don't know for certain whether this is causing your problem, but in Netbeans, the package structure is considered to be identical to the directory structure, relative to the mountingpoint, so if your files are in java/wapdev, Netbeans wants you to make the package java/wapdev.
    This can be cured by mounting a subdirectory, using a relative mounting point.
    In your case, you should mount C:\java (I assume you've mounted C:\).
    Good luck.

  • Workflow problem...pls help

    Hi
    I have  requirement to deliver a single workitem to multiple agents. I am working on workflows for the first time and do not know how to send workitems and that too to multiple agents. Can anyone pls help.

    In classic workflow  tasks just set the AGENT to the list of people you wnat to send the work item to.
    Use the standard "Mail" type picture i (the envelope shape) in the Workflow builder for the forward work item steps.
    Be careful however that even if you do send a work item to multiple agents once one person has "reserved" the item it will disappear from all the other agents inboxes until the workitem has been completed.
    Cheers
    Jimbo

  • Simple calculation problem...pls help

    i have 2 report blocks in my report.
    the query for report block 1 is
    select emp_name,sal sal1 from emptable where emp_num=7167
    the query for the next report block is
    select emp_name,sal sal2 from emptable where emp_num=7168
    both the reports query the same table and get the same number of records.
    i want the difference of sal1-sal2...
    how do i do it..
    pls help....

    You could do salary diff calculation in a pl/sql function, and create the ref cursor query based on the function.
    Thanks,
    -Shaun

  • IOs 5.1 Beta 2 , fix the battery problems or not ?

    I am getting annoyed with these battery problems, since iOS 5.0.1 , even my iPad 2 battery isn't how it was.:[

    Discuss beta software at: https://devforums.apple.com/community/ios/ios5beta

  • IPhone 5 Battery Problem...PLEASE HELP

    My phones battery has been draining on it's own. I don't know what the problem is. I go to sleep fully charged and I unplug the charger and when I wake up it's completely drained DEAD. I've tried resetting but it still keeps happening. If I leave my phone in my purse when I'm out, it gets drained too. I can't restore it right now for that restore back up thing because I don't have access to my laptop for a while what can I do to fix this
    IT'S NOT PLUGGED IN. When I wake up and try to turn it on, it just gives me the red battery and tells me to charge. So I charge but then it drains quickly again without being used. WHAT DO I DO?

    Double click the home button and find out what apps are running in the background. Then hold them down until they start to shake and click the minus sign until no apps are actively running. Also, turn push notifications off and see if that changes anything. I hope this helps!

Maybe you are looking for

  • How do I find out the printing protocol used for a printer?

    In System Preferences > Print & Scan, double-click a printer and click on the Printer Setup button. Under the General tab, in Snow Leopard it used to list the printing protocol / url used to connect to a printer. In Lion it doesn't show that informat

  • TS4062 Cant sync Ipod touch. Itunes 11 cant determine apps on ipod.

    Recently upgraded to Itunes 11 and tried to sync computer (windows vista) with my ipod touch. Started to sync then stopped with meassage"apps installed on ipod could not be determined".  Would not let me drag and drop apps into home screen either, sh

  • What are best practice for packaging and deploying j2EE apps to iAS?

    We've been running a set of J2EE applications on a pair of iAS SP1b for about a year and it has been quite stable. Recently however we have had a number of LDAP issues, particularly when registering and unregistering applications (registering ear fil

  • Error installing 10g release 2 on Windows

    I am getting an error message of: 'OUI-10151:There was an error while loading library: w32RegQueries'. Some specifics in case this helps: -Installing Personal Edition (using database for school) -Windows XP Home Edition SP2 -1GB of RAM -previously ha

  • WAAS Express devices went offline in Central manager

    Hi all, after a long time i have a new issue in our WAAS environment. We're running several WAAS Express devices. And a few weeks ago i integrated them into our WAAS Central Manager. The registration of WAAS Express device was done on basis of "waasx