原文:http://www.oschina.net/code/snippet_226830_8094
新建一个以bat为后缀名的批处理文件,添加以下代码,保存,并运行该文件即可。
@echo off mode con cols=35 lines=8 & color 0A title 去除系统快捷方式箭头 echo 程序将为你去除系统快捷方式的小箭头 pause 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 cls echo 正在关闭显示桌面进程... ping localhost -n 5 > nul taskkill /f /im Explorer.exe > nul cls echo 正在开启显示桌面进程... ping localhost -n 8 > nul start "explorer.exe" "%windir%\explorer.exe" cls echo 系统快捷方式箭头已清除! pause