9 lines
262 B
Batchfile
9 lines
262 B
Batchfile
@ setlocal enableextensions
|
|
@ cd /d "%~dp0"
|
|
|
|
for /R %%f in (*.exe) do (
|
|
netsh advfirewall firewall add rule name="Blocked: %%f" dir=out program="%%f" action=block
|
|
netsh advfirewall firewall add rule name="Blocked: %%f" dir=in program="%%f" action=block
|
|
)
|
|
pause
|