批处理 关闭137/138/139端口的方法
时间: 2023-06-19 16:08:40 浏览: 292
关闭Windows2000和WindowsXP的135_138_139_445端口详解
要关闭 137/138/139 端口,可以通过以下步骤执行批处理:
1. 打开记事本或任何文本编辑器。
2. 输入以下命令:
```
netsh firewall set portopening protocol = TCP port = 137 scope = subnet profile = current state = disable
netsh firewall set portopening protocol = TCP port = 138 scope = subnet profile = current state = disable
netsh firewall set portopening protocol = TCP port = 139 scope = subnet profile = current state = disable
```
3. 将文件保存为 .bat 扩展名(例如,disable_137_138_139.bat)。
4. 双击运行该文件,它将禁用这些端口。
请注意,这些命令需要管理员权限才能执行,否则可能会出现权限错误。如果您不确定如何以管理员身份运行批处理文件,请按照以下步骤操作:
1. 找到批处理文件。
2. 右键单击文件,然后选择“以管理员身份运行”选项。
3. 输入管理员凭据(如果需要)。
4. 单击“是”以允许该文件对计算机进行更改。
阅读全文