Hi,
Thank you for your question and reaching out.
I understand that you want to know if you can disable Lanmanserver services in one Domain Controller. You're not able to just "disable" the domain services on it. Windows does not also recommend doing so. However, if you're sure disabling it would improve avoiding potential attack in your servers, you may disable it using the PowerShell command below:
Start-Process powershell -ArgumentList '-noprofile -file C:\Scripts\StopLanManServerService.ps1' -verb RunAs
or this command instead:
net stop lanmanserver /y
--If the reply is helpful, please Upvote and Accept as answer--