|
- @ECHO OFF
- ::显/隐快捷方式小箭头
- ver|findstr "\<10\.[0-9]\.[0-9][0-9]*\>" >nul&&set n=197||set n=196
- reg query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /V 29|reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /f||reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,%n%" /t reg_sz /f
- taskkill /f /im explorer.exe
- attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"
- del "%userprofile%\AppData\Local\iconcache.db" /f /q
- start explorer
复制代码 |
|