SQL PowerShell比较数组

时间:2018-12-05 23:44:34

标签: sql powershell active-directory

我有以下代码-要在AD(LastlogonTimestamp的14天内获得所有活跃用户):

$ADActiveUsers = Get-ADUser -Filter {(employeeType -like "*user*") -and (enabled -eq $true)} -Properties lastlogondate, employeetype, emailaddress |
    ? { ($_.LastLogonDate -gt (Get-Date).AddDays(-15))} |
    Select-Object Name, SAMAccountName, LastLogonDate, employeetype, userprincipalname, emailaddress

此外,我正在尝试让所有尚未通过此查询完成安全性问题和答案的用户:

$SqlData = Invoke-Sqlcmd -Query "select NT_LGN_TXT from vw6201 where SCU_QUE_CD is Null" -ServerInstance (Server Name) -Database (DB Name)

我的需要(卡住的地方)-我试图将SQL和AD的数据进行比较,为结果创建数组并将其作为电子邮件通知发送。

0 个答案:

没有答案