gpt4 book ai didi

powershell - 获取 AzureAutomationJob CreationTime 类型

转载 作者:行者123 更新时间:2023-12-03 04:34:16 26 4
gpt4 key购买 nike

当我在 Azure 自动化中运行此代码时,CreationTime 的类型为 String。但是,当我在 Powershell ISE 中运行它时,类型为 DateTimeOffset。这是为什么?:

$job = Get-AzureAutomationJob -Id '6edcaf79-f924-480d-9242-8c113206d7cb' -AutomationAccountName nonprodruntimebuild
$type = $job.CreationTime.GetType().Name
Write-Output $type

最佳答案

这是一个已知的错误。 Azure 自动化 cmdlet 中返回的 DateTimeOffset 字段是 PowerShell 工作流中的字符串。解决方法是将它们转换回日期时间,如下所示:

$datetimeoffset = Get-Date $job.CreationTime

关于powershell - 获取 AzureAutomationJob CreationTime 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29837435/

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