John C.
2023-03-01 12:44:59 UTC
I've read that Microsoft is in the process of disabling LLMNR and
NETBIOS in W10 and W11.
Both protocols are now considered obsolete and present security risks I
believe. Because of this, I would like to know how to disable LLMNR.
This website:
https://www.blackhillsinfosec.com/how-to-disable-llmnr-why-you-want-to/
tells how to do this via command line, but I'm convinced that there is
an error in the instructions. Specifically, this (ignore the long lines
of dashes):
_______________________________________________________________________
REG ADD “HKLM\Software\policies\Microsoft\Windows NT\DNSClient”
REG ADD “HKLM\Software\policies\Microsoft\Windows NT\DNSClient” /v ”
EnableMulticast” /t REG_DWORD /d “0” /f
_______________________________________________________________________
should possibly be this:
_______________________________________________________________________
REG ADD "HKLM\Software\policies\Microsoft\Windows NT\DNSClient"
REG ADD "HKLM\Software\policies\Microsoft\Windows NT\DNSClient" /v
"EnableMulticast" /t REG_DWORD /d "0" /f
_______________________________________________________________________
where the second and third lines are one command. The error was caused
by an extra space after the quotation mark before the word EnableMulticast.
Ironically, I've checked out some other websites which offer the same
instructions and it appears that they may have simply copied and pasted
the command lines from that website and included the error.
Can anybody verify if I'm correct in my version of the command lines?
TIA
NETBIOS in W10 and W11.
Both protocols are now considered obsolete and present security risks I
believe. Because of this, I would like to know how to disable LLMNR.
This website:
https://www.blackhillsinfosec.com/how-to-disable-llmnr-why-you-want-to/
tells how to do this via command line, but I'm convinced that there is
an error in the instructions. Specifically, this (ignore the long lines
of dashes):
_______________________________________________________________________
REG ADD “HKLM\Software\policies\Microsoft\Windows NT\DNSClient”
REG ADD “HKLM\Software\policies\Microsoft\Windows NT\DNSClient” /v ”
EnableMulticast” /t REG_DWORD /d “0” /f
_______________________________________________________________________
should possibly be this:
_______________________________________________________________________
REG ADD "HKLM\Software\policies\Microsoft\Windows NT\DNSClient"
REG ADD "HKLM\Software\policies\Microsoft\Windows NT\DNSClient" /v
"EnableMulticast" /t REG_DWORD /d "0" /f
_______________________________________________________________________
where the second and third lines are one command. The error was caused
by an extra space after the quotation mark before the word EnableMulticast.
Ironically, I've checked out some other websites which offer the same
instructions and it appears that they may have simply copied and pasted
the command lines from that website and included the error.
Can anybody verify if I'm correct in my version of the command lines?
TIA
--
John C.
John C.