zoukankan      html  css  js  c++  java
  • win10完美去除小箭头

    1.去掉小箭头

    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

    复制上面的代码。新建一个文本文件。粘贴后另存为.bat文件,然后以管理员身份打开。

    2.恢复小箭头

    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

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

  • 相关阅读:
    fork-vfork -exit&_exit
    drop_cache-sar
    性能问题eg
    性能工具-mem
    性能工具-io工具
    linux后台开发常用调试工具
    GDB的原理
    可变参数以及stdcall
    linux 中断softirq tasklet
    linux kernel RCU 以及读写锁
  • 原文地址:https://www.cnblogs.com/techliang666/p/10418979.html
Copyright © 2011-2022 走看看