其他分享
首页 > 其他分享> > 【生活】日常经验记录整理

【生活】日常经验记录整理

作者:互联网

1.图片处理——百度智能云:[https://cloud.baidu.com/product/imageprocess/enhancement](https://cloud.baidu.com/product/imageprocess/enhancement?track=cp:nsem%7Cpf:pc%7Cpp:xsem-chanpin-AItuxiangzengqiang%7Cpu:gongnengci-zengqiang%7Cci:%7Ckw:10086436&bd_vid=11232259754533310716)


2.桌面图标小箭头怎么去掉
(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
	taskkill /f /im explorer.exe
	attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"
	del "%userprofile%\AppData\Local\iconcache.db" /f /q
	start explorer
	pause

复制上面的代码。新建一个文本文件。粘贴后另存为.bat文件,然后以管理员身份打开。
ok!
(2)恢复小箭头

	reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /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
	pause

同理,将上述代码另存为.bat文件,管理员身份打开。就可恢复小箭头了。


标签:iconcache,explorer,AppData,记录,db,日常,整理,Local,userprofile%
来源: https://blog.csdn.net/weixin_43938259/article/details/115003613