zoukankan      html  css  js  c++  java
  • 让WIN7桌面显示IE图标

    首先新一个文本文件,将以下代码复制到新建文档中。然后保存为IE.reg,右键以管理员权限运行。此时,注册表注册成功。LOOK,IE图标出来了

    Windows Registry Editor Version 5.00

    [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerDesktopNameSpace{00000000-0000-0000-0000-100000000001}]
    @="Internet Explorer"

    [HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0000-100000000001}]
    @="Internet Explorer"

    [HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0000-100000000001}\DefaultIcon]
    @="C:\Windows\System32\ieframe.dll,-190"

    [HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0000-100000000001}\shell]
    @=""

    [HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0000-100000000001}\shellNoAddOns]
    @="无加载项启动(&N)"

    [HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0000-100000000001}\shellNoAddOnsCommand]
    @=""C:\Program Files\Internet Explorer\iexplore.exe" -extoff"

    [HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0000-100000000001}\shellOpen]
    @="打开主页(&H)"

    [HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0000-100000000001}\shellOpenCommand]
    @=""C:\Program Files\Internet Explorer\iexplore.exe""

    [HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0000-100000000001}\shellSet]
    @="属性(&R)"

    [HKEY_CLASSES_ROOTCLSID{00000000-0000-0000-0000-100000000001}\shellSetCommand]
    @=""C:\Windows\System32\rundll32.exe" C:\Windows\System32\shell32.dll,Control_RunDLL C:\Windows\System32\inetcpl.cpl"

  • 相关阅读:
    1、scala安装和基本语法
    3.12-3.16 Hbase集成hive、sqoop、hue
    3.7-3.9 HBase表属性
    3.4-3.6 依据业务需求分析HBase的表设计
    字符串匹配[原始方法]
    括号匹配[栈]
    13.A={1,2,3,5}和为10的问题
    12.回溯递归
    11.字符串{a,b}的幂集[回溯递归]
    10.N个整数中查找是否相加为K[深度搜索]
  • 原文地址:https://www.cnblogs.com/webqiand/p/5408778.html
Copyright © 2011-2022 走看看