I'm in the process of automating configuration for Windows at installation, like disabling services that are exploitable or that I just don't use. I wrote a batch file script for disabling the services, but now I would like to disable NetBIOS over TCP/IP using a batch file command. This is how to do it by hand:
wmic nicconfig get caption,index,TcpipNetbiosOptions
then, using the retrieved...
↧