猜你喜欢

区别睡眠休眠关机文件保存方式内存硬盘(属于关机的一种方式,把内存中的数据写入到硬盘中。休眠状态下,CPU、内存、硬盘均不会供电,基本等同于断电关机。开机时,电脑...
1.win10去除快捷方式小箭头方法
在桌面新建一个文本文档,将以下代码复制进去
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
复制完毕后,将后缀txt改成bat,右击选择“管理员运行”。等待一下就可以。
2.win10恢复快捷方式小箭头方法
如果大家用完之后觉得不太行的话,可以再次恢复,恢复也是需要代码恢复,代码如下:
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
使用方法和上面一样,也是需要新建文本文档,然后修改后缀名,再以管理员身份运行。