Open the ease of use cursor and pointer settings in Windows 10 with run box?

0

I've been looking around to see if there's any way to open the ease of access>Cursor & pointer settings in a batch file or via the run box using start ms-settings:easeofaccess-mouse for example will take me to the mouse setting and documented others here:

https://ss64.com/nt/syntax-settings.html

On that website start ms-settings:easeofaccess-display works but it's undocumented.

I was trying with pot luck to get easeofaccess-cursorpointer etc to work but no luck.

So any help would be greatly appreciated.


I cannot tag windows-10 because I don't have enough rep. Go figure!

So that's what I'm running:

BuildNumber  Caption                   OSArchitecture  Version     

18363        Microsoft Windows 10 Pro  64-bit          10.0.18363  

Ste

Posted 2020-01-16T14:36:37.240

Reputation: 361

Answers

0

Managed to guess this and the way you do so is with:

start ms-settings:easeofaccess-cursorandpointersize

So my batch file looks like:

@echo off & cls
if not DEFINED IS_MINIMIZED set IS_MINIMIZED=1 && start "" /min "%~dpnx0" %* && exit
start ms-settings:easeofaccess-cursorandpointersize
exit

Ste

Posted 2020-01-16T14:36:37.240

Reputation: 361

1

You have some documentation here

– SWeko – 2020-01-16T14:48:37.690