您的位置:首页 > 其它

[Windows使用技巧] 去掉”快捷方式“前缀和箭头

2011-05-24 07:53 573 查看
把下面横线里面的内容复制粘贴到记事本里,将文件另存为bat 文件,然后运行即可。
-----------------------------------------------------------------------

@echo off&&color 0b&mode con lines=10&echo.&echo.&echo.&echo.

title 去掉”快捷方式“前缀和箭头

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer" /v link /t REG_BINARY /d 00000000 /f

reg delete HKEY_CLASSES_ROOT\lnkfile /v IsShortcut /f

reg delete HKEY_CLASSES_ROOT\piffile /v IsShortcut /f

reg delete HKEY_CLASSES_ROOT\InternetShortcut /v IsShortcut /f

set /p YN= 修改完毕,是否需要不重启马上生效?[Y/N]

if /i "%YN%" == "Y" (

taskkill /im explorer.exe /f

ping 127.1 -n 1

start explorer.exe

)

-----------------------------------------------------------------
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: