0

My mom-in-law likes to have her screen set to the lowest possible resolution so that everything is bigger. When I have occasion to use her computer I have to change it to make it usable. The problem is I often forget to restore the settings, which has... consequences.

Is there some way I can put a one-click shortcut on her desktop which will set the resolution to what she wants?

2 Answers2

1

You can use a commandline tool like QRes.exe and create a shortcut to it that passes the resolution you want. So one shortcut per resolution.

Place QRes.exe wherever you like, and place the shortcut on the desktop, then edit the shortcut to include the resolution.

It will look something like this:

"C:\Path\To\QRes.exe" /x:800 /y:600

(this works only on windows btw, but something similar could probably be found for most OS's)

Martin
  • 1,327
0

To put a one-click shortcut on your Windows desktop which will set the resolution:

  • download nircmd 64-bit from https://www.nirsoft.net/utils/nircmd.html
  • extract the files to your desktop or wherever you want
  • right-click nircmd.exe
  • create a shortcut
  • open shortcut properties
  • edit the path like this PATH_TO_FILE/nircmd.exe setdisplay 1920 1080 32 Screenshot
  • save changes, voila you have a shortcut to change your resolution

Tested on Windows 10 64bit.

Thanks to harrymc, see his answer here: Any way of changing Windows screen resolution via command line?