EstimatedChargeRemaining

EstimatedChargeRemaining

状态栏中的“电池”图标不起作用,我使用Windows批处理脚本检查电池电量。 (我不想修复该图标。)但是,输出有点丑陋,在下一行没有空格和纯数字。
因此,我如何转换

EstimatedChargeRemaining
83
Battery Level is at 83
(或任何其他形式。)
附言:我使用的命令是WMIC PATH Win32_Battery Get EstimatedChargeRemaining

最佳答案

for /f "tokens=* delims=" %%a in ('WMIC PATH Win32_Battery Get EstimatedChargeRemaining /format:value') do (
   for %%# in ("%%a") do set "%%#"
)

echo Battery Level is at %EstimatedChargeRemaining%

关于windows - BATCH-如何从多行命令输出中仅获取单行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50581546/

10-12 21:21