gpt4 book ai didi

c# - 我怎么知道我的应用程序没有被添加到防火墙?

转载 作者:太空狗 更新时间:2023-10-29 21:58:26 26 4
gpt4 key购买 nike

我使用 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;
}

关于c# - 我怎么知道我的应用程序没有被添加到防火墙?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15554979/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com