现在的位置: 首页 > 综合 > 正文

清除xp,win7快捷方式小箭头

2013年10月12日 ⁄ 综合 ⁄ 共 694字 ⁄ 字号 评论关闭

原文: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

抱歉!评论已关闭.