Veyon Community Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups

    Bypassing lock screen by swiping in from the left on a touchscreen Windows 10

    Help & Troubleshooting
    4
    4
    1542
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • M
      missmullerfgpa last edited by

      My students have figured out how to bypass - even with the new version. What they do is swipe in from the left side of the screen on the computers.
      OS is Windows 10
      The option it then gives them is to add another desktop or whatever was there before and then they access the browser.

      1 Reply Last reply Reply Quote 0
      • tobydox
        tobydox last edited by

        Unfortunately disabling touch input on Windows is very difficult and therefore not yet implemented. Any suggestions or code contributions are welcome.

        1 Reply Last reply Reply Quote 0
        • E
          EnzoMatrix last edited by

          You can do it with a registry file, which is what we do.

          Save the following code as a .reg file and run it:
          To disable swiping

          Windows Registry Editor Version 5.00
          ; Created by: EnzoMatrix
          
          [HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\EdgeUI]
          "AllowEdgeSwipe"=-
          
          [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\EdgeUI]
          "AllowEdgeSwipe"=dword:00000000
          

          To Re-enable swiping

          Windows Registry Editor Version 5.00
          ; Created by: EnzoMatrix
          
          [HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\EdgeUI]
          "AllowEdgeSwipe"=-
          
          [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\EdgeUI]
          "AllowEdgeSwipe"=-
          

          Hope that helps.

          1 Reply Last reply Reply Quote 0
          • I
            ITGuy last edited by

            Use the Veyon ‘Run program’ feature for running either a Devcon or PnPUtil script to disable (and enable) the device’s HID-compliant touch screen drivers using the specific HID\VID device instance path(s) and without the need to restart Windows.

            devcon enable "@HID\VID_056A&PID_00E6&MI_01&COL05\8&27A6CAE3&0&0004"
            devcon enable "@HID\VID_056A&PID_00E6&MI_01&COL01\8&27A6CAE3&0&0000"

            devcon disable "@HID\VID_056A&PID_00E6&MI_01&COL05\8&27A6CAE3&0&0004"
            devcon disable "@HID\VID_056A&PID_00E6&MI_01&COL01\8&27A6CAE3&0&0000"

            Disabling touch in this manner should still allow pen input.

            1 Reply Last reply Reply Quote 0
            • First post
              Last post
            Powered by NodeBB | Contributors