因此,如果我使用 Windows Defender,我可以使用以下命令通过 shell 成功阻止端口上的流量:
netsh advfirewall firewall add rule name=block80 protocol=TCP dir=out remoteport=80 action=block
但是我安装了第三方防火墙(例如 Norton),我仍然可以向 Windows 防火墙添加规则,如果我检查,规则就在那里,但什么也没发生。(规则实际上不适用)。当安装了第三方软件时,如何通过 shell 阻止端口(例如 80)?有没有办法覆盖第三方软件?
另外,我需要通过 c# 程序(例如命令行或类似的东西)来完成此操作。