Last active
March 23, 2025 08:55
-
-
Save skkut/11c68d47af09f2dca717bed5269eb517 to your computer and use it in GitHub Desktop.
A windows batch file to block all applications in a folder in Windows firewall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ setlocal enableextensions | |
@ cd /d "%~dp0" | |
for /R %%a in (*.exe) do ( | |
netsh advfirewall firewall add rule name="Blocked with Batchfile %%a" dir=out program="%%a" action=block | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment