disabling default share c$

  • Thread starter Thread starter charles ahpoe
  • Start date Start date
C

charles ahpoe

How can I disable the c$ administrative share from the
registry. people seem to take advantage of this type of
sharing since you cant have control over it

thanx
 
How I do it and there may be a better or easier way. In the startup scripts
or in my case in there startup file I have a batch file that runs the
following commands.

net share c$ /delete
net share d$ /delete
net share ipc$ /delete
net share admin$ /delete
 
Back
Top