@ECHO OFF REM This batch file will enable ports to allow Ranger Products to run on a Windows XP SP2 machine. REM Here i will open four ports that will allow Ranger Print Mangers Client to recieve commands from the server. ECHO Enabling Port 137... netsh firewall add portopening protocol=UDP port=137 name="RPM Port 137" mode=ENABLE scope=ALL profile=DOMAIN ECHO Enabling Port 138... netsh firewall add portopening protocol=UDP port=138 name="RPM Port 138" mode=ENABLE scope=ALL profile=DOMAIN ECHO Enableing Port 2301... netsh firewall add portopening protocol=UDP port=2301 name="RPM Port 2301" mode=ENABLE scope=ALL profile=DOMAIN ECHO Enabling Port 11001... netsh firewall add portopening protocol=UDP port=11001 name="RPM Port 11001" mode=ENABLE scope=ALL profile=DOMAIN