在Windows Powershell中获取小时和分钟

时间:2018-05-14 19:15:20

标签: powershell scripting powershell-v3.0

我在Powershell是全新的,我需要在剧本中获得一小时和几分钟。

我目前有这个:

enter image description here

2 个答案:

答案 0 :(得分:6)

你几乎拥有它;而不是g,请使用:

  • hh 12小时格式的小时
  • HH 24小时格式的小时
  • 分钟
  • mm

例如Get-Date -Format hh:mm将12小时的时间返回为“04:55”,而Get-Date -Format HH只会以24小时的时间返回小时数。

Microsoft记录了可能格式的完整列表:Custom Date and Time Format Strings

答案 1 :(得分:3)

试试这个Get-Date -Format HH:mm