gpt4 book ai didi

windows - 我应该如何使用 Powershell 为 ping 设置 24 小时时间戳?

转载 作者:可可西里 更新时间:2023-11-01 10:10:54 24 4
gpt4 key购买 nike

我需要在 Windows 中执行 ping 操作,并知道什么时间收到或错过了 ping;时间戳应反射(reflect) 24 小时制(而不是 AM/PM 后缀)。

如何在 Powershell 中执行此操作?

最佳答案

您可以使用 foreach() 循环为 ping 添加时间戳; Get-Date 可以采用格式字符串:

C:\> powershell
PS C:\> ping.exe -t 4.2.2.2 | Foreach{"{0} - {1}" -f (Get-Date -f "yyyyMMdd HH:mm:ss"),$_}
20190601 14:33:03 -
20190601 14:33:03 - Pinging 4.2.2.2 with 32 bytes of data:
20190601 14:33:03 - Reply from 4.2.2.2: bytes=32 time=70ms TTL=123
20190601 14:33:04 - Reply from 4.2.2.2: bytes=32 time=71ms TTL=123
20190601 14:33:05 - Reply from 4.2.2.2: bytes=32 time=70ms TTL=123

关于windows - 我应该如何使用 Powershell 为 ping 设置 24 小时时间戳?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56409678/

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