• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here: Home » Cascading list of websites in right click context menu in Windows 7

By Abhishek Ghosh May 18, 2011 8:51 pm Updated on October 22, 2014

Cascading list of websites in right click context menu in Windows 7

Advertisement

Again right click menu of Windows 7. But, unlike other Windows 7 right click tutorials, it is a bit complicated. Well, you will do it rightly though. Do not miss any line.

After reading this tutorial, you will be able to add a right click custom named menu and cascading list of submenu of websites of your choice with icons of your choice in Windows 7.

On clicking them; the webpage will open.

Advertisement

---

 

Like this:

 

Add a cascading list of websites in right click context menu

 

Under stand the following things calmly:

 

  • All the names in right click menu can be changed
  • You can add as many as websites’ name and link you want
  • You can change the icon of them as well
  • You may create one menu named Favorites, one Social Networks and so on
  • Your default browser will open the page, if that browser is already opened, a new tab will be opened
  • It works on Windows 7 Desktop, inside the folders (Explorer) also
  • There is no reason to think it will consume huge RAM, unless if you use huge sized icons

 

Updated on 10/2014 : Red, Blue, Green Text were historically used to help the reader to identify lines in 2011. Do not give importance to the lines like you should do this written in red text. Other than that, code will work as intended to add cascading list of websites in right click context menu in Windows.

 
As usually, we need two things: a batch file to carry the job, that is to run the website in your default browser, a nice icon in *.ico format for each website and a registry file to add it to right click menu.

 

First, as the things are quite complex and we want to keep a way to remove or add the websites to the list; we will create a folder named websites (you can use any name, but have to change in the registry in next step) on your desktop.

 

We are giving the example of the above screenshot like menu.

 

Make a list which website you want too add; otherwise you might mess it up.

 

Creating the batch file to open the desired website in your favorite browser

 

One batch file for each website. So, in our example; here will be three.

Open Notepad. Write the following things:

 

C:/Windows
Vim
1
2
@Echo off
start thecustomizewindows https://thecustomizewindows.com

 

The blue text is just a formal name of the website; the red text is the URL of the website.

Save the file as TheCustomizeWindows.bat and do not forget to change the file type from text to All files from drop down menu in Notepad before saving it. Obviously, you will save FaceBook’s batch file with the name FaceBook.bat.

If you want to add other site or the login page; just replace the red text, blue text and save with an appropriate name as batch file. Double click it to check. It should open the webpage.

In this way, we have created three batch files for those three websites.

 

Getting the icons

 

The easiest way to get the icon is typing the full url and adding /favicon.ico at the end of the URL and hitting Enter. You will get every website’s icon in this way.

For example; Google’s Favicon will be in : http://www.Google.com/favicon.ico (Right click to open in new tab or windows).

As all website’s icon will be named favicon.ico; you have to rename them separately while saving. Right click on that image and save with custom name.

 

Packing the things rightly

 

You have created the folder named websites; put all the batch files and the icons in this folder. For us, it is 3 batch files and 3 icons:

 

Add a cascading list of websites in right click context menu BOLD

Put it in C drive. So the path will be C:websites

You can put where ever you like; but you have to change that in the final step while creating the registry file.

 

Creating the registry file

 

This will add the functionality to get working from right click context menu. Open Notepad, copy paste the following and modify as per your need:

 

\Directory\Background\shell\
Vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Windows Registry Editor Version 5.00
 
[HKEY_CLASSES_ROOT\Directory\Background\shell\Websites]
"MUIVerb"="Websites"
"SubCommands"="The Customize Windows;Daily Medico;Google"
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\The Customize Windows]
@="The Customize Windows"
"Icon"="C:\\websites\\favicon.ico"
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\The Customize Windows\command]
@="C:\\websites\\TheCustomizeWindows.bat"
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Daily Medico]
@="Daily Medico"
"Icon"="C:\\websites\\favicon2.ico"
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Daily Medico\command]
@="C:\\websites\\DailyMedico.bat"
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Google]
@="Google"
"Icon"="C:\\websites\\favicon3.ico"
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Google\command]
@="C:\\websites\\Google.bat"

Here is too many variables; so understand the thing, do not copy or download blindly. Otherwise you will get our websites in your menu instead of your desired websites or it will not work.

 

We have highlighted only one set. That is for the main menu and The Customize Windows sub menu.

Blue text is what you want to see as main menu; you can name as Social Websites for example.

The red text in the “sub commands” is the list of the submenu as well as websites you want to add.

Next red text The Customize Windows is what will appear in the sub menu. For example, it will be FaceBook for Facebook’s site.

The pink text is the path of the icon of that website. Compare with the screenshot of the folder. It should be clear like daylight.

The orange text is the path of the batch file.

 

Save the file as Add websites.reg and do not forget to change the file type from text to All files from drop down menu in Notepad before saving it. Name does not matter here at all. You can save as you like.

Now, double click the reg file and accept the security warnings and you will see the option in right click context menu when clicked on a folder or any empty place inside folder or Windows 7 desktop.

 

You will get it as you want.

 

Updating or adding more entry:

 

    1. Create a new batch file for that website
    2. Create a icon for that website
    3. Put it to C:websites folder
    4. Open the  Add website.reg and right click it and open in Notepad; add the name of the website separated by semicolon within the quotation mark; here after …;Google” ; if you add Facebook, it would be: “SubCommands”=”The Customize Windows;Daily Medico;Google;Face Book“
    5. Copy last two sets of HKEYs and paste it at the end.
    6. Modify its name url, icon etc and save the registry file; double click to run it. It will be added.

     

    Removal:

    Add a minus sign before the H starts after the third bracket; like [-HKEY_CLASSES…. to all where there is HKEY and save it (with some good name) as reg file and run it. It will break the association; so the option will disappear from right click context menu.

    Obviously, you might delete the bat files manually too :

    \Directory\Background\shell\
    Vim
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    Windows Registry Editor Version 5.00
     
    [-HKEY_CLASSES_ROOT\Directory\Background\shell\Websites]
    "MUIVerb"="Websites"
    "SubCommands"="The Customize Windows;Daily Medico;Google"
     
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\The Customize Windows]
    @="The Customize Windows"
    "Icon"="C:\\websites\\favicon.ico"
     
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\The Customize Windows\command]
    @="C:\\websites\\TheCustomizeWindows.bat"
     
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Daily Medico]
    @="Daily Medico"
    "Icon"="C:\\websites\\favicon2.ico"
     
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Daily Medico\command]
    @="C:\\websites\\DailyMedico.bat"
     
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Google]
    @="Google"
    "Icon"="C:\\websites\\favicon3.ico"
     
    [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Google\command]
    @="C:\\websites\\Google.bat"

     

    Downloads:

    As usually all the required files are here for your download.

    The rar file is password protected, type thecustomizewindows.com as the password.

    Tagged With cascading list of websites

This Article Has Been Shared 632 Times!

Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to Cascading list of websites in right click context menu in Windows 7

  • Cascading list of folders in right click context menu in Windows 7

    After reading this tutorial, you will be able to add a right click custom named menu and cascading list of submenu of folders of your choice with custom icons in Windows 7.

  • Cascading list of programs in right click context menu in Windows 7

    After reading this tutorial, you will be able to add a right click custom named menu and cascading list of submenu of third party or default programs with icons of your choice in Windows 7.

  • Eject CD DVD from right click context menu in Windows 7

    Eject CD DVD CD DVD or blue ray disk from right click context menu or just by a shortcut in Windows 7. No software installation is required.

  • Guide to Create a 3rd Party Theme

    How to create excellent looking third party theme also known as “Visual Style”

  • Manual of Windows registry

    Here is the full detailed manual of Microsoft Windows Operating system.

Additionally, performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Cyberpunk Aesthetics: What’s in it Special January 27, 2023
  • How to Do Electrical Layout Plan for Adding Smart Switches January 26, 2023
  • What is a Data Mesh? January 25, 2023
  • What is Vehicular Ad-Hoc Network? January 24, 2023
  • Difference Between Panel Light, COB Light, Track Light January 21, 2023

About This Article

Cite this article as: Abhishek Ghosh, "Cascading list of websites in right click context menu in Windows 7," in The Customize Windows, May 18, 2011, January 29, 2023, https://thecustomizewindows.com/2011/05/add-a-cascading-list-of-websites-in-right-click-context-menu/.

Source:The Customize Windows, JiMA.in

PC users can consult Corrine Chorney for Security.

Want to know more about us? Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Do not sell my personal information.
Cookie SettingsAccept
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT