मुझे बैटरी स्तर परिवर्तन के आधार पर TS में एक कार्य बनाने की आवश्यकता है। मान लीजिए कि मेरी बैटरी 67% से 66% तक गिरती है । मैं इस घटना के आधार पर एक कार्य कैसे चला सकता हूं। क्या विंडोज इस पर लॉग इन करता है? मुझे यह जानकारी कहीं नहीं मिली।
मुझे बैटरी स्तर परिवर्तन के आधार पर TS में एक कार्य बनाने की आवश्यकता है। मान लीजिए कि मेरी बैटरी 67% से 66% तक गिरती है । मैं इस घटना के आधार पर एक कार्य कैसे चला सकता हूं। क्या विंडोज इस पर लॉग इन करता है? मुझे यह जानकारी कहीं नहीं मिली।
जवाबों:
विंडोज घटनाओं के रूप में इस तरह के विवरण को लॉग नहीं करता है हालाँकि आप नीचे दी गई बैच फ़ाइल जैसी किसी चीज़ का उपयोग कर सकते हैं और एक कस्टम ईवेंट बना सकते हैं।
यह बैच फ़ाइल वर्तमान बैटरी प्रतिशत चार्ज पर नज़र रखती है और उपयोगकर्ता परिभाषित घटना बनाता है यदि चार्ज उपयोगकर्ता परिभाषित सीमा मूल्य से नीचे चला जाता है।
@echo off
setlocal EnableDelayedExpansion
rem set threshold value
set _threshold=82
:start
rem get the battery charge
rem use findstr to strip blank lines from wmic output
for /f "usebackq skip=1 tokens=1" %%i in (`wmic Path Win32_Battery Get EstimatedChargeRemaining ^| findstr /r /v "^$"`) do (
set _charge=%%i
echo !_charge!
if !_charge! lss !_threshold! (
echo threshold reached
rem create a custom event in the application event log
rem requires administrator privileges
eventcreate /l APPLICATION /t WARNING /ID 999 /D "Battery charge has dropped"
goto :done
) else (
rem wait for 10 minutes then try again
timeout /t 600 /nobreak
goto :start
)
)
:done
endlocal
टिप्पणियाँ:
Eventcreate
करने के लिए और सहित Windows 10 अप Windows XP पर आदेश काम करता है, यह काम करने के लिए व्यवस्थापक विशेषाधिकारों की आवश्यकता है_threshold
आवश्यकतानुसार सेट करें999
तो विवरण के साथ APPLICATION ईवेंट लॉग में ID के साथ कोई ईवेंट उत्पन्न हो जाएगाBattery charge has dropped
eventcreate
अपनी स्थिति के लिए आवश्यकतानुसार कमांड को संशोधित करें ।timeout
अपनी स्थिति के लिए आवश्यकतानुसार देरी को संशोधित करें ।उदाहरण आउटपुट:
मेरी बैटरी का वर्तमान में 81% चार्ज है। मैंने थ्रेशोल्ड सेट किया 82
। जब मैं दौड़ता हूं तो यहां क्या होता है Battery.cmd
:
> battery
81
threshold reached
SUCCESS: An event of type 'WARNING' was created in the 'APPLICATION' log with 'EventCreate' as the source.
और यहां इवेंट लॉग में नई प्रविष्टि है:
EVENTCREATE [/S system [/U username [/P [password]]]] /ID eventid
[/L logname] [/SO srcname] /T type /D description
Description:
This command line tool enables an administrator to create
a custom event ID and message in a specified event log.
Parameter List:
/S system Specifies the remote system to connect to.
/U [domain\]user Specifies the user context under which
the command should execute.
/P [password] Specifies the password for the given
user context. Prompts for input if omitted.
/L logname Specifies the event log to create
an event in.
/T type Specifies the type of event to create.
Valid types: SUCCESS, ERROR, WARNING, INFORMATION.
/SO source Specifies the source to use for the
event (if not specified, source will default
to 'eventcreate'). A valid source can be any
string and should represent the application
or component that is generating the event.
/ID id Specifies the event ID for the event. A
valid custom message ID is in the range
of 1 - 1000.
/D description Specifies the description text for the new event.
/? Displays this help message.
Examples:
EVENTCREATE /T ERROR /ID 1000
/L APPLICATION /D "My custom error event for the application log"
EVENTCREATE /T ERROR /ID 999 /L APPLICATION
/SO WinWord /D "Winword event 999 happened due to low diskspace"
EVENTCREATE /S system /T ERROR /ID 100
/L APPLICATION /D "Custom job failed to install"
EVENTCREATE /S system /U user /P password /ID 1 /T ERROR
/L APPLICATION /D "User access failed due to invalid user credentials"
वहाँ एक है Microsoft-Windows-Battery
के साथ ETW प्रदाता BatteryPercentRemaining
आईडी 13. आप एक परियोजना का उपयोग करता है कोड कर सकते हैं के साथ घटना TraceEvent एक बनाने के लिए वास्तविक समय श्रोता इस के लिए Microsoft-Windows-Battery
प्रदाता। घटना में RemainingPercentage
स्थिति दिखाने और PercentageChange
परिवर्तन देखने के लिए प्रविष्टियाँ हैं:
जब आप इस ईवेंट को देखते हैं और इसके लिए -1
परिवर्तन देखते हैं PercentageChange
, तो वह प्रोग्राम चलाएं जो आप चाहते हैं।
ठीक है, डेविडपोस्टिल द्वारा प्रदान की गई स्क्रिप्ट काम नहीं करती है। यह अच्छी स्क्रिप्ट है, लेकिन कोड या तो अनियमित या पुराना है।
@echo off
setlocal EnableDelayedExpansion
rem set threshold value
set _threshold=30
:start
rem get the battery charge
rem use findstr to strip blank lines from wmic output
for /f "usebackq skip=1 tokens=1" %%i in (`wmic Path Win32_Battery Get EstimatedChargeRemaining ^| findstr /r /v "^$"`) do (
set _charge=%%i
echo !_charge!
if !_charge! lss !_threshold! (
echo threshold reached
rem create a custom event in the application event log
rem requires administrator privileges
eventcreate /l APPLICATION /t WARNING /ID 999 /D "Battery charge has dropped below the threshold."
goto :done
) else (
rem wait for 1 minute then try again
timeout /t 60 /nobreak
goto :start
)
)
:done
endlocal
मैंने डेविडपोस्टिल के उत्तर में इस संपादन का सुझाव दिया था, लेकिन मुझे नहीं पता कि इसे क्यों मंजूरी नहीं दी गई ...
findstr
है ... रास्ता बहुत बुरा है! Seriuosly, Microsoft? मैं डेविडपोस्टिल की गंदी छोटी हैक से प्रभावित होकर काम करवाता हूं।
बैटरी स्तर की जांच करने का एक बहुत आसान तरीका है। नेविगेशन क्षेत्र में बस बैटरी आइकन पर माउस रखो और यह एक प्रतिशत देगा।