13 lines
202 B
Batchfile
13 lines
202 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
"%~dp0/mpv" --register
|
|
if %errorlevel% neq 0 (
|
|
echo Registration failed. Make sure mpv is in the same folder as this script.
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
pause
|
|
endlocal
|