标签:style blog http color 文件 2014
去除Win系统快捷方式的箭头或尾巴
把下列文件保存为bat 文件,点击即可运行
1 @echo off 2 echo 欢迎烈焰病毒博客 3 echo ---------------------- 4 echo - 去除快捷方式 - 5 echo - 小箭头 - 6 echo ---------------------- 7 echo 请选择要执行的操作(1-去除,2-恢复,3-退出) 8 set choice= 9 set /p choice=请选择(1/2/3)按回车执行: 10 if /i ‘%choice%‘==‘1‘ goto a 11 if /i ‘%choice%‘==‘2‘ goto b 12 if /i ‘%choice%‘==‘3‘ goto end 13 :a 14 reg delete HKEY_CLASSES_ROOT\piffile /v IsShortcut /f 15 reg delete HKEY_CLASSES_ROOT\lnkfile /v IsShortcut /f 16 taskkill /f /im explorer.exe 17 cls 18 explorer.exe 19 :b 20 reg add HKEY_CLASSES_ROOT\lnkfile /v IsShortcut /t REG_SZ /f 21 reg add HKEY_CLASSES_ROOT\piffile /v IsShortcut /t REG_SZ /f 22 taskkill /f /im explorer.exe 23 cls 24 explorer.exe 25 :end 26 exit
标签:style blog http color 文件 2014
原文地址:http://www.cnblogs.com/lieyan/p/3858414.html