|
本帖最后由 dos时代菜鸟 于 2019-8-4 22:40 编辑
大概就是这个意思
for 读取本文件的第6行以后的部分
- title 防火牆阻擋列表
- @echo off
- for /f "skip=6 delims=" %%i in (' type "%~dpnx0" ') do netsh advfirewall firewall add rule name="%%~nxi" dir=out program=%%i action=block remoteip=any
- goto :eof
- :BlockFirewall
- c:\Program Files\test\test1.exe
- c:\Program Files\test\test2.exe
- c:\Program Files\test\test3.exe
- c:\Program Files\test\test4.exe
- c:\Program Files\test\test5.exe
复制代码 |
|