将AD用户名插入组合框

时间:2019-06-13 22:30:29

标签: powershell active-directory

我想将我所有的AD用户名插入没有“ @()”的Powershell组合框中。

我可以按我的期望查询广告-仅列出我想要的用户名。 但是,当我将它们添加到组合框中时,“ @()”将它们包围起来。

 if (typeof food === 'string') {

我希望这样:

“用户A” “用户B”

但是我得到的是:

@(“用户A”) @(“用户B”)

1 个答案:

答案 0 :(得分:2)

您可以通过两种方式完成此操作。

# This way, good if you only have to extract 1 property, bad if you need multiple.
... | select -ExpandProperty Name

# This is another way, good if your original object has more than 1 property
$ComboBoxTemplate.Items.Add($user.Name)