I have Inteset Secure Lockdown v2 - Internet Explorer Edition installed on a kiosk using Windows 8. In kiosk mode users can use a pinch gesture to zoom the page. How can I disable that?
1. Go to the Control Panel. 2. Search up Mouse on the (search control panel bar on the top right) 3. Click Mouse Settings 4. Select the Device Settings tab. 5. Click Settings for the touch pad that your connected to. 6. You will see a list of items, click Scrolling. 7. Click Pinch Scrolling 8. Disable Pinch Zoom
The Pinch to Zoom feature found on touch devices use manufacturer specific drivers. Look to your manufacture of the device to see how to disable the feature. Also, this feature can easily be disabled via CSS code in your web application if you have access to that. For example:
body { /* Block area from manipulation actions (zoom, pan) */ -ms-touch-action: none; }