Disable Copy & Paste Option is MS Edge in Kiosk Mode

Dhiraj Sharma 20 Reputation points
2024-09-27T08:21:29.1266667+00:00

I am using Windows Kiosk feature to user MS Edge. I want to disable copy and paste (Ctrl+C / Ctrl+Shift+L) option in MS Edge, even in Address Bar. Also disable Right click in Address Bar. I can't use any third-party tool. Please suggest if its possible through registry settings.

Microsoft Edge Microsoft Edge development
{count} votes

Accepted answer
  1. Anonymous
    2024-09-30T03:22:17.98+00:00

    Hi @Dhiraj Sharma

    You can disable Ctrl+Shift+L using this policy ConfigureKeyboardShortcuts. The corresponding registry setting is like below:

    • Path: SOFTWARE\Policies\Microsoft\Edge
    • Value Name: ConfigureKeyboardShortcuts
    • Value Type: REG_SZ
    SOFTWARE\Policies\Microsoft\Edge\ConfigureKeyboardShortcuts = {
      "disabled": [
        "paste_and_go"
      ]
    }
    

    All configurable keyboard shortcuts can be found in this table: Configurable commands. Unfortunately, Ctrl+C is not configurable through registry setting. You can provide feedback to Edge team by pressing Alt+Shift+I in Edge.

    For address bar in kiosk mode, you can set Read only address bar (policy) which is supported in kiosk mode public browsing: Kiosk mode supported features. If you disable this policy, it prevents users from changing the URL in the address bar.

    Update:

    Are you using Edge in kiosk mode public browsing (--edge-kiosk-type=public-browsing)? If so, you can disable right click menu for Edge address bar like what I said above. Just disable this policy KioskAddressBarEditingEnabled. The registry setting is like below:

    User's image

    The result is like below:

    User's image


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Regards,

    Yu Zhou

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.