gpt4 book ai didi

powershell - 如何将 Name NoteProperty 添加到对象?

转载 作者:行者123 更新时间:2023-12-04 17:39:27 24 4
gpt4 key购买 nike

如何为对象添加 Name NoteProperty?我试过:

$a = "This", "Is", "a", "cat"
$a | Add-Member -type NoteProperty -name Name
$a

但这似乎不起作用。

预期的输出是:
Name
----
This
Is
a
cat

最佳答案

这是修改后的问题的答案:

$a = "This", "Is", "a", "cat"
$a | Select-Object @{Name='Name'; Expression={$_}}

根据要求,输出是
Name
----
This
Is
a
cat

关于powershell - 如何将 Name NoteProperty 添加到对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7723471/

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