18 lines
426 B
PowerShell
18 lines
426 B
PowerShell
$Path = "HKLM:\Software\policies\Microsoft\Windows NT\DNSClient"
|
|
$Name = "EnableMulticast"
|
|
$Type = "DWORD"
|
|
$Value = 0
|
|
|
|
Try {
|
|
$Registry = Get-ItemProperty -Path $Path -Name $Name -ErrorAction Stop | Select-Object -ExpandProperty $Name
|
|
If ($Registry -eq $Value){
|
|
Write-Output "Compliant"
|
|
Exit 0
|
|
}
|
|
Write-Warning "Not Compliant"
|
|
Exit 1
|
|
}
|
|
Catch {
|
|
Write-Warning "Not Compliant"
|
|
Exit 1
|
|
} |