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}
単純な配列を取得したいのですが、配列の最初の要素にこの文字列が含まれています。
前もって感謝します、