Notificação quando o poder total

3

Existe uma maneira de obter uma notificação quando minha bateria do meu laptop está em 100%. Eu tenho um Surface Pro 3 com o Windows 8.1. Estou precisando saber isso para que eu possa desconectar o carregador quando ele estiver totalmente carregado e, portanto, eu não gasto a bateria.

    
por random10101010 29.06.2015 / 07:23

2 respostas

1

Há algum para receber uma notificação quando uma bateria de laptop é 100% carregada?

O script abaixo deve fazer o que você quiser com alguns ajustes apropriados.

Save below as battery.vbs and put a shortcut to "wscript path-to\battery.vbs" in your startup folder.

set oLocator = CreateObject("WbemScripting.SWbemLocator")
set oServices = oLocator.ConnectServer(".","root\wmi")
set oResults = oServices.ExecQuery("select * from batteryfullchargedcapacity")
for each oResult in oResults
   iFull = oResult.FullChargedCapacity
next

while (1)
  set oResults = oServices.ExecQuery("select * from batterystatus")
  for each oResult in oResults
    iRemaining = oResult.RemainingCapacity
    bCharging = oResult.Charging
  next
  iPercent = ((iRemaining / iFull) * 100) mod 100
  if bCharging and (iPercent > 95) Then msgbox "Battery is at " & iPercent & "%",vbInformation, "Battery monitor"
  wscript.sleep 30000 ' 5 minutes
wend

Fonte Receba um alerta quando minha bateria atingir 95%

    
por 29.06.2015 / 09:42
0

Acho que a resposta de David responde à sua pergunta, mas fornecerei algumas informações adicionais, pois acredito que isso seja relevante e útil.

A Lenovo possui alguns softwares que fazem o que eu quero, chamado Gerenciamento de energia.

A versão recente permite que você

STATEMENT DESCRIPTION:

Comparing with the previous versions, Lenovo Energy Management 6.0 has been improved with the following new features:

1. Add “Battery Level” in Battery Information.

2. Redefine “Battery Health”.

    (1) Change limited capacity of “Best battery heath” to 45%~50% from 80%;

    (2) Detect battery status by hardware automatically;

    (3) Pop up a hint box to suggest users to switch the mode;

3. Add hint when using unauthorized battery.

4. Remove the scheme of “Power Saver”.

5. Remove “Advanced Settings” of “Super Energy Saver”.

Fonte

Há uma revisão de uma versão mais antiga que funciona com o Superfície 2 que sugere que funcionará com a Superfície 3

No entanto, este post no SuperUser sugere outra coisa (novamente para o Surface Pro) -

    
por 29.06.2015 / 09:47