如何在PowerShell AD-Module中排除空值?

时间:2016-11-09 09:17:35

标签: powershell active-directory

我使用PowerShell命令提取" givenName"," sn"和" SamAccountName"来自activeDirectory:

npm install -g yo generator-hubot

问题有时在我的结果中,我有空值。 例如:
givenName =汤姆
sn =
SamAccountName = TomA1

如何排除结果中的所有空值只包含完整的行?

1 个答案:

答案 0 :(得分:0)

我做到了:

Get-ADUSer -Filter * -Properties givenName, sn, SamAccountName | Select givenName, sn, SamAccoun
tName | ? {$_.sn -ne $null} | ? {$_.givenName -ne $null}  | ? {$_.SamAccountName -ne $null} | Export-Csv C:\test.csv -Encoding UTF8