Turn off administrative share on Windows 7

In Windows 7 administrative shares are less harmful than in previous versions of Windows, because they are hidden over the network and can in addition only be accessed remotely by network administrators. Microsoft specifically warns that disabling them may cause some programs to malfunction (but doesn't say which ones).

If you wish to disable them, the only way is to create a startup script, because these shares are always recreated during the boot.

An example script is :

NET SHARE C$ /delete
NET SHARE D$ /delete
NET SHARE admin$ /delete

Put these commands in a .bat file, create a shortcut to it on the desktop (or elsewhere), then drag the shortcut to Start > All Programs > Startup to execute automatically upon login.

Another way to do the same thing is to save the shortcut or batch file in %AppData%\Microsoft\Windows\Start Menu\Programs\Startup\.


Please read this first http://support.microsoft.com/kb/842715/en-us - here you can find an potential issue that could happened while administrative shares are off. Some Windows services depend on it.

You may experience a variety of issues when administrative shares are removed or are otherwise missing from your computer.If you use the net share command or MPSReports, the output may show that your computer is missing the IPC$, ADMIN$, or C$ share. If you re-create a missing share, it may be missing again after the next startup or logon. This issue may occur even if you set the AutoShareServer and AutoShareWks registry DWORD values to 1.

If the affected computer is a domain controller, you may receive error messages on client computers during network logon or during the times when they try to join the domain. Sometimes, you can log on with client computers that are running Microsoft Windows 2000 or Microsoft Windows XP, but you cannot log on with client computers that are running Microsoft Windows 95, Microsoft Windows 98, or Microsoft Windows Millennium Edition.

When you try to access or view the affected computer remotely by using a UNC path, a mapped drive, the net use command, the net view command, or by browsing the network in Network Neighborhood or My Network Places, you may receive an error message.

You may receive errors when you try to perform administrative tasks on a domain controller. For example, MMC snap-ins such as Active Directory Users and Computers or Active Directory Sites and Services may not start, and you may receive an error message.

If you are sure what you are doing just google for answer.


You can remove the administrative shares on a Windows box and prevent them from being created automatically by editing the following registry key and setting its value to 0:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters\AutoShareServer

To apply this change, you must stop and restart the server service, which you can easily do by entering the following commands at the command prompt:

net stop server
net start server

However, Microsoft recommends that you don't remove administrative shares because it can break many different things. For a list of problems that can occur, have a look at the Microsoft article: Overview of problems that may occur when administrative shares are missing.