XP FW
http://rstzone.org/index.php?pagina=tutoriale&selecteaza=tutorial&id=53
Based on this tip I’ve made some batch files:
http://cyecorp.ro/dld/firewall/FIREWALL_start.bat
This is how to ENABLE the firewall
@echo off
title Starting FW
netsh firewall set opmode ENABLE
http://cyecorp.ro/dld/firewall/FIREWALL_stop.bat
This is how to DISABLE the firewall
@echo off
title Starting FW
netsh firewall set opmode DISABLE
http://cyecorp.ro/dld/firewall/FIREWALL_restart.bat
This is how to Restart the firewall
@echo off
title Stopping FW
netsh firewall set opmode DISABLE
title Starting FW
netsh firewall set opmode ENABLE
http://cyecorp.ro/dld/firewall/FIREWALL_open.bat
This is how to open the firewall panel
title Open FW
start firewall.cpl
http://cyecorp.ro/dld/firewall/FIREWALL_noExceptions.bat
This is how to Enable the firewall without any EXCEPTIONS
title Enabling FW with NO EXCEPTIONS
netsh firewall set opmode ENABLE DISABLE
