How to get battery status/level using applescript? Is it possible? Can anyone provide some code snippet. My battery kext is not working so I need some direct info from hardware.

link|improve this question

4  
this is probably going to depend on the os you are using. – andrew cooke Aug 11 '11 at 21:22
What's wrong with ACPI ? – Alexandre C. Aug 11 '11 at 21:25
applescript on DOS? – user unknown Aug 27 '11 at 10:29
feedback

1 Answer

You can't get battery info directly from BIOS.

There are different ways to it:

  • use WMI;
  • read information directly from battery. To do it you need to implement i2c (smbus) protocol and gain access to southbridge. This IC contains SMBus controller in PC. And battery is connected to it by SMBus.

Also please take a look to MSDN

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.