Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/sanear.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dll/skel/register.bat')
-rw-r--r--dll/skel/register.bat25
1 files changed, 0 insertions, 25 deletions
diff --git a/dll/skel/register.bat b/dll/skel/register.bat
deleted file mode 100644
index 50d9d05..0000000
--- a/dll/skel/register.bat
+++ /dev/null
@@ -1,25 +0,0 @@
-@echo off
-cd /d "%~dp0"
-
-regsvr32.exe sanear.ax /s
-if %ERRORLEVEL% neq 0 goto fail
-
-if "%PROCESSOR_ARCHITECTURE%" == "x86" goto ok
-regsvr32.exe sanear64.ax /s
-if %ERRORLEVEL% neq 0 goto fail
-
-:ok
-echo.
-echo Registration succeeded
-echo.
-goto done
-
-:fail
-echo.
-echo Registration failed!
-echo.
-echo Try to right-click on %~nx0 and select "Run as administrator"
-echo.
-
-:done
-pause >nul