function getNTAccounts {
Add-PSSnapin Quest.ActiveRoles.ADManagement
connect-QADService
$accounts = @()
Get-QADUser -CreatedAfter (Get-Date).AddDays(-3) -SerializeValue | Select-Object "samaccountname" | Foreach-Object{
$accounts += $_.samaccountname
}
Disconnect-QADService
return ,$lastaccounts
}
$tmpResult = getNTAccounts
你能告诉我为什么我得到这个:
{Quest.ActiveRoles.ArsPowerShellSnapIn.Data.ArsADConnection, Account1 Account2}
我想得到一个简单的数组,但它在数组的第一个元素中包含这个字符串。
提前致谢,