Question Is there an app for disabling mouse input ?

stebobibo

Reputable
May 6, 2021
29
2
4,535
I have a Windows 10 desktop PC and I was wondering if anyone knows of an app that can temporarily disable mouse input. Would be ideal if it can just constantly run in the background and be activated via a hotkey.

I've only been able to find this with google searches:
https://apps.microsoft.com/detail/9pkddzhjbgpz?hl=en-US&gl=US
But it doesn't say if it can be activated via a hotkey, or if it runs in the background.
Thanks for your help!
 
I was wondering if anyone knows of an app that can temporarily disable mouse input.
Would be ideal if it can just constantly run in the background and be activated via a hotkey.
Unplugging is the easiest way.
You can also disable mouse in Device Manager.

Or you can write a script, that executes devcon disable command or pnputil disable-device command
and disables mouse.
https://learn.microsoft.com/en-us/windows-hardware/drivers/devtest/devcon-disable

https://learn.microsoft.com/en-us/windows-hardware/drivers/devtest/devcon-migration

Execute from elevated command prompt, to disable mouse:
pnputil /disable-device /class mouse

Execute from elevated command prompt, to enable mouse:
pnputil /enable-device /class mouse
 
Last edited:
  • Like
Reactions: Phillip Corcoran