gpt4 book ai didi

PowerShell -ExpandProperty 和正确的日期格式

转载 作者:行者123 更新时间:2023-12-01 14:50:11 28 4
gpt4 key购买 nike

我正在尝试使用 PowerShell 中的 -ExpandProperty 功能来阻止标题出现在输出中,并设置没有分钟和秒的日期格式。这只是为了获取 AD 对象的创建日期:

Get-ADComputer -Server $Server -Identity BlahBlah -Properties Created |
Select-Object -ExpandProperty @{Name="Created";Expression={$_.Created.ToString("yyyy-MM-dd")}}

这不会产生结果,只有当我排除 "-ExpandProperty" 部分时,它才会产生正确的日期格式,但包括标题 "Created" 我不想。

有什么想法吗?

最佳答案

我目前无法访问广告,但这可能是您想要的

已更新

Get-ADComputer -Server $Server -Identity BlahBlah -Properties Created | Select-Object Created | ForEach-Object {$_.Created.ToString("yyyy-MM-dd")}

关于PowerShell -ExpandProperty 和正确的日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53238445/

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