通过Windows 7防火墙快速阻止多个程序


0

我知道如何很容易地通过防火墙阻止单个程序,但是我现在必须对多个应用程序执行此操作,并且过程变得很繁琐。有什么方法可以在Windows 7防火墙中快速阻止多个程序?或者只是一种阻止整个文件夹的方法。

第三方程序?(我指的是Windows中防火墙功能的GUI,而不是备用防火墙程序)。

Answers:


2

您应该能够编写一个使用netsh应用规则的快速批处理文件:

netsh advfirewall firewall add rule name=”My Application” dir=in action=block program=”C:\MyApp\MyApp.exe”

我不能说我已经测试过了,因为我现在不在自己的电脑上(没有管理员权限)。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.