Disable Google Chrome Context Menu

6,719

As users have indicated here, there doesn't seem to be a universal way to disable the right click context menu.

However, you can still accomplish what you want using autohotkey. Just create a script that disables the right click and then launch your desired application, chrome in this case. Then just compile the script to an EXE and you can launch this instead of the explorer shell, for example:

#NoTrayIcon
RButton::Return
Run , C:\<pathtochrome>\chrome.exe --incognito www.mykioskwebsite.com
Share:
6,719

Related videos on Youtube

TechHeadDJ
Author by

TechHeadDJ

Updated on September 18, 2022

Comments

  • TechHeadDJ
    TechHeadDJ over 1 year

    Ok, we are setting up a computer lab for students. They will be only using one website, and they like to break the computers, go to game sites, download music, etc, every chance possible. We are already setting up Chrome in kiosk mode. However, is there a way to disable the context menu? Sadly, using something such as autohotkey will not work because we're replacing the shell with the kiosk mode browser. So, is there any registry tweak, or something similar, to just disable right click?

    • daxlerod
      daxlerod almost 11 years
      Do you have any single-button mice from a mac laying around?
    • Ramhound
      Ramhound almost 11 years
      Your possible solutions change depending on the version of Windows you are using. Windows 8.1 will have a kiosk mode. There is also kiosk based software.
  • TechHeadDJ
    TechHeadDJ almost 11 years
    Brilliant idea, working on it now
  • dtmland
    dtmland almost 11 years
    @TechHeadDJ Don't forgot a green check mark if the answer qualifies. Thanks! Good luck!
  • TechHeadDJ
    TechHeadDJ almost 11 years
    Forgot about that. Been a while since I've turned to the stack world for aid. Just working on the finesse of the script to make it work... getting lockup's on the launch.
  • TechHeadDJ
    TechHeadDJ almost 11 years
    With -kiosk switch on, it works wonderfully. Using this, I can also disable a ton of other things! Sadly, however, no ctrl+alt+del, but I can do that with a group policy change. The students are in for a surprise. That works great!