这个对 theCleaner 问题的回答帮助了我一些Windows DHCP 服务器 - 当未加入 AD 的设备获得 IP 地址时收到通知,但对他的问题的回答涉及 Quest Poweshell cmdlet。我想用普通的旧 Powershell v4 cmdlet 实现一个解决方案。
问题
我目前根本没有收到任何有关新 DHCP 租约的通知。当有人插入我们的插孔之一,从我们的 Windows Server 2012 DHCP 服务器获得 DHCP 租约,但尚未加入 AD 时,我希望收到通知。所以我想要一个关于非 AD 加入设备的新 DHCP 租约的电子邮件通知。
我试过的
我已经整理了一些 Powershell 代码,从上面提到的 theCleaner 的问题中借用了一些。
Get-DhcpServerv4Lease -allleases -ScopeId #myscopeIDhere | Select-Object @{expression= {$_.hostname}; label='name' } | export-CSV -notypeinformation C:\dhcp\LeaseLog.csv
import-module activedirectory
#get input CSV
$leaselogpath = "c:\DHCP\LeaseLog.csv"
Import-csv -path $leaselogpath |
#query AD for computer name based on csv log
foreach-object `
{
$NameResult = Get-ADComputer -Filter *
If ($NameResult -eq $null) {$RogueSystem = $_.name}
$RogueSystem | Out-File C:\DHCP\RogueClients.txt -Append
$RogueSystem = $null
}
Get-Content C:\DHCP\RogueClients.txt | Select-Object -Unique | Out-File C:\DHCP\RogueClientsFinal.txt
Remove-Item C:\DHCP\RogueClients.txt
#send email to sysadmin
$smtpserver = #my email server IP address here
$from="[email protected]"
$to="[email protected]"
$subject="Non-AD joined DHCP clients"
$body= (Get-Content C:\DHCP\RogueClientsFinal.txt) -join '<BR> <BR>'
$mailer = new-object Net.Mail.SMTPclient($smtpserver)
$msg = new-object Net.Mail.MailMessage($from,$to,$subject,$body)
$msg.IsBodyHTML = $true
$mailer.send($msg)
我收到电子邮件“非 AD 加入 DHCP 客户端”,但电子邮件中没有对象。我们确实有非 AD 加入 DHCP 租约(我将非 AD 笔记本电脑连接到网络进行测试),但笔记本电脑没有显示在电子邮件中。运行脚本后我也没有收到任何红色测试。
如果有人有建议,请告诉我。我的脚本中的某个地方显然有问题。我个人认为这可能与我的 AD cmdlet 和 CSV 导入有关。
此查询将返回AD中的所有计算机,其结果永远不会为空;您应该查询您要查找的实际计算机名称:
此外,DHCP 日志文件中的名称可能是 FQDN(例如
computer.domain.local
);如果是这种情况,您需要先去除域后缀,然后再将它们输入Get-ADcomputer,它只需要计算机名称: