G500 Driver_Power_State_Failure problem most likely related to Wireless Card

I recently upgraded my Lenovo G500 laptop to 8.1.
After that, I've been constantly getting BSOD every time I modify some settings on my WIreless card (Broadcom 802.11n Network Adapter). For instance, changing my MAC under the"Locally Administered MAC Address" causes the Wireless configuration window to stop responding, then my wireless adapter becomes permanently disabled (I try to enable it and it says that it is enabling but the adapter remains faded out and locked in a disabled state) unless I restart or power down my laptop. If I restart, the laptop hangs for 3-5 minutes and then a BSOD comes up and suggests that I look online for DRIVER_POWER_STATE_FAILURE.
I have updated the adapter as well as most, if not all outdated drivers on my laptop with the 8.1 drivers offered on Lenovo's support pages (This includes power management, BIOS, LAN, Audio, etc.). Even attempting to voluntarily disable my wireless card causes the BSOD.
As long as I don't touch/modify such settings, I have wireless internet and all seems fine but once I do what I stated above, my laptop crashes with a BSOD. I have looked up and searched about such a BSOD but my laptop has zero problems when I put it to sleep or wake it up. My laptop functions practically flawless except for when changing/modifying settings on my wireless card.
For instance, on Whocrashed.exe:
On Thu 11/7/2013 9:33:19 AM GMT your computer crashed
crash dump file: C:\WINDOWS\Minidump\110713-17031-01.dmp
This was probably caused by the following module: ntoskrnl.exe (nt+0x150B36)
Bugcheck code: 0x9F (0x4, 0x12C, 0xFFFFE00000EB5040, 0xFFFFD000205F8860)
Error: DRIVER_POWER_STATE_FAILURE
file path: C:\WINDOWS\system32\ntoskrnl.exe
product: Microsoft® Windows® Operating System
company: Microsoft Corporation
description: NT Kernel & System
Bug check description: This bug check indicates that the driver is in an inconsistent or invalid power state.
This appears to be a typical software driver bug and is not likely to be caused by a hardware problem.
The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time.
On Thu 11/7/2013 9:33:19 AM GMT your computer crashed
crash dump file: C:\WINDOWS\memory.dmp
This was probably caused by the following module: ntkrnlmp.exe (nt!KeBugCheckEx+0x0)
Bugcheck code: 0x9F (0x4, 0x12C, 0xFFFFE00000EB5040, 0xFFFFD000205F8860)
Error: DRIVER_POWER_STATE_FAILURE
Bug check description: This bug check indicates that the driver is in an inconsistent or invalid power state.
This appears to be a typical software driver bug and is not likely to be caused by a hardware problem.
The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time
On bluescreenview:
Bug check string: DRIVER_POWER_STATE_FAILURE
Bug check code: 0x0000009f
Parameter 1: 00000000`00000004
Parameter 2: 00000000`0000012c
Parameter 3: ffffe000`00eb8040
Parameter 4: ffffd000`20472860
Processor: x64
Caused by driver: NETIO.SYS
Caused by address: NETIO.SYS+1ddb2
Crash address: ntoskrnl.exe+150b36
I ran SFC /scannow and it did detect corrupted files but that has been resolved using the Restorehealth command prompt. I have tried booting to safe mode, uninstalling the adapter and then updating straight to the most current 8.1 driver and that still causes the BSOD.
I'm almost certain that my wireless card probably is defective, or the laptop is defective. I'm still under warranty but I'm hoping to fix this issue before resorting to what I deem as last resorts of factory restoring the laptop or calling Lenovo support.
I am also providing minidumps, driver lists and a whole ton of useful information on my Skydrive:
http://sdrv.ms/17OIYda
Any suggestions or help on this matter would be greatly appreciated as I feel like I've exhausted all other methods.
Moderator Note; subject edited; system type added

"If I restart, the laptop hangs for 3-5 minutes and then a BSOD comes up and suggests that I look online for DRIVER_POWER_STATE_FAILURE."
I had the exact same problem on a Thinkpad Helix after upgrading to Windows 8.1, although I do not know if it was in anyway related to the wireless hardware as you described. However, I noted that in the Device Manager many wireless hardware components had been highlighted with an exclamation mark since the problem had occured (e.g. Bluetooth, Geolocation, Broadband). Here is how I fixed it:
1. I went to System Settings / Device Manager.
2. Disabled all devices that were highlighted with an exclamation mark. I noted that the Device Manager would not respond after disabling so I closed it and then chose to not wait (i.e. forced the Device Manager to close).
3. Repeated step (2.) until all devices highlighted with an exclamation mark were disabled.
4. Restarted the laptop (I don't know if I had to force the shut down via power off at that time, but it may be necessary or you wait for the BSOD).
5. Repeated step (1.) and uninstalled all the drivers of the devices disabled in steps (2.) to (3.), enabling the option to remove the driver from the system, where possible.
6. Restarted the system. This time the shutdown should only take a few seconds.
So far, everything works fine again and I cannot identify any limitations through the disabling and uninstalling of devices (esp. wireless devices do work flawlessly).
Hope this works for some of you guys out there as well. Let me know.
Good luck!
neophilos

Similar Messages

  • Newbie Simple app issue most likely related to user coding error

    I'm fairly new to the Cyberflex infrastructure and most likely the issue is with my CODE. Basically, I wrote a simple java cardlet without much error checking to try to retrieve a stored object on the card such as a userId. What I think I'm missing or don't understand is how to capture the incoming APDU and respond to it within the process method.
    Error:
    I keep getting a [6C 01] status word return code? Is this a valid Status Word?
    Environment Setup:
    Compiler: jdk1.3.1
    Axalto SDK: 4.4
    Card: Cyberflex e-gate 32k (not personalized and it has no pin assigned to it)
    OS: Windows 2K
    Any help will be greatly appreciated.
    Thank you in advance,
    Alfredo
    Here is the code:
    package Simple.JavaCard;
    import javacard.framework.*;
    public class SimpleJcardTest extends javacard.framework.Applet
    /**======================================
    *Global/constants
    *=======================================*/
    byte userId[];
    final static short MAX_USER_ID_SIZE = ( short )10;
    /**=====================================
    * Defining APDU Instructions that the
    * card response to
    *======================================*/
    // User Defined CLA byte for the command APDU header
    final static byte CLA = ( byte )0xB0;
    //User Defined INS byte for the command APDU header
    final static byte GET_USER_ID = ( byte )0x02;
    //User Defined applet-specific return status words.
    /**====================================
    *Constructor -Create object,initialize
    * the object, register the applet instance
    *=====================================*/
    protected SimpleJcardTest(byte[] bArray, short bOffset, byte bLength )
    //1. Create the object(s)
    userId = new byte[MAX_USER_ID_SIZE];
    //2. Initialize the object(s)
    userId[0] = 0x4a; // J
    userId[1] = 0x6f; // o
    userId[2] = 0x68; // h
    userId[3] = 0x6e; // n
    userId[4] = 0x00; //
    userId[5] = 0x00; //
    userId[6] = 0x00; //
    userId[7] = 0x00; //
    userId[8] = 0x00; //
    userId[9] = 0x00; //
    //3. Register the applet instance
    register();
    /**====================================
    *Install the applet -- creates an instance
    *of the Applet Main entry point into the applet
    *=====================================*/
    public static void install(byte[] bArray, short bOffset, byte bLength )
    //bArray - contains installation parameters.
    //bOffset - contains the starting offset into the array.
    //bLength - contains the length of the parameter data in the
    // array.
    //installation parameters are loaded onto the smart
    //card when the applet is installed
    new SimpleJcardTest(bArray, bOffset, bLength);
    /**====================================
    *Wait in a suspended state until being selected by the JCRE
    *Executed after being initialized                               
    *=====================================*/
    public boolean select()
    return true;
    /**=====================================
    *Process an incoming APDU command
    *Executed after the applet is selected
    *======================================*/
    public void process(APDU apdu) throws ISOException
    //apdu - The JCRE creates an APDU object as a way to
    // communicate a command APDU to a Java Card applet
    // and to receive a response APDU from the Java Card applet.
    // All incoming requests from the host application are sent
    // to the applet's process method for processing.
    // First five bytes CLA, INS, P1, P2, P3 ]
    // [Note: minimal error checking for sample purpose]
    byte[] buffer = apdu.getBuffer(); //Get a reference to the APDU buffer
    this.getUserId(apdu); //Get the UserId stored on the Card
    private void getUserId(APDU apdu)
    byte[] buffer = apdu.getBuffer();
    // Move the UserId data into the APDU buffer
    // starting at the offset
    // src - source byte array
    // srcOff - offset within source byte array to
    // start copy from
    // dest - destination byte array
    // destOff - offset within destination byte array
    // to start copy into
    // length - byte length to be copied
    Util.arrayCopy(userId,(short)0,buffer,ISO7816.OFFSET_CDATA,MAX_USER_ID_SIZE);
    // 1.Inform system that the applet has finished processing the
    // command and the system should now prepare to construct a
    // response APDU which contains data field.
    // 2. Params
    // ISO7816.OFFSET_CDATA
    // - The offset into APDU buffer
    // MAX_USER_ID_SIZE
    // - The bytelength of the data to send
    apdu.setOutgoingAndSend(ISO7816.OFFSET_CDATA, MAX_USER_ID_SIZE);

    An oversight on my part that was discovered by a second set of eyes.
    1. Invalid expected return size was specified.
    final static short MAX_USER_ID_SIZE = ( short )10;
    needed to be changed to
    final static short MAX_USER_ID_SIZE = ( short )0xA;
    2. The calling apdu needed to be modified to
    B0 02 00 00 0A
    Well I hope this helps others as well

  • Firefox crashing---most likely related to the plugin container issue, but also unable to uninstall firefox, there is no prompt that opens when I try to.

    Like many others, I've been having issues with firefox since the update. The plugin container seems to crash my browser, or freeze the whole of my computer, and I must restart. I've switched to internet explorer for now.
    Moreover, now Firefox doesn't even seem to open now. I doubleclick on the icon, or try to launch the browser in any way, and it looks like it thinks about opening, but nothing ever occurs. I've watched my system processes, and firefox.exe appears for a moment, and then disappears, like its process has ended, but I've done nothing.
    Additionally, I can't even seem to uninstall firefox---the uninstall setup doesn't open, and trying to do it from add/remove programs on windows xp doesn't seem to work either.
    I also sometimes get an error that says windows can't find a file/path, related to a 'profile' but haven't had that for a day or so---since I can't even open firefox now.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    Hello sprytely, go for a clean re-install, this means you '''remove Firefox program files''' and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from the next full installer https://www.mozilla.org/en-US/firefox/all/ and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    More information about reinstalling Firefox can be found [[Troubleshoot and diagnose Firefox problems#w_5-reinstall-firefox|here]].
    <b>WARNING:</b>Do not use a third party uninstaller as part of this process. Doing so could permanently delete your [[Profiles|Firefox profile]] data, including but not limited to, extensions, cache, cookies, bookmarks, personal settings and saved passwords. <u>These cannot be easily recovered unless they have been backed up to an external device!</u> See [[Back up and restore information in Firefox profiles]]. <!-- Starting in Firefox 31, the Firefox uninstaller no longer lets you remove user profile data.Ref: Bug 432017 and https://support.mozilla.org/kb/uninstall-firefox-from-your-computer/discuss/5279 [Fx31] Windows uninstaller will no longer offer the option to remove personal data -->
    Thank you.

  • Problems setting up Airport Extreme w/o wireless card

    I just got an airport base station to host a dialup connection for an OSX 10.4.2 G4 Quicksilver 867 and a PC running win2k. No wireless cards on any of the machines.
    I cant get it setup. using the Setup assistant, it see's the station and gives it a number. Then I get a messege saying "There was an error connecting to the air port base station you selected." regardless if I choose new setup or edit setup. If I click OK, at the bottom of the main screen it says "Reading Configuration". I let it run like that for an hour. I tried the admin tool as well, "cant read configuration" error there.
    I think I likely need a wireless card to even access it.
    But when I access the airport setup assistant, it says something about I'd "only be able to configure the LAN only. but it ddint help. rebooted computer and airport. i have it connected via ethernet.

    Thanks Duane! I was in static IP mode and had to switch to dhcp and then yeah, i used the admin utility. thanks for everything. dialup to earthlink worked and I set my router and all systems to DHCP.
    is there a difference between the 10.x.x.x IP range and the normal 192.168.1.x Ip pool? I always used the later in the past but noticed a choice in the airport admin tool.

  • Satellite Pro 4600 Wireless card does not work with WIN2K ?

    I have a Satellite Pro 4600 with UK dealer installed PA3070U-1MPC wireless card running with Windows 2000
    The wireless client manager finds the network of my wireless router and reports the signal is excellent and I see all green bars swhowing.
    However I can't mske a connection, in 'connections' the wireless one says 'network cable is disconnected'
    the router works ok with other laptops in my house.
    I have latest version of Win2K also have downloaded and installed latest versions of client manager and WLAN card driver for win2k from toshiba website.
    The 'toshiba support in Turkey' told me 'I need a different driver for Win2K for my wireless card cause the win2K driver on the toshiba website is not for 'this' wireless card'. I have waited for this for 3 weeks now and have been unable to reach the elusive UK Level 3 support who supposedly have this driver. I have seen on the internet the same wireless card is has been sold as a 'made by toshiba' accessory and it says it is compatible with Wim2K
    What do I do next please ? Does this run at all with Win2K , is there 'another driver' and so on ?
    Thanks

    hello
    please be more scpecific - what do you mean by 'disconnect the LAN' - I have nothing conneced there anyway ? do you mean 'disable' the LAN even though there is nothing plugged in ? can you please post the exact sequence of this so I can try ir too.
    In the meantime my laptop has been to Toshiba for them to sort out at their highest level UK support base. I was hoping my troubles would be over - but no, read below what happened. They are basically saying my win2k is not in order but I had just installed and updated it so right now I haven't a clue what to do next.
    START QUOTE of Toshiba Support response:
    Sat Pro 4600
    Serial No: 31474181G
    Windows 2000 SP4 (customers build not recovery CD)
    BIOS V1.80 not current therefore updated to V2.60
    The notebooks wireless card is functional and has the correct driver installed, it also has the correct and latest version of the Wireless Client Manager. The wireless function appears to see the router but will not connect and obtain an IP address. Irrespective of the settings applied within Internet Explorer or the Wireless client manager you cannot obtain a connection. The customer did not have any Toshiba utilities installed such as, Power Saver, Common Modules, Chipset drivers, network device switch, I therefore installed these missing components and updated the BIOS to the most current revision. However despite this the unit will still not connect to the wireless.
    I therefore removed the customers HDD and replaced his HDD with a Toshiba loan HDD with a fresh build that I had created. When using the machine with this build the wireless connected without issue and I was able to browse the internet etc. I placed the customers HDD into our machine and the problem with the wireless was replicated on our machine here, therefore the problem is not with the wireless card or any hardware aspect of the machine, the problem lies with the customer's build of Win 2000. I examined for anything obvious but could not find anything, therefore I'm sending this machine back to customer with the advice that his build needs addressing or he needs to reload Win 2000 his machine.
    As you can see from the above comments, the machine performs as per specification with loan HDD and fresh build of Win 2000 installed, the problem is only present with you HDD and build in the machine. In addition to this I have replaced the missing screws on the base of the machine ensuring the machine is structure is maintained.
    5 x B16 Screws
    1 x B6 Screw
    1 x Memory Cover Screw
    END QUOTE

  • How To Install mini-pci wireless card in 1955-S805 ?

    I'm trying to install a new mini-pci wireless card in my Satellite 1955-S805. I was able to pry off the black shiny strip above the keyboard, and unscrew the two screws holding down the keyboard. But under the keyboard is a silver metal plate. There doesn't appear to be a way to get past that. Everything I've read seems to say that the mini-pci card goes under the keyboard.
    Does anyone know how to install a mini-pci card in these 1955-S805 notebooks? Or does anyone have a tech manual on this model?
    Thanks,
    Pat

    Hi Pat
    I am not sure but you have an US model. I have 1900-703 notebook. It is a European model and I had no problem to install mini-pci wireless card.
    Your unit has also wireless keyboard. Am I right?
    If you want to built in wireless card you must remove the keyboard from notebook using keyboard releases on the left and right side of your unit. After that you can see small cover on the place of keyboard and this cover is fixed with one screw. Under this small cover there is wireless card slot.

  • Wireless Card info - Is this the latest?

    Can upgrading the firmware on your MacBook Pro be updated?
    If so how?
    Is this the latest version for the MacBook Pro 15" 2009?
    Have there been problems with firmware on the wireless cards?
    Wireless Card Type: AirPort Extreme (0x168C, 0x87)
    Wireless Card Locale: USA
    Wireless Card Firmware Version: 1.4.8.0

    If so how?
    You wait until Apple decides to release an update...which they have not done yet and may not ever.

  • The problem related to wireless service Wi-Fi connectivity Never work properly

    Hi
    i am bashair from KSA
    I have iPhone 5, you update your iPhone to version 6.1.3
    The problem related to wireless service Wi-Fi connectivity
    Never work properly, you try Method posed but did not succeed..
    i need help me please
    thanks..

    UPDATE
    Hey this is totally weird. I haven't done jailbreak at all and I won't But how is possible that default apps such as Safari and Appstore have the problem I've mentioned before and Skyfire works perfectly without any trouble.
    So to sum up:
    Safari: loading stucks after few seconds on wi-fi, mostly doesn't load pictures
    Appstore: loading stucks after few seconds on wifi and it keeps saying "loading"
    Facebook and Youtube: doesn't load pictures
    SKYFIRE: loads everything without any trouble
    and completely everything works on Edge...
    So tell me W.T.F. :-D

  • I suddenly have this error message on FireFoxthis message pops up: "Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no re

    I suddenly encounter this error message from Fire Fox.
    Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features.
    I uninstalled the browser and download a new version but it does not resolve the issue.
    I know my hard disc has ample space. I do NOT know where to find the Profile directory to fix the read restriction box.
    == This happened ==
    Every time Firefox opened
    == After something about security add-on of Norton pop up by itself. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; MSN Optimized;US)

    This link shows things to check - https://support.mozilla.com/kb/Could+not+initialize+the+browser+security+component

  • New WIN7 System, FFox gives error "Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory" - will not go to any site.

    New Windows 7 computer. After installing Firefox, every time I bring it up I get the following message:
    "Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features."
    Then Firefox comes up, but will not function at all - can enter url address, but will not respond to ANY clicks, so can not go to any site.

    This link shows how to fix this - https://support.mozilla.com/kb/Could+not+initialize+the+browser+security+component

  • This message [Ubuntu repositories or Mozilla download: " There is no Profile folder Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory....

    Ubuntu 11.04: I have been getting this message whenever I install Firefox from the repositories and downloading the tar file. I cannot use Firefox! " There is no Profile folder Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features."Firefox does not respond to any addresses or a google search. Indeed it responds to nothing. There is no Profile folder!

    Uninstalling Firefox on Linux
    * http://kb.mozillazine.org/Uninstalling_Firefox#On_Linux
    * http://kb.mozillazine.org/Installation_directory#Linux
    * Removing user profile data - http://kb.mozillazine.org/Uninstalling_Firefox#Removing_user_profile_data
    After all is done, Restart your system.
    Installing Firefox on Linux
    * https://support.mozilla.com/en-US/kb/Installing%20Firefox%20on%20Linux
    Check and tell if its working.

  • When I open Firefox the following alert appears: "Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory." There is a solution in the forum but only for Windows based

    When I open the application the following alert appears: "Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory." There is a solution on the support site but only for Windows-based Firefox, and I'm a Mac user. I have plenty of room on my hard disk.
    == This happened ==
    Every time Firefox opened
    == Two days ago, for no apparent reason.

    In Mac OS X v10.7, the $HOME/Library folder is a hidden folder.
    Open Finder and use one of these:
    * Go > Go To Folder (Shift-Command-G) and in the dialog type: ~/Library
    * Open the "Go" menu and hold down the Option key to make the Library appear
    You can also use this command in a Terminal window to remove the hidden flag.
    * Mac HD > Applications > Utilities > Terminal
    * chflags nohidden ~/Library

  • How do I temporarily disable web filtering software? I'm getting a message: The problems you are experiencing are most likely the result of Web filtering software, firewalls, popup blockers or ad blocking software.

    I keep getting this message when trying to navigate in myverizon:
    The problems you are experiencing are most likely the result of Web filtering software, firewalls, popup blockers or ad blocking software.
    You may resolve this issue by visiting your browser's website and searching for instructions on temporarily disabling Web filtering software, firewalls, popup blockers, and/or ad blocking software. You may also use another computer.

    Which problems are you experiencing if you visit that website?
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Firefox > Preferences > Privacy > Cookies: "Show Cookies"

  • Tough problem, iPod most likely corrupted won't charge...

    Ok so this is the biggest problem I've gotten with my ipod yet. My ipod is the new 6th gen 120GB, I've got it three weeks ago. It worked fine. I went on a 10 day trip around Europe, and I've used my iPod thorough the trip, and I would recharge in hotels using a wall charger, and it worked fine. When we were returning home like 30 miles away from home I was listening to it and it was on the last strip of battery so I stopped listening. Later that evening, I wanted to listen to it, but since it said "Connect to Power", I plugged it into my wall charger. Normally it showed the apple logo for a few seconds and then an error popped up. It says www.apple.com/support/ipod , so I did.
    It looks most likely from the Apple support website that my iPod got corrupted and needs to be reformatted. Now here's the biggest problem. I plug my iPod into my USB drive and my PC doesn't recognize it at all, neither does iTunes. All that the iPod does is show the apple logo and then the error message again, then it just turns off. I tried to reset it but it didn't help. In order to reformat it it needs to be charged and be in disk mode, but it won't charge and the PC won't recognize it. The only difference now is that it doesn't show the low on battery sign anymore. When I press the button it just shows the apple logo and then the error. It also makes quiet beeping sounds when it shows the logo and error sign. Another problem is that my dad got it fom me from USA and I live in Poland in a small town, and we don't have an Apple store here, and a bigger city is 2 hrs drive.
    What should I do?

    Have you tried any of these pages?
    *[iPod Missing in My Computer or iTunes for Windows|http://support.apple.com/kb/TS1369]*
    *[Ipod not recognized properly|http://support.apple.com/kb/TS1538]*

  • HD ERRORS. MOST LIKELY BATTERY PROBLEM

    If your iPod is making funny noises and not properly booting or being recognized by Windows (no Mac experience here), then it is possibly your battery that has went south on you.
    Simple tests include, charging the iPod fully, and performing a HARD RESET ON THE UNIT. I am not sure if this will erase the music on it, but most likely will just reset all of your settings. It may also not let you sync up with your iTunes anymore, as after this is done, I found that I had to re-register my iPod with iTunes.
    The different gens have different methods of doing this. In the case of mine, turn the hold on then off, then perform a hard reboot. Pressing both menu and play at the same time for a couple of seconds.
    This will cause the unit to hard reboot. Now, boot it into disc mode (pressing and holding forward and reverse for a couple of seconds), and plug it into your computer. This should work, you can also perform a scandisk on the unit to check and see if the HD has bad sectors on it. If so, a scandisk setting of full or thorough will re-map the bad sectors to good ones, and no new music will be written ot the bad sectors.
    From here you can try and open iTunes to see if you can copy music to your iPod.
    Now this may not work in 100% of cases, but i have been finding that this works for a variety of odd iPod behaviour. Apple knows the batteries are garbage, starting from the first gen of the device. Sometimes the HD is actually shot, other times the circuit board is shot. The battery is a cheap replacement for the unit, mine new (OEM) cost me $30 CDN with shipping from the States to Canada. I found it online through some searches for the battery part number.
    Opening the unit can damage the acrylic coating, so be careful here. The battery I ordered came with a tool to help open the unit without damaging the acrylic. It was too late for me, but I didn't care as a $30 cdn iPod (4th gen 20gb) with some scratches is better than a $400 one without.
    I hope this helps many of you guys out there with weird iPod behaviours. If anyone has any other tips, add them to this post to help others try and troubleshoot their iPods.
    Cheers!
      Windows XP Pro  
      Windows XP Pro  

    A USB 2.0 port is a minimum system requirement.
    http://docs.info.apple.com/article.html?artnum=305703

Maybe you are looking for

  • My HP Deskjet 3054 doesn't recognize my new router

    I have an HP Deskjet 3054 wireless printer which has worked fine until a recent thunderstorm took out my wireless router and DSL modem.  Modem and router have been replaced and all of my devices work just fine except the pritner which will now only w

  • How can I log out of iCloud on my iPad Air?

    I recently updated my Apple ID.  I was able to get that new ID to work with iTunes, on my iPhone 5, and with iCloud on my computer and on the web. But my iPad Air is stuck on the old Apple ID and it will not let me change it. I have synced the iPad A

  • How to add new line in OMCN

    Hi all, i want to add one new line in OMCN tcode.I copied the program of MICN to another program & now i want to assign the new program with the session in OMCN but it's not allowing me to create new line. How can i achieve this? Thanks pabi

  • Why can't I access my music after updating to iOS 5?

    why can't I access my music after updating to iOS 5?

  • MM Routines for Condition Base Value

    Dear friends, I want pass values from Tax Procedure to MM pricing procedure. Here the requirement is to calculate discount after considering the excise. The excise value resides in Tax Procedure(TAXINN) and the discount value is in MM Pricing Procedu