zoukankan      html  css  js  c++  java
  • [转]Windows 7桌面右键菜单启动程序设置方法

    你想在Windows 7桌面右菜单增加一些常用的启动程序吗?这里提供了一个很好的方法,就是修改注册表来添加Windows 7桌面右菜单项。

    方法如下:

    将以下内容拷贝到记事本,然后另存为laucher.reg文件,双击导入到注册表即可。

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOT\Directory\Background\shell\App Laucher]

    "MUIVerb"="App Laucher"

    "SubCommands"="Opera;Notepad;Looknstop;UTorrent;Internet explore"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Opera]

    @="Opera"

    "Icon"="C:\\Program Files (x86)\\Opera\\opera.exe"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Opera\command]

    @="C:\\Program Files (x86)\\Opera\\opera.exe"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Notepad]

    @="Notepad"

    "Icon"="C:\\Program Files (x86)\\Notepad2.exe"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Notepad\command]

    @="C:\\Program Files (x86)\\Notepad2.exe"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Looknstop]

    @="Looknstop"

    "Icon"="C:\\Program Files\\Soft4Ever\\looknstop\\looknstop.exe"

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Looknstop\command]

    @="C:\\Program Files\\Soft4Ever\\looknstop\\looknstop.exe"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\UTorrent]

    @="UTorrent"

    "Icon"="C:\\Program Files (x86)\\uTorrent\\uTorrent.exe"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\UTorrent\command]

    @="C:\\Program Files (x86)\\uTorrent\\uTorrent.exe"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Internet explore]

    @="Internet explore"

    "Icon"="C:\\Program Files\\Internet Explorer\\iexplore.exe"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Internet explore\command]

    @="C:\\Program Files\\Internet Explorer\\iexplore.exe"

    注意:这里是作者常用的一些软件,比如opera、bt、IE、记事本之类的软件,要根据你的实际情况来修改以下文件,说起来很简单:

    以opera为例:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Opera]

    @="Opera"

    "Icon"="C:\\Program Files (x86)\\Opera\\opera.exe"

    这里的@="Opera" 就是在右键菜单显示的标题;

    "Icon"="C:\\Program Files (x86)\\Opera\\opera.exe" 则是右键菜单显示的可执行程序路径。

    只要将这两个修改为您需要的软件名称了路径就可以了!

  • 相关阅读:
    ES基本原理
    docker技术基础
    docker简介
    IaaS,PaaS和SaaS
    python的type和object
    django:一个RESTfull的接口从wsgi到函数的历程
    python的list内存分配算法
    10个我最喜欢问程序员的面试问题
    月薪三万的面试题
    深圳有趣网络笔试题面试题
  • 原文地址:https://www.cnblogs.com/kxk_kxk/p/1907186.html
Copyright © 2011-2022 走看看