我的计算机上启用了文件共享,我想知道是否有批处理代码可以关闭所有文件共享?
我希望可以通过批处理脚本禁用它,但除了在设置中手动禁用它之外,其他任何方法都可以。
答案1
将以下内容复制并粘贴到文本文件中,然后以 .bat 作为扩展名保存文件。
启用文件共享:
echo off
netsh advfirewall firewall set rule group="File and Printer Sharing" new enable=Yes
禁用文件共享:
echo off
netsh advfirewall firewall set rule group="File and Printer Sharing" new enable=No
答案2
网络停止服务器
批处理或命令行应该适合您。
net start server 重新启动。