操作系统防火墙

作者:追风剑情 发布于:2019-12-12 21:57 分类:C#

示例

  1. using System;
  2. using System.Net;
  3. using System.Net.NetworkInformation;
  4. using System.Text;
  5. //64位系统: 需要引入C:\Windows\SysWOW64\FirewallAPI.dll
  6. //32位系统: 需要引入C:\Windows\System32\FirewallAPI.dll
  7. using NetFwTypeLib;
  8.  
  9. namespace ConsoleApp6
  10. {
  11. class Program
  12. {
  13. static void Main(string[] args)
  14. {
  15. FirewallOperateByObject(false, false, false);
  16. Console.WriteLine("FirewallEnabled={0}", FirewallEnabled);
  17. Console.ReadLine();
  18. }
  19. // 判断Windows防火墙有没开启 (仅能判断公用网络位置)
  20. private static bool FirewallEnabled
  21. {
  22. get
  23. {
  24. INetFwMgr netFwMgr = GetFirewallManager();
  25. return netFwMgr.LocalPolicy.CurrentProfile.FirewallEnabled;
  26. }
  27. }
  28.  
  29. private static INetFwMgr GetFirewallManager()
  30. {
  31. const string CLSID_FIREWALL_MANAGER = "{304CE942-6E39-40D8-943A-B913C40C9CD4}";
  32. Type objType = Type.GetTypeFromCLSID(new Guid(CLSID_FIREWALL_MANAGER));
  33. return Activator.CreateInstance(objType) as INetFwMgr;
  34. }
  35.  
  36. /// <summary>
  37. /// 转载自 https://www.cnblogs.com/pilgrim/p/11135485.html
  38. /// 通过对象防火墙操作
  39. /// </summary>
  40. /// <param name="isOpenDomain">域网络防火墙(禁用:false;启用(默认):true)</param>
  41. /// <param name="isOpenPublicState">公共网络防火墙(禁用:false;启用(默认):true)</param>
  42. /// <param name="isOpenStandard">专用网络防火墙(禁用: false;启用(默认):true)</param>
  43. /// <returns></returns>
  44. public static bool FirewallOperateByObject(bool isOpenDomain = true, bool isOpenPublicState = true, bool isOpenStandard = true)
  45. {
  46. try
  47. {
  48. INetFwPolicy2 firewallPolicy = (INetFwPolicy2)Activator.CreateInstance(Type.GetTypeFromProgID("HNetCfg.FwPolicy2"));
  49. // 启用<高级安全Windows防火墙> - 专有配置文件的防火墙
  50. firewallPolicy.set_FirewallEnabled(NET_FW_PROFILE_TYPE2_.NET_FW_PROFILE2_PRIVATE, isOpenStandard);
  51. // 启用<高级安全Windows防火墙> - 公用配置文件的防火墙
  52. firewallPolicy.set_FirewallEnabled(NET_FW_PROFILE_TYPE2_.NET_FW_PROFILE2_PUBLIC, isOpenPublicState);
  53. // 启用<高级安全Windows防火墙> - 域配置文件的防火墙
  54. firewallPolicy.set_FirewallEnabled(NET_FW_PROFILE_TYPE2_.NET_FW_PROFILE2_DOMAIN, isOpenDomain);
  55. }
  56. catch (Exception e)
  57. {
  58. string error = $"防火墙修改出错:{e.Message}";
  59. throw new Exception(error);
  60. }
  61. return true;
  62. }
  63. }
  64. }

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号