去除桌面快捷方式小箭头

来源:互联网 发布:阿里云邮箱账号格式 编辑:程序博客网 时间:2024/06/11 09:29

我用的方式就是一个批处理文件,其他在注册表修改的没弄,用我这个就行了

 

 

@echo off
color 02
echo 请选择要执行的操作(1-删除,2-恢复,3-退出)
set choice=
set /p choice=请选择(1/2/3)按回车执行:
if /i '%choice%'=='1' goto a
if /i '%choice%'=='2' goto b
if /i '%choice%'=='3' goto end
:a
reg delete HKEY_CLASSES_ROOT/piffile /v IsShortcut /f
reg delete HKEY_CLASSES_ROOT/lnkfile /v IsShortcut /f
taskkill /f /im explorer.exe
cls
explorer.exe
:b
reg add HKEY_CLASSES_ROOT/lnkfile /v IsShortcut /t REG_SZ /f
reg add HKEY_CLASSES_ROOT/piffile /v IsShortcut /t REG_SZ /f
taskkill /f /im explorer.exe
cls
explorer.exe
:end
exit

 

 

把这一段保存到记事本,然后把文件后缀名改成bat运行就ok!!!

原创粉丝点击