zoukankan      html  css  js  c++  java
  • win10去除快捷方式小箭头

    切忌删除注册表项:

    HKEY_CLASSES_ROOT -> lnkfile -> IsShortcut

    这个方法以前是可以的,但是在2018年之后更新的系统就会出现任务栏图标打不开的情况,点击任务栏图标会弹窗:该文件没有与之关联的应用来执行操作。

    正确方法如下:

     新建文本文件,粘贴以下代码,改扩展名为bat,以管理员身份运行。

    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


    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

  • 相关阅读:
    C# bool? 逻辑运算
    C# yield return 用法与解析
    枚举器和迭代器
    C# 事件
    C# 索引器
    C# 实现单例模式的几种方法
    协变 和 逆变
    C# 结构体的特点
    装箱 和 拆箱
    继承之---对象用父类声明,用子类实例化
  • 原文地址:https://www.cnblogs.com/hmswt/p/10459559.html
Copyright © 2011-2022 走看看