从Powershell输出中提取特定数据

发布于 2025-01-22 19:25:16 字数 278 浏览 0 评论 0原文

我需要从PowerShell输出中获取特定值。我只需要在PoeWershell中获得数字值。

$ result = WMIC PATH WIN32_BATTERY获取估计chargremaining

I need to get the specific value from powershell output. I need to get the numeric values in poewershell only.

$result =WMIC PATH Win32_Battery Get EstimatedChargeRemaining
Output

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

国粹 2025-01-29 19:25:16

而不是使用 wmic可以使用PowerShell内置CMDLET查询WMI和CIM:

(Get-CimInstance -ClassName Win32_Battery).EstimatedChargeRemaining

请参阅 get-ciminstance 用于官方文档。

Instead of using wmic you can use a PowerShell built-in cmdlet to query WMI and CIM:

(Get-CimInstance -ClassName Win32_Battery).EstimatedChargeRemaining

See Get-CimInstance for Official Documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文