mirror of
https://github.com/stascorp/rdpwrap.git
synced 2025-08-20 21:33:42 -07:00
Allow UDP 3389 at firewall configuration
This commit is contained in:
parent
a3cd8ca630
commit
56915ccf5b
2 changed files with 6 additions and 3 deletions
|
@ -978,8 +978,10 @@ end;
|
|||
procedure TSConfigFirewall(Enable: Boolean);
|
||||
begin
|
||||
if Enable then
|
||||
ExecWait('netsh advfirewall firewall add rule name="Remote Desktop" dir=in protocol=tcp localport=3389 profile=any action=allow')
|
||||
else
|
||||
begin
|
||||
ExecWait('netsh advfirewall firewall add rule name="Remote Desktop" dir=in protocol=tcp localport=3389 profile=any action=allow');
|
||||
ExecWait('netsh advfirewall firewall add rule name="Remote Desktop" dir=in protocol=udp localport=3389 profile=any action=allow');
|
||||
end else
|
||||
ExecWait('netsh advfirewall firewall delete rule name="Remote Desktop"');
|
||||
end;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue