mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 20:09:54 +00:00
12 lines
424 B
Batchfile
12 lines
424 B
Batchfile
@echo off
|
|
|
|
rem Get sunshine root directory
|
|
for %%I in ("%~dp0\..") do set "ROOT_DIR=%%~fI"
|
|
|
|
set RULE_NAME=Sunshine
|
|
set PROGRAM_BIN="%ROOT_DIR%\sunshine.exe"
|
|
|
|
rem Add the rule
|
|
netsh advfirewall firewall add rule name=%RULE_NAME% dir=in action=allow protocol=tcp program=%PROGRAM_BIN% enable=yes
|
|
netsh advfirewall firewall add rule name=%RULE_NAME% dir=in action=allow protocol=udp program=%PROGRAM_BIN% enable=yes
|