SoFunction
Updated on 2025-04-03

Automatically detect all disks and then delete all partitions' default shared batch processing


@echo off
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::
::     First list existing partitions, and then delete shares named after partition names one by one;
::        Prevent admin$ share from reloading the next time you boot;
::       IPC$ sharing requires administrator permission to be successfully deleted
::
::
::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

title Default shared deleter
echo. 
echo ------------------------------------------------------ 
echo. 
echo starts deleting the default share under each partition.
echo. 
for %%a in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do @(
    if exist %%a:\nul (
net share %%a$ /delete>nul 2>nul && echo Successfully deleted the default share named %%a$ || echo The default share named %%a$  does not exist
    ) 
)
net share admin$ /delete>nul 2>nul && echo Successfully deleted the default share named admin$ || echo The default share named admin$  does not exist
echo.
echo ------------------------------------------------------ 
echo.
net stop Server>nul 2>nul && echo Server service has been stopped.
net start Server>nul 2>nul && echo Server service has been started.
echo. 
echo ------------------------------------------------------ 
echo. 
echo Modify the registry to change the system default settings.
echo. 
echo is creating a registry file.
echo Windows Registry Editor Version 5.00> c:\ 
:: Disable Admin$ sharing through the registry to prevent it from loading again after restart
echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters]>> c:\
echo "AutoShareWks"=dword:00000000>> c:\ 
echo "AutoShareServer"=dword:00000000>> c:\ 
:: Delete IPC$ share. This function requires administrator permission to be successfully deleted.
echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa]>> c:\
echo "restrictanonymous"=dword:00000001>> c:\
echo Importing the registry file to change the system default settings.
regedit /s c:\ 
del c:\ && echo The temporary file has been deleted.
echo. 
echo ------------------------------------------------------ 
echo. 
The echo program has successfully deleted all default shares.
echo. 
echo Press any key to exit...
pause>nul