gpt4 book ai didi

Powershell脚本取值

转载 作者:行者123 更新时间:2023-12-02 22:39:38 26 4
gpt4 key购买 nike

我想使用 powershell 脚本获取默认网关,我可以如下获取它。

Get-WmiObject -Class Win32_IP4RouteTable |
where { $_.destination -eq '0.0.0.0' -and $_.mask -eq '0.0.0.0'} |
Sort-Object metric1 | select nexthop | select-object -first 1

结果

nexthop
-------
0.0.0.0

但是我只想获取值“0.0.0.0”,而不是标题,对此有什么解决方案吗?

最佳答案

您应该使用以下任一脚本获取属性值。

使用 (您的脚本).PropertyName:

(Get-WmiObject -Class Win32_IP4RouteTable |
where { $_.destination -eq '0.0.0.0' -and $_.mask -eq '0.0.0.0'} |
Sort-Object metric1 | select nexthop | select-object -first 1).nexthop

或者通过使用使用你的脚本|选择 -ExpandProperty PropertyName:

Get-WmiObject -Class Win32_IP4RouteTable |
where { $_.destination -eq '0.0.0.0' -and $_.mask -eq '0.0.0.0'} |
Sort-Object metric1 | select nexthop | select-object -first |
select -ExpandProperty nexthop

关于Powershell脚本取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47863699/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com