30 lines
No EOL
1.2 KiB
Batchfile
30 lines
No EOL
1.2 KiB
Batchfile
@echo off
|
|
set installpath=%~dp0
|
|
NET SESSION >nul 2>&1
|
|
IF %ERRORLEVEL% EQU 0 (
|
|
echo adding firewall rules...
|
|
netsh.exe advfirewall firewall add rule name="RealDebridClient" dir=in action=allow program="%installpath%RdtClient.Web.exe" enable=yes > nul
|
|
echo installing service...
|
|
sc create RealDebridClient binPath="%installpath%RdtClient.Web.exe" start=auto
|
|
timeout /t 5 /nobreak > NUL
|
|
net start RealDebridClient
|
|
) ELSE (
|
|
echo ######## ######## ######## ####### ########
|
|
echo ## ## ## ## ## ## ## ## ##
|
|
echo ## ## ## ## ## ## ## ## ##
|
|
echo ###### ######## ######## ## ## ########
|
|
echo ## ## ## ## ## ## ## ## ##
|
|
echo ## ## ## ## ## ## ## ## ##
|
|
echo ######## ## ## ## ## ####### ## ##
|
|
echo.
|
|
echo.
|
|
echo ####### ERROR: ADMINISTRATOR PRIVILEGES REQUIRED #########
|
|
echo This script must be run as administrator to work properly!
|
|
echo If you're seeing this after clicking on a start menu icon,
|
|
echo then right click on the shortcut and select "Run As Administrator".
|
|
echo ##########################################################
|
|
echo.
|
|
PAUSE
|
|
EXIT /B 1
|
|
)
|
|
@echo ON |