为什么即使我删除了 Windows 管理共享,它仍会在几个小时后自动启用?

为什么即使我删除了 Windows 管理共享,它仍会在几个小时后自动启用?

为了增强 Windows 操作系统的安全性,我使用以下命令删除了管理共享。

net share C$ /delete
net share Z$ /delete

然后我再次用命令验证net share以确保它不存在。

C:\>net share
There are no entries in the list.

C:\>

几个小时后,默认共享又恢复了

C:\> net share

Share name   Resource                        Remark

-------------------------------------------------------------------------------
Z$           Z:\                             Default share
C$           C:\                             Default share
The command completed successfully.


C:\>

知道为什么会发生这种情况吗?

这是 Windows 上的标准行为吗?

答案1

这是自动功能。

要使用注册表禁用它:

请在 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters 中创建一个名为 AutoShareWks 的 Dword 值,并赋予其 0 值。

在此处输入图片描述

相关内容