C 新增刪除防火牆例外(程式 埠)

2022-03-01 01:46:43 字數 966 閱讀 6960

一、 新增 com 引用

在引用裡,選擇 com 頁, 找到netfwtypelib, 確定即可

二、 新增允許通過防火牆的例外程式

using system;  

using system.collections.generic;

using system.linq;

using system.text;

using netfwtypelib;

namespace common

else

objport.scope = net_fw_scope_.net_fw_scope_all;

objport.enabled = true;

bool exist = false;

//加入到防火牆的管理策略

foreach (inetfwopenport mport in netfwmgr.localpolicy.currentprofile.globallyopenports)

} if (!exist) netfwmgr.localpolicy.currentprofile.globallyopenports.add(objport);

} /// /// 將應用程式新增到防火牆例外

///

/// 應用程式名稱

/// 應用程式可執行檔案全路徑

} }

/// /// 刪除防火牆例外埠

///

/// 埠

/// 協議(tcp、udp)

else

} /// /// 刪除防火牆例外中應用程式

///

/// 程式的絕對路徑

} }

**:

Windows批量新增防火牆例外埠

windows下批量新增防火牆例外埠,查了網上資料,基本上都是使用 netsh命令 迴圈增加埠,這會導致建立的規則特別多,不便於管理,查了下微軟的資料,原來是netsh命令,只支援乙個埠 於是根據提示,查詢 輾轉查到更詳細的文件 主要關注以下幾個引數 如果是使用命令,在指定機器上執行,命令如下 1....

C 新增修改防火牆埠及程式

文章 一 新增 com 引用 在引用裡,選擇 com 頁,找到netfwtypelib,確定即可 二 新增允許通過防火牆的例外程式 using system using system.collections.generic using system.linq using system.text us...

centos7 防火牆新增例外埠firewall

1.檢視防火牆執行狀態 root localhost firewall cmd state running2.新增埠,以8080為例 root localhost firewall cmd permanent zone public add port 8080 tcp success命令含義 zon...