@
ECHO
OFF&(
PUSHD
"%~DP0"
)&(REG QUERY
"HKU\S-1-5-19"
>NUL 2>&1)||(
powershell -Command
"Start-Process '%~sdpnx0' -Verb RunAs"
&&EXIT)
set /p filepath=请设置播放器路径(可直接拖拽文件或快捷方式到本窗口,推荐使用potplayer):
set suffix=%filepath:~-3,-1%
if
/i %suffix%==ln (
goto
renewpath)
if
/i %suffix%==nk (
goto
renewpath)
if
/i %suffix%==ex (
goto
start)
if
/i %suffix%==xe (
goto
start)
exit
:renewpath
for
/f
"skip=3 delims="
%%a
in
(
'find ":\" %filepath%'
) do set filepath="%%a"
:start
taskkill /f /im xmp.exe >NUL 2>NUL
ren xmp.exe xmp.exe.bak >NUL 2>NUL
mklink xmp.exe %filepath%
echo
处理成功!
pause