本文共 1764 字,大约阅读时间需要 5 分钟。
去掉快捷方式的小箭头的操作需要谨慎,以下是两种常用的方法以及恢复方案。
操作步骤:
.bat
,然后点击运行。命令示例:
@echo offreg delete HKCR\lnkfile /v IsShortcut /freg delete HKCR\piffile /v IsShortcut /freg delete HKCR\InternetShortcut /v IsShortcut /ftaskkill /f /im explorer.exeexplorer
问题:这种方法会导致无法通过任务栏图标打开应用,可能出现提示:"该文件没有与之关联的应用来执行操作。建议安装程序,若已安装程序,请在默认程序控制面板中创建关联。"
操作步骤:
.bat
,然后点击运行。命令示例:
taskkill /f /im explorer.exereg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "C:\Windows\system32\imageres.dll,154" /t reg_sz /freg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "C:\Windows\system32\imageres.dll,154" /t reg_sz /freg add "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /t reg_sz /freg add "HKEY_CLASSES_ROOT\piffile" /v IsShortcut /t reg_sz /fstart explorer
操作步骤:
.bat
,然后点击运行。命令示例:
taskkill /f /im explorer.exereg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,197" /t reg_sz /fattrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"del "%userprofile%\AppData\Local\iconcache.db" /f /qstart explorerpause
操作步骤:
.bat
,然后点击运行。命令示例:
taskkill /f /im explorer.exereg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /fattrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"del "%userprofile%\AppData\Local\iconcache.db" /f /qstart explorerpause
以上操作适用于不同的场景,选择合适的方法根据实际需要进行操作。
转载地址:http://znbmz.baihongyu.com/