Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
幫我研究一下這個BAT與法..
@echo off
echo by allmap
:allmap
echo.
pause
echo [v]鎖定
netsh firewall set opmode mode = ENABLE
||||exceptions||||| = DISABLE
echo.
pause
echo [ ]開啟
netsh firewall set opmode mode = ENABLE
||||exceptions|||| = ENABLE
goto :allmap
幫我研究一下
我做了他都說||||exceptions||||| 有問題
幫幫我壓0.0 還是我用錯指令了!! 個大大幫我修補一下吧~
1 Answer
- 小彥Lv 51 decade agoFavorite Answer
@echo off
echo by allmap
:allmap
echo.
pause
echo [v]鎖定
netsh firewall set opmode mode = ENABLE exceptions = DISABLE
echo [ ]開啟
netsh firewall set opmode mode = ENABLE exceptions = ENABLE
goto :allmap
netsh firewall set opmode mode = ENABLE exceptions = DISABLE 開啟防火牆,不允許例外
netsh firewall set opmode mode = ENABLE exceptions = ENABLE 開啟防火牆,允許例外
Source(s): 自己