Forum Discussion
AadLutgert
Sep 09, 2019Brass Contributor
disable Multicast Name Resolution (LLMNR) with Intune
I'm looking for a way to disable Multicast Name Resolution (LLMNR) using Intune. I've checked the MDM Security baseline and all Device configuration policies, but was unable to find the setting. I ra...
- Feb 22, 2020
Basher81 I haven't recieved an answer. The best way to do this is creating a powershell script to add the following registry setting:
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\DNSClient]
"EnableMulticast"=dword:00000000You can deploy this by either packaging with the win32 prep tool (application) or deploy it as a powershell script.
Hope this will help you.
AadLutgert
Feb 13, 2021Brass Contributor
There is also a new policy setting available In the latest Windows 10 Insider Preview Build named:
ADMX_DnsClient/Turn_Off_Multicast
Using this policy setting LLMNR can be disabled on client computers. more info can be found here:
https://docs.microsoft.com/en-us/windows/client-management/mdm/policy-csp-admx-dnsclient
HotCakeX
Sep 11, 2023MVP
Thank you!