Windows firewall Command Line 開例外清單Port Range
[Single Port]
開8080/TCP Port
C:\netsh firewall add portopening TCP 8080 "HTTP Port8080"
C:\netsh firewall delete portopening TCP 8080
[Port Range]
為FTP passive mode開5500/TCP到5700/TCP Port
C:\FOR /L %I IN (5500,1,5700) DO netsh firewall add portopening TCP %I "FTP Passive mode Port Range"%I
C:\FOR /L %I IN (5500,1,5700) DO netsh firewall delete portopening TCP %I
PS.若要將以上command寫在batch file請將%I都改成%%I才能執行
Brad Chen's Developer Blog Azure Database Data science Machine Learning Cloud
訂閱:
張貼留言 (Atom)
SQL Server Analysis Service
SQL Server Analysis Service
-
1.安裝了Oracle Client,就可以用Oracle Net Manager工具來設定TNS連線設定(Tnsnames.ora) Oracle Client 18.3 Installation 安裝Oracle Client 18.3 2.啟動Oracle Ne...
-
SQL Server Integration Service可以透過內建的OLE DB Source連線到Oracle匯出資料,但無法寫入資料到Oracle,Attunity公司針對這個功能提供了SSIS的連結Source,並且聽說資料傳送效率非常好,本人沒有測試過效能,有興趣的...
-
Guideline for SQL Server configuration, installation and database creation
2 則留言:
FOR /L %I IN (5500,1,5700) DO netsh firewall add portopening TCP %I "FTP Passive mode Port Range"%I
這句不能save 成BAT FILE
BAT 不能用FOR 嗎??
把%I都改成%%I就可以了
張貼留言