发布网友 发布时间:2022-05-26 12:59
共2个回答
热心网友 时间:2023-10-18 06:58
普通方法:@echo offcolor 02echo 请选择要执行的操作(1-删除,2-恢复,3-退出)set choice=set /p choice=请选择(1/2/3)按回车执行:if /i '%choice%'=='1' goto aif /i '%choice%'=='2' goto bif /i '%choice%'=='3' goto end:areg delete HKEY_CLASSES_ROOT\piffile /v IsShortcut /freg delete HKEY_CLASSES_ROOT\lnkfile /v IsShortcut /ftaskkill /f /im explorer.execlsexplorer.exe:breg add HKEY_CLASSES_ROOT\lnkfile /v IsShortcut /t REG_SZ /freg add HKEY_CLASSES_ROOT\piffile /v IsShortcut /t REG_SZ /ftaskkill /f /im explorer.exe clsexplorer.exe:endexit把这个保存为去除小箭头.bat运行输入1即可去除。缺点:将无法在任务栏里添加快捷方式。第二种方法:把一个透明图标(.ico)放到系统盘:\windows目录下然后打开记事本输入Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons]"29"="C:\\Windows\\Empty.ico,0"然后保存为去除.reg导入注册表即可。热心网友 时间:2023-10-18 06:59
方法:1. 把一个透明图标“Empty.ico”放到系统盘(一般是C盘):\windows目录下