Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Tutor-Easy] 1 Click open 10 port on Firewall

Joined
Apr 23, 2013
Messages
1,172
Reaction score
1,738
1 - Create file (Firewall.bat)
2 - Paste below code
3 - Edit port on like your servers.
4 - Open bat.

Code

Code:
[/COLOR]title [Firewall] Opening doors


color b


netsh firewall add allowedprogram C:\WarZ\bin\WZ_GameServer.exe "WZ_GameServer" ENABLE


netsh firewall add allowedprogram C:\WarZ\bin\MasterServer.exe "MasterServer" ENABLE


netsh firewall add allowedprogram C:\WarZ\bin\SupervisorServer.exe "SupervisorServer" ENABLE


echo off
[COLOR=#1D2129]

Done!
Thx
Noparuje Vijarn
 
Last edited:
Joined
Sep 3, 2013
Messages
903
Reaction score
227
New after update Windows Server


netsh advfirewall firewall add rule name="WZ_GameServer" dir=in action=allow program="C:\LSZ\bin\WZ_GameServer.exe" enable=yes
netsh advfirewall firewall add rule name="MasterServer" dir=in action=allow program="C:\LSZ\bin\MasterServer.exe" enable=yes
netsh advfirewall firewall add rule name="SupervisorServer" dir=in action=allow program="C:\LSZ\bin\SupervisorServer.exe" enable=yes
 
Back
Top