The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    How to set the Critical battery action to 'Do Nothing' in Windows Vista

    Discussion in 'Windows OS and Software' started by Plex, May 24, 2007.

  1. Plex

    Plex Notebook Enthusiast

    Reputations:
    19
    Messages:
    35
    Likes Received:
    1
    Trophy Points:
    15
    With the ongoing troubles of ACPI incorrectly reporting battery life on many notebooks, many users wish to gain access to the hidden energy supply by disabling the battery alarms. For whatever reason, Windows Vista does not allow the 'Critical battery action->On battery' option to be set to 'Do Nothing' using the Power Options GUI--it is simply not in the drop-down list.

    After digging through the registry and attempting to change the key values manually with regedit.exe to no avail (unable to change the value due to write permissions), I found out about a command line version of power options included with Windows Vista.

    The tool is powercfg.exe

    To change the 'Battery->Critical battery action->'On battery' setting to "Do nothing" using powercfg.exe
    1. activate the power scheme you want to modify.
    2. open an elevated command console (windows key, type 'cmd' in start menu, press "ctrl+shift+enter", click 'continue')
    3. execute "powercfg -setdcvalueindex SCHEME_CURRENT SUB_BATTERY BATACTIONCRIT 0"
    4. your current power scheme will show "Battery->Critical battery action->On battery: Do nothing" despite the option being unavailable in the drop box.

    If you want to change the value of a non-active power scheme, you can execute 'powercfg -L' and replace SCHEME_CURRENT with the GUID of your choice.
    To see all the options, run 'powercfg /?'
     
    aleunge likes this.
  2. CalebSchmerge

    CalebSchmerge Woof NBR Reviewer

    Reputations:
    1,126
    Messages:
    2,395
    Likes Received:
    2
    Trophy Points:
    55
    Thank you very much!
     
  3. lenardg

    lenardg Notebook Evangelist NBR Reviewer

    Reputations:
    331
    Messages:
    513
    Likes Received:
    0
    Trophy Points:
    30
    I think you can configure this using the user interface as well.
    1. Right click on the power icon (battery) near the clock in the system tray and select 'Power Options'
    2. Press the link button titled: 'Change plan settings'
    3. Select 'Change advanced power settings' link button
    4. From the list of options scroll to 'Battery' and under that 'Critical battery action'. You can select from the drop down lists when you click the current action what you would like to do. Also, in this advanced settins window you can select another power plan from the drop down list and change settings there.
    I did not require elevated privileges to change these options, but there is a link button to do that, should you want to change something that requires it.
     
  4. Plex

    Plex Notebook Enthusiast

    Reputations:
    19
    Messages:
    35
    Likes Received:
    1
    Trophy Points:
    15
    Of course that is how we _should_ be able to change it... but unfortunately, Microsoft decided to remove the option 'Do Nothing' from that particular drop down list... or perhaps it is a bug?
     
  5. qhn

    qhn Notebook User

    Reputations:
    1,654
    Messages:
    5,955
    Likes Received:
    1
    Trophy Points:
    205
    understanding the shortcomings of any apps/utilities, having a warning is better than none when working with battery's life left, hate to see some of the work goes down the tube when the laptop decides to shut itself off due to no more juice available -

    nice info, regardless - thx

    cheers ...
     
  6. silver_horse

    silver_horse Notebook Enthusiast

    Reputations:
    7
    Messages:
    36
    Likes Received:
    0
    Trophy Points:
    15
    Just a hunch...

    Whilst I have not checked the Vista's registries... I remember that Win2000 and XP had so many registry settings that gave you options/tweaks which you could not otherwise see with the normal Windows programs and menus, or interface.

    And I think what Plex has pointed out with the Command Line entry is essentially changing the registry but via the command prompt or script.
     
  7. Plex

    Plex Notebook Enthusiast

    Reputations:
    19
    Messages:
    35
    Likes Received:
    1
    Trophy Points:
    15
    Correct, the entry is in the registry. The only problem with editing the registry entry via regedit.exe is that Vista denies access. I am running regedit.exe with admin privileges. It seems that only the command line utility can change the particular registry entry.