当我在 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