如何去掉快捷方式小箭头

@echo off
color 02
echo 请选择要执行的操作(1-删除,2-恢复,3-退出)
set choice=
set /p choice=请选择(1/2/3)按回车执行:
if /i '%choice%'=='1' goto a
if /i '%choice%'=='2' goto b
if /i '%choice%'=='3' goto end
:a
reg delete HKEY_CLASSES_ROOT\piffile /v IsShortcut /f
reg delete HKEY_CLASSES_ROOT\lnkfile /v IsShortcut /f
taskkill/f /im explorer.exe
cls
explorer.exe
:b
reg addHKEY_CLASSES_ROOT\lnkfile /v IsShortcut /t REG_SZ/f
reg addHKEY_CLASSES_ROOT\piffile /v IsShortcut /t REG_SZ/f
taskkill/f /im explorer.exe
cls
explorer.exe
:end
exit


© 2016-2024 阿尔佛 aerfo.com | 豫ICP备17044542号 | 豫公网安备 41010602000172