去除“快捷方式”字样

  1. Windows Registry Editor Version 5.00
  2. [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
  3. "link"=hex:18,00,00,00

去除快捷方式小箭头

  1. Windows Registry Editor Version 5.00
  2. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\lnkfile]
  3. "IsShortcut"=-

也可运行命令:

  1. cmd /k reg delete "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /f & taskkill /f /im explorer.exe & start explorer.exe

或者存入以下bat脚本,并以管理员的方式执行:

  1. reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,197" /t reg_sz /f
  2. taskkill /f /im explorer.exe
  3. attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"
  4. del "%userprofile%\AppData\Local\iconcache.db" /f /q
  5. start explorer
  6. pause

恢复快捷方式小箭头

  1. Windows Registry Editor Version 5.00
  2. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\lnkfile]
  3. "IsShortcut"=""
  4. [HKEY_CLASSES_ROOT\lnkfile]
  5. "IsShortcut"=""
  6. [HKEY_CLASSES_ROOT\piffile]
  7. "IsShortcut"=""

或者存入以下bat脚本,并以管理员的方式执行:

  1. reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f
  2. taskkill /f /im explorer.exe
  3. attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"
  4. del "%userprofile%\AppData\Local\iconcache.db" /f /q
  5. start explorer
  6. pause