溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用c# 實現(xiàn)開啟或關(guān)閉防火墻

發(fā)布時間:2020-10-29 15:02:43 來源:億速云 閱讀:461 作者:Leah 欄目:開發(fā)技術(shù)

使用c# 實現(xiàn)開啟或關(guān)閉防火墻?針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

  1、判斷程序是否擁有管理員權(quán)限

  需要引用命名空間:System.Security.Principal

/// <summary>
/// 判斷程序是否擁有管理員權(quán)限
/// </summary>
/// <returns>true:是管理員;false:不是管理員</returns>
public static bool IsAdministrator()
{
  WindowsIdentity current = WindowsIdentity.GetCurrent();
  WindowsPrincipal windowsPrincipal = new WindowsPrincipal(current);
  return windowsPrincipal.IsInRole(WindowsBuiltInRole.Administrator);
}

  2、注冊表修改防火墻

  需要引用命名空間:Microsoft.Win32

/// <summary>
/// 通過注冊表操作防火墻
/// </summary>
/// <param name="domainState">域網(wǎng)絡(luò)防火墻(禁用:0;啟用(默認):1)</param>
/// <param name="publicState">公共網(wǎng)絡(luò)防火墻(禁用:0;啟用(默認):1)</param>
/// <param name="standardState">專用網(wǎng)絡(luò)防火墻(禁用:0;啟用(默認):1)</param>
/// <returns></returns>
public static bool FirewallOperateByRegistryKey(int domainState=1, int publicState = 1, int standardState = 1)
{
  RegistryKey key = Registry.LocalMachine;
  try
  {
    string path = "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\SharedAccess\\Defaults\\FirewallPolicy";
    RegistryKey firewall = key.OpenSubKey(path, true);
    RegistryKey domainProfile = firewall.OpenSubKey("DomainProfile", true);
    RegistryKey publicProfile = firewall.OpenSubKey("PublicProfile", true);
    RegistryKey standardProfile = firewall.OpenSubKey("StandardProfile", true);
    domainProfile.SetValue("EnableFirewall", domainState, RegistryValueKind.DWord);
    publicProfile.SetValue("EnableFirewall", publicState, RegistryValueKind.DWord);
    standardProfile.SetValue("EnableFirewall", standardState, RegistryValueKind.DWord);
  }
  catch (Exception e)
  {
    string error = $"注冊表修改出錯:{e.Message}";
    throw new Exception(error);
  }
  return true;
}

   3、直接操作防火墻對象

  需要在項目引用中添加對NetFwTypeLib的引用,并引用命名空間NetFwTypeLib

/// <summary>
/// 通過對象防火墻操作
/// </summary>
/// <param name="isOpenDomain">域網(wǎng)絡(luò)防火墻(禁用:false;啟用(默認):true)</param>
/// <param name="isOpenPublicState">公共網(wǎng)絡(luò)防火墻(禁用:false;啟用(默認):true)</param>
/// <param name="isOpenStandard">專用網(wǎng)絡(luò)防火墻(禁用: false;啟用(默認):true)</param>
/// <returns></returns>
public static bool FirewallOperateByObject(bool isOpenDomain = true, bool isOpenPublicState = true, bool isOpenStandard = true)
{
  try
  {
    INetFwPolicy2 firewallPolicy = (INetFwPolicy2)Activator.CreateInstance(Type.GetTypeFromProgID("HNetCfg.FwPolicy2"));
    // 啟用<高級安全Windows防火墻> - 專有配置文件的防火墻
    firewallPolicy.set_FirewallEnabled(NET_FW_PROFILE_TYPE2_.NET_FW_PROFILE2_PRIVATE, isOpenStandard);
    // 啟用<高級安全Windows防火墻> - 公用配置文件的防火墻
    firewallPolicy.set_FirewallEnabled(NET_FW_PROFILE_TYPE2_.NET_FW_PROFILE2_PUBLIC, isOpenPublicState);
    // 啟用<高級安全Windows防火墻> - 域配置文件的防火墻
    firewallPolicy.set_FirewallEnabled(NET_FW_PROFILE_TYPE2_.NET_FW_PROFILE2_DOMAIN, isOpenDomain);
  }
  catch (Exception e)
  {
    string error = $"防火墻修改出錯:{e.Message}";
    throw new Exception(error);
  }
  return true;
}

關(guān)于使用c# 實現(xiàn)開啟或關(guān)閉防火墻問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI