15

My computer comes with a touch screen. I may want that someday, but right now I don't. Is there a way to disable it? I am running Windows 8.1. Thanks!

EDIT: When I go to Pen and touch via control panel, this is what I see. There is nothing about using my fingers as input

enter image description here

William Jockusch
  • 4,573
  • 10
  • 34
  • 44

3 Answers3

8

Start the Device Manager, e.g., through Control Panel, or by running devmgmt.msc from

  • Start > Run, or
  • Windows Key+R, or
  • Command Prompt

Expand "Human Interface Devices" and disable the touch screen from there:

enter image description here

Be careful to not shutdown your keyboard and/or mouse!

MDT Guy
  • 3,741
  • 1
  • 18
  • 37
  • I see an option to disable my screen. But will that stop it from displaying anything? That would be bad . . . – William Jockusch Mar 17 '14 at 18:46
  • No, don't disable anything under display adaptor, it should be under human interface device. – MDT Guy Mar 17 '14 at 19:15
  • Yes, under Human Interface Devices, I can disable the screen or not. But it doesn't say anything about touch there. So I don't know if it will disable the screen completely, or just turn off touch. – William Jockusch Mar 17 '14 at 19:20
0

You can disable a touch screen device with PowerShell. Here is a code snippet that works on Windows 10.

# Get 'Plug & Play' (PNP) devices by name
$devices = Get-PnpDevice  | where friendlyname -like "*touch*" 

# Disable devices
$devices | Disable-PnpDevice -Confirm:$false
# Enable devices
$devices | Enable-PnpDevice -Confirm:$false

for earlier windows releases you can use WMI to get the same devices:

gwmi Win32_PnPSignedDriver | Where-Object { $_.DeviceName -like "*touch*" }
Glenn Ferrie
  • 777
  • 1
  • 6
  • 21
0

Try these steps

  1. Press Windows Key + Q
  2. Type Control Panel
  3. Go to Hardware and Sound
  4. Pen and touch
  5. Click the touch tab
  6. Disable use your finger as an input

Reference

Ashildr
  • 2,698
  • 5
  • 26
  • 45
kobaltz
  • 14,784
  • 3
  • 36
  • 57
  • 1
    -1. The question includes a screenshot of the control panel item you direct us to. As you can see there is no obvious way to disable the finger as input. [I see the same as the questioner](http://i.stack.imgur.com/bJKX2.png); on the touch tab shown in the screenshots, where would you "Disable use your finger as an input"? – dumbledad Dec 23 '13 at 16:07
  • I agree with @dumbledad. The page this answer links as a reference also suggests disabling the touch input device in the Device Manager, which has more "helpful" votes than any other answer. – dotVezz Dec 23 '13 at 16:08
  • Apologies kobaltz, I realise that the screen-shot was added four days after the answer! – dumbledad Dec 23 '13 at 16:32