I'm trying to find a way to check the battery status on a batch file, i.e stop the execution of the script if the laptop is running on battery. I'm trying with the poercfg command with no results.

All I need is Something like that but in a batch file:

#!/bin/bash
if [ acpi -a | grep "off-line" eq 0 ]; 
   then echo "plug your laptop and run it again"
   exit 1
fi

What can I use?

link|improve this question
What OS are you on? You say "batch file" in the title which is a windows thing then have an example in bash which is usually a Linux thing. You need to provide some more clues to get an accurate answer! – Caleb Aug 22 '11 at 14:39
I need this on a windows machine – kerio Aug 22 '11 at 19:04
@kerio: Then the question is not about bash. I'll remove that tag; add it back if I'm mistaken. – Mechanical snail Aug 23 '11 at 4:26
feedback

3 Answers

If you are on Linux you can get this information from /proc:

#!/bin/bash
if grep -q discharging /proc/acpi/battery/BAT0/state; then
   echo "plug your laptop and run it again"
   exit 1
fi
link|improve this answer
feedback

Something like Rob Vanderwoude's script might work. As expected it's more work. It looks like it's using some WMI information.

link|improve this answer
Since he's tagged it "bash", and gives an idea in bash script, I doubt using WMI is feasible... – carlpett Aug 22 '11 at 14:38
@carlpett: The OP also titled it "batch file" so the confusion is understandable. Cygwin? – Caleb Aug 22 '11 at 14:52
1  
@carlpeet read the final line: All I need is Something like that but in a batch file:He's giving a *nix example of something he wants to do with a batch file. – Caley Woods Aug 22 '11 at 14:54
Yes Caley, This is exactly that's I'm looking for, I'll be able to write it on linux, but I'm looking for a solution on Windows. – kerio Aug 22 '11 at 19:21
Hmm The Rob Vandewoulde's script do not feet with my problem. – kerio Aug 23 '11 at 15:23
feedback

you can using $? to get the last return status of grep. I think this will work for you.

#!/bin/bash
acpi -a | grep "off-line"
if [ $? -eq 0 ]; 
   then echo "plug your laptop and run it again"
   exit 1
fi
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.