我使用netsh将应用程序添加到防火墙,如下所示。在添加应用之前,如何知道应用没有添加到防火墙中?因为我不想把我的应用程序反复添加到防火墙。
ProcessStartInfo info = null;
try
{
using (Process proc = new Process())
{
string productAssembly = new Uri(Path.GetDirectoryName(Assembly.GetExecutingAssembly().CodeBase)).LocalPath + "\" + this.ProductName + ".exe";
string args = string.Format(CultureInfo.InvariantCulture, "advfirewall firewall add rule name="{0}" dir=in action=allow program="{1}" enable=yes", this.ProductName, productAssembly);
info = new ProcessStartInfo("netsh", args);
proc.StartInfo = info;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.RedirectStandardOutput = false;
proc.Start();
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
TheGreatCO,谢谢。我试过了,很管用。
private bool isFirewallEnabled()
{
ProcessStartInfo info = null;
string result = string.Empty;
try
{
using (Process proc = new Process())
{
string args = string.Format(CultureInfo.InvariantCulture, "advfirewall firewall show rule name="{0}"", this.ProductName);
info = new ProcessStartInfo("netsh", args);
proc.StartInfo = info;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.RedirectStandardOutput = true;
proc.Start();
while ((result = proc.StandardOutput.ReadLine()) != null)
{
if (result.Replace(" ", String.Empty) == "Enabled:Yes")
{
return true;
}
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
return false;
}