1、在桌面新建文本文档
2、把下了代码粘贴复制进去
@echo off
color 3F
echo 去除系统快捷方式箭头 By 草头将
echo --------------------------------------------------------------------------------
echo.
@echo 即将为你去除系统快捷方式的箭头。
echo.
echo.
echo 说明:
echo.
echo 1.系统将暂时关闭显示桌面进程,稍后会重新开启。
echo.
echo 2.系统快捷方式清除成功后此批处理文件将自动关闭。
echo.
echo --------------------------------------------------------------------------------
@pause
@echo off
@echo Windows Registry Editor Version 5.00>>1.reg
@echo [HKEY_CLASSES_ROOT\lnkfile]>>1.reg
@echo "IsShortcut"=->>1.reg
@echo [HKEY_CLASSES_ROOT\piffile]>>1.reg
@echo "IsShortcut"=->>1.reg
@echo [HKEY_CLASSES_ROOT\InternetShortcut]>>1.reg
@echo "IsShortcut"=->>1.reg
@echo [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\InternetShortcut]>>1.reg
@echo "IsShortcut"=->>1.reg
regedit/s 1.reg
del 1.reg
@echo off
taskkill /f /im Explorer.exe>nul
@echo 系统快捷方式箭头清除成功,正在显示桌面……
ping -n 3 127.1>nul
start "explorer.exe" "%windir%\explorer.exe"
3、保存,把文本文档后缀名改为*.txt改为*.bat
4.点击运行