gpt4 book ai didi

powershell - 如何使用 get-date 声明一个数组?

转载 作者:行者123 更新时间:2023-12-04 01:00:09 27 4
gpt4 key购买 nike

我想在 powershell 中声明一个日期数组,它不是一个连续的范围,所以我不能用循环做任何巧妙的事情。

我试过使用数组表示法调用 get-date,如下所示,但这会返回错误

$logDateList = 
@(Get-Date -Year 2017 -Month 08 -Day 22 -Hour 13
,Get-Date -Year 2017 -Month 08 -Day 20 -Hour 22)

如何在 powershell 中声明日期数组?

最佳答案

只需将每个 Get-Date 括在方括号中:

$logDateList = @((Get-Date -Year 2017 -Month 08 -Day 22 -Hour 13),(Get-Date -Year 2017 -Month 08 -Day 20 -Hour 22))

关于powershell - 如何使用 get-date 声明一个数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46407921/

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