我正在关注PowerShell教程here。
我无法像在此示例中那样填充comboxBox。 继续将null项传递给PS Studio的组合框辅助方法。
我能够在控制台上按名称获取我的组织OU列表:
Get-ADOrganizationalUnit -SearchBase 'OU=accounts,DC=corp,DC=company,DC=org' -SearchScope OneLevel -filter * | ft name
我无法将这个控制台查询翻译成工作室中的组合框。
答案 0 :(得分:1)
format-table
返回一个包含嵌入格式代码和换行符的多行字符串,而不是对象。如果您想要组合框的OU名称数组,请与select-object
进行交换,并在名称属性上使用-ExpandProperty
:
Get-ADOrganizationalUnit -SearchBase 'OU=accounts,DC=corp,DC=company,DC=org' -SearchScope OneLevel -filter * |
select -ExpandProperty Name