恢复桌面箭头
- 在桌面新建一个
txt
文件,然后将下面代码拷贝到 txt
文件中保存
reg delete "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /f
taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%AppDataLocaliconcache.db"
del "%userprofile%AppDataLocaliconcache.db" /f /q
start explorer
pause
- 将
txt
文件的后缀改为 .bat
,然后右键管理员运行
去除桌面箭头
- 在桌面新建一个
txt
文件,然后将下面代码拷贝到 txt
文件中保存
reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /d "%systemroot%system32imageres.dll,197" /t reg_sz /f
taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%AppDataLocaliconcache.db"
del "%userprofile%AppDataLocaliconcache.db" /f /q
start explorer
pause
- 将
txt
文件的后缀改为 .bat
,然后右键管理员运行