批处理 关闭137/138/139端口命令
时间: 2023-06-19 12:08:18 浏览: 187
以下是关闭 137/138/139 端口的命令:
1. 打开命令提示符窗口(以管理员身份运行)。
2. 输入以下命令以禁用NetBIOS over TCP/IP:
```
netsh interface tcp set global netbios=disabled
```
3. 输入以下命令以停止相关服务:
```
net stop "Server"
net stop "Browser"
```
4. 输入以下命令以禁用相关服务:
```
sc config lanmanserver start=disabled
sc config lanmanworkstation start=disabled
```
请注意,以上命令会停止和禁用与这些端口相关的服务。如果您不确定这样做是否会影响您的系统,请先备份数据并谨慎操作。
相关问题
批处理 关闭137/138/139端口的方法
要关闭 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. 单击“是”以允许该文件对计算机进行更改。
阅读全文